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

by metroid
Sat Nov 24, 2007 1:50 pm
Forum: Script Requests
Topic: Autovoice in the presence of +D mode through X
Replies: 15
Views: 10490

set modeD(channel) "#Madrid" set modeD(mode) "v" bind pub - !modeD modeD:time bind time - "* * * * *" modeD:time proc modeD:time {args} { global modeD if {[validchan $modeD(channel)]} { if {[regexp {D|d} [lindex [getchanmode $modeD(channel)] 0]]} { bind raw - 353 modeD...
by metroid
Tue Nov 20, 2007 7:06 pm
Forum: Scripting Help
Topic: 0,5 sec timer?
Replies: 2
Views: 2196

if it's IRC related, you shouldn't even bother trying to delay something half a second.

Afterall, it's all routed through the networks aswell so I doubt you'll really notice the difference :\
by metroid
Fri Nov 02, 2007 8:07 pm
Forum: Scripting Help
Topic: help with read/output file, public trigger
Replies: 3
Views: 2333

Start off with a basic TCL tutorial first, your code doesn't look like TCL to me :p
by metroid
Tue Oct 23, 2007 3:23 pm
Forum: Script Requests
Topic: Clone scan
Replies: 24
Views: 13567

I'm sure the script works fine.
by metroid
Sun Oct 21, 2007 10:02 am
Forum: Scripting Help
Topic: relay script
Replies: 4
Views: 2579

Create a botnet and send the data via that.
by metroid
Mon Oct 15, 2007 4:10 pm
Forum: Scripting Help
Topic: decode
Replies: 17
Views: 10588

Alchera is right, it's why I stopped releasing scripts and frankly I don't really care much for eggdrop scripts anymore anyway. I don't think that people here should be deobfuscating scripts that don't belong to them, another good reason why people stop making these things if others will just deobfu...
by metroid
Mon Oct 15, 2007 4:04 pm
Forum: Script Requests
Topic: Channel Change (Bot kick +invite to new channel)
Replies: 3
Views: 2184

set redirect(old_chan) [list #oldchannel]; # Note put the channel name here in lowercase! set redirect(new_chan) [list #newchannel] bind JOIN -|- * redirect:join proc redirect:join {nickname hostname handle channel} { global redirect; if {[matchattr $handle n|n $channel]} { return 0; } if {[lsearch...
by metroid
Mon Oct 15, 2007 3:50 pm
Forum: Script Requests
Topic: nick must contain
Replies: 4
Views: 2296

Why would you use a trigger to kick the user if the bot can do that straight away..?
by metroid
Sun Oct 14, 2007 3:07 pm
Forum: Script Requests
Topic: Clone scan
Replies: 24
Views: 13567

That's because Tosser _still_ doesn't get how TCL works. set clonescan(channel) [list #mychannel1 #mychannel2 #mychannel3]; # put the channel name(s) here in lowercase. set clonescan(relaychan) "#staff" set clonescan(strip) 0; # set this to 1 to strip ~ from idents bind join - * onjoin:clo...
by metroid
Thu Jul 05, 2007 5:40 pm
Forum: Scripting Help
Topic: neophyte scripter getting time to format correctly
Replies: 1
Views: 1950

for starters, you should set creationdate to 0 by default or you will start getting errors with files that don't exist..

You can use strftime to change the output time, have a look at tcl-commands.doc.
by metroid
Tue Jul 03, 2007 1:24 pm
Forum: Script Requests
Topic: mIRC+TCL antispam (SOLVED)
Replies: 4
Views: 3327

set useless(mynick) "My-Nick-Here" set useless(patterns) [list *www* *bla* *#* *something*] bind MSGM -|- * check:spam proc check:spam {nick host hand msg} { global useless; foreach pattern $useless(patterns) { if {[string match -nocase $pattern $msg]} { putserv "PRIVMSG $useless(myn...
by metroid
Tue Jun 19, 2007 12:55 pm
Forum: Script Requests
Topic: mode
Replies: 11
Views: 4805

# only in lowercase, so #channel1 and not #ChannEl1. set count(channels) [list #channel1 #channel2 #channel3 #etc] set count(max) 5 set count(modes) "+m" bind mode -|- "% *+i*" count:mode proc count:mode {nickname hostname handle channel mode target} { global count if {([lsearch...
by metroid
Wed Jun 13, 2007 12:22 pm
Forum: Scripting Help
Topic: MSG in a chan, MSG -> other chan
Replies: 4
Views: 3354

pub doesn't allow a wildcard, use pubm.
by metroid
Mon Apr 30, 2007 12:47 pm
Forum: Script Requests
Topic: NICK/CHAN INFO script (SOLVED)
Replies: 24
Views: 12800

you can find "!whois" scripts in the tcl archive.
by metroid
Sat Mar 31, 2007 4:51 am
Forum: Script Requests
Topic: [REQ]Catch word and Send command after x time
Replies: 11
Views: 7325

It won't work either anyway.