This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Search found 508 matches

by TCL_no_TK
Thu Apr 29, 2010 11:24 pm
Forum: Other Topics
Topic: [Off Topic] Discussion/Rant/Comments
Replies: 0
Views: 1702

[Off Topic] Discussion/Rant/Comments

I didn't want to single out any posts or any users. Its more just in general, but I've been working a lot more recently so when I log-on to the forum, there is a lot more new posts. I've noticed more recently, that there is more and more posts with (for lack of a better way of putting this) "un...
by TCL_no_TK
Sun Apr 11, 2010 12:42 pm
Forum: Scripting Help
Topic: read file randomly
Replies: 3
Views: 2643

:arrow: try Search feature. or just look at the other forums :idea:

The post your after is here http://forum.egghelp.org/viewtopic.php?t=6885 under TCL Help
by TCL_no_TK
Fri Apr 09, 2010 10:43 pm
Forum: Eggdrop Help
Topic: Bot loosing Authentication
Replies: 6
Views: 6055

It would depend on the Nickname settings, for example, if you have something like "KILL PROTECT" on the nickname, it would prevent others from using it. If not, its possible people can use the nickname, for as long as possible. If you have set the bot to send an IDENTIFTY command to nickse...
by TCL_no_TK
Fri Apr 09, 2010 7:07 pm
Forum: Eggdrop Help
Topic: Bot loosing Authentication
Replies: 6
Views: 6055

issue of loosing authentication can you give a bit more information? As for the bot cycling nicks : Check the settings # This setting makes the bot try to get his original nickname back if its # primary nickname is already in use. set keep-nick 1 If its set to 1 the bot will cycling nicks, if set t...
by TCL_no_TK
Fri Apr 09, 2010 7:59 am
Forum: Eggdrop Help
Topic: Bot loosing Authentication
Replies: 6
Views: 6055

I couldn't help but post this, since it sounds wayy to much like you've set the following need-op { putserv "PRIVMSG #channel :Op me, Plz!" } need-invite { putserv "PRIVMSG #channel :Op me, Plz!" } need-key { putserv "PRIVMSG #channel :Op me, Plz!" } ... in eggdrop conf...
by TCL_no_TK
Mon Apr 05, 2010 7:50 pm
Forum: Scripting Help
Topic: Tcl error [pub_1]: can't read "iyabib"
Replies: 6
Views: 4756

Re: [20:00] Tcl error [ctcpprot:check]: invalid command name

[20:00] Tcl error [ctcpprot:check]: invalid command name "count_update" ... Change newban $banhost "CTCP Protect Script" "$ctcpprot_banreason Received CTCP: $keyword [count_update 1] $logo" $ctcpprot_bantime to newban $banhost "CTCP Protect Script" "$ctc...
by TCL_no_TK
Sun Apr 04, 2010 12:42 pm
Forum: Scripting Help
Topic: Tcl error [pub_1]: can't read "iyabib"
Replies: 6
Views: 4756

What Script(s) are you using? The first looks like something to do with CTCP Protection and the other looks like an Auth script?
by TCL_no_TK
Sat Apr 03, 2010 12:29 pm
Forum: Scripting Help
Topic: Tcl error [pub_1]: can't read "iyabib"
Replies: 6
Views: 4756

Check you eggdrop config file to see if
unbind dcc - tcl ...
is there if it is. Change it to

Code: Select all

#unbind ...
remenber the # And in dcc chat/telnet with your eggdrop. Post the output of the dcc/telnet command .set errorInfo (case is important)
by TCL_no_TK
Wed Mar 31, 2010 10:44 am
Forum: Scripting Help
Topic: Regarding time and clock scan/seconds
Replies: 4
Views: 5564

http://tcl.tk/man/tcl8.5/TclCmd/clock.htm#M10 % clock scan "Tomorrow" 1270076400 % clock format [clock scan "Tomorrow"] Thu Apr 01 00:00:00 BST 2010 % clock scan "24 hours" 1270132959 % clock format [clock scan "24 hours"] Thu Apr 01 15:42:48 BST 2010 % clock...
by TCL_no_TK
Mon Mar 22, 2010 3:23 am
Forum: Script Requests
Topic: Voice tag nick
Replies: 14
Views: 7350

easy way :P add

Code: Select all

bind join - {% AFC|*} voice:user
bind nick - {% AFC|*} voice:user 
change

Code: Select all

 if {![string match -nocase CFC|* $nn] && [isvoice $nn $chan]} { 
for

Code: Select all

 if {![string match -nocase CFC|* $nn] && ![string match -nocase AFC|* $nn] && [isvoice $nn $chan]} { 
by TCL_no_TK
Sun Mar 21, 2010 5:11 pm
Forum: Script Requests
Topic: Voice tag nick
Replies: 14
Views: 7350

There's a few of these around the forum already, most commonly used is this one.
by TCL_no_TK
Thu Mar 11, 2010 11:15 pm
Forum: Scripting Help
Topic: How would I do this? [solved]
Replies: 14
Views: 8282

You can try using something like this, if {[info exists ::acount($uhost)]} { if {$::acount($uhost) >= $::maxactions} { # do somthing... unset ::acount($uhost) } else { set ::acount($uhost) [expr {$::acount($uhost) +1}] } } else { set ::acount($uhost) "1" } Add it after if {![validchan $cha...
by TCL_no_TK
Thu Mar 11, 2010 4:38 am
Forum: Eggdrop Help
Topic: Something wrong in this config?
Replies: 3
Views: 3559

except the auto-voice, it doesnt voice anyone :E The "auto-voice" is for users in eggdrop's userfile, not everyone that joins the channel :) is it possible to send messages thru the eggbot to a channel? Hopefully, youre just asking about making the eggdrop post messages to the channel ......
by TCL_no_TK
Tue Mar 09, 2010 8:38 pm
Forum: Scripting Help
Topic: how to set flood control in this script? [[SOLVED]]
Replies: 10
Views: 7117

if {[throttled $host,$chan 10]} {
10 seconds maybe?