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 704 matches

by greenbear
Mon May 23, 2005 4:57 pm
Forum: Archive
Topic: for Kill 1 utimer ????
Replies: 3
Views: 1801

you can use 'killutimer'

Code: Select all

set timerid [utimer $gsec [list timer:end:nick2 $chan]]
killutimer $timerid
by greenbear
Sun May 22, 2005 6:37 pm
Forum: Archive
Topic: Eggdrops auto-kills (process) itself daily
Replies: 10
Views: 3345

eggdrop is also switching logfiles by default at 3am.
if you recently moved to another server, there could be a incorrect complete path somewhere that mess things up, possibly one related to logfile.
by greenbear
Thu May 19, 2005 8:38 pm
Forum: Script Support & Releases
Topic: encrypted trojan scan script (cont.)
Replies: 20
Views: 35104

thats just bullshit. its distributed freely under the gnu licence. if he didnt want ppl to read it, he shouldnt have made it public.
by greenbear
Thu May 19, 2005 8:32 pm
Forum: Archive
Topic: UID nick on join server
Replies: 3
Views: 2389

alot of servers dont like single char nicks, so try a different nickname.
by greenbear
Thu May 19, 2005 10:32 am
Forum: Archive
Topic: regex problem
Replies: 5
Views: 2714

the ? it makes it stop after the first match.
by greenbear
Wed May 18, 2005 10:29 am
Forum: Archive
Topic: set the local port range used by eggdrop
Replies: 8
Views: 3908

enable/change this setting in your config
#set reserved-portrange 2010:2020
by greenbear
Tue May 17, 2005 11:00 am
Forum: Archive
Topic: what's wrong here ? (I want to have megahal privately)
Replies: 2
Views: 1418

you have a typo in the msgm bind
by greenbear
Mon May 16, 2005 6:56 pm
Forum: Script Support & Releases
Topic: encrypted trojan scan script
Replies: 5
Views: 17891

wow, thats gay.

if you dont want people to read your code, dont make it public.
by greenbear
Mon May 16, 2005 1:27 pm
Forum: Archive
Topic: Eggdrop -Mysql
Replies: 6
Views: 3815

its a complete frontend for mysql, so no need for any other external tcl libs or modules.
by greenbear
Fri May 13, 2005 3:29 pm
Forum: Archive
Topic: how to do simple !commands
Replies: 2
Views: 1928

Code: Select all

bind pub - !website pub:website

proc pub:website {nick uhost hand chan text} {
 putserv "PRIVMSG $chan :website blah blah"
}
by greenbear
Fri May 13, 2005 11:40 am
Forum: Archive
Topic: Text flood kick
Replies: 15
Views: 5896

if the channel is static, and you edit the settings in your config file, then you have to restart. if its a dynamic chan, just changing the setting with ".chanset #chan flood-chan xx:xx" is enough. have you ever considered a script that target repeat floods specificly ? maybe something lik...
by greenbear
Thu May 12, 2005 11:07 pm
Forum: Archive
Topic: Detect the username of everynick join achannel
Replies: 10
Views: 3638

Something like this should get you started bind join - * lookup:realname proc lookup:realname {nick uhost hand chan} { puthelp "WHOIS $nick" } bind raw - 311 parse:realname proc parse:realname {from key arg} { set nick [lindex [split $arg] 1] set ident [lindex [split $arg] 2] set host [lin...
by greenbear
Thu May 12, 2005 10:52 pm
Forum: Archive
Topic: Text flood kick
Replies: 15
Views: 5896

note that the bo will allow +f users to flood all they want
by greenbear
Thu May 12, 2005 7:08 pm
Forum: Archive
Topic: Eggdrop -Mysql
Replies: 6
Views: 3815

by greenbear
Thu May 12, 2005 3:15 pm
Forum: Archive
Topic: average.tcl
Replies: 12
Views: 3514

there's no code related to notices in the code you pasted.

maybe you could paste the code that you actually use, along with the error msg.