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

by willyw
Tue Jan 20, 2009 11:42 am
Forum: Script Support & Releases
Topic: Statistics.tcl by perpleXa (the pubm problem)
Replies: 9
Views: 17541

if {(![channel get $channel stat])} { return 0 } Basically, if the channel isn't set +stat a return of 0 is issued. This is the problem with returning values (in this case a zero, 0) from procedures that are triggered by binds. Change it to merely a 'return'. And by the looks of skimming through th...
by willyw
Sun Jan 18, 2009 5:36 pm
Forum: Script Support & Releases
Topic: Statistics.tcl by perpleXa (the pubm problem)
Replies: 9
Views: 17541

Statistics.tcl by perpleXa (the pubm problem)

Hello, I hope this is the right place for this. This is about Statistics.tcl by perplexa. Can be found here: http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&id=1079 Discovered that scripts can cause channel monitoring via console with +p flag, and channel logging of all traffic with...
by willyw
Sun Jan 18, 2009 4:58 pm
Forum: Script Support & Releases
Topic: AllProtection.tcl (Stable: v4.8 / Beta: v4.9b4)
Replies: 1351
Views: 1025352

Sir_Fz: Have just now made the edits, as per your above. Only briefly tested, but it seems to work. :) Thank you! Hopefully there will be no unexpected effects. Forgot to mention (sorry!) that we are using AP v.4.5 , because I found it here: http://www.egghelp.org/tclhtml/3478-4-0-0-1-allprotection....
by willyw
Fri Jan 16, 2009 8:31 pm
Forum: Script Support & Releases
Topic: AllProtection.tcl (Stable: v4.8 / Beta: v4.9b4)
Replies: 1351
Views: 1025352

At line 1368 you'll find: set cl "abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&" add "." and "?" to that string, and replace the line at 1370: if {[string match -nocase *[string repeat [string index $cl $c] $i]* $arg]} { with if {[string match -nocase *[string map {?...
by willyw
Fri Jan 16, 2009 8:27 pm
Forum: Script Support & Releases
Topic: Universal channel script
Replies: 224
Views: 216306

I've tried what you've said. It does not work, 100%. :( Add "return 0" to the end of the following procs: punish (line 430), clone (line 458), repeat (line 484) and mass (line 520) ... I'm too tired to read the rest of the script to make more sense of the timing stuff right now...let's ho...
by willyw
Thu Jan 15, 2009 3:08 pm
Forum: Script Support & Releases
Topic: Universal channel script
Replies: 224
Views: 216306

I would really like a fix for the above bug. add return 0 as the last line within the proc called "mass" (line 520 in version 4.2) EDIT: you may have to add it to the end of the proc named "punish" too (line 430) Nice! I didn't ask this, but was sure glad to see you'd replied to...
by willyw
Thu Jan 15, 2009 1:23 am
Forum: Script Support & Releases
Topic: Universal channel script
Replies: 224
Views: 216306

xchannel

Just trying out xchannel. 1.) Does anybody still use it? I see this thread hasn't had a post in a long time.... 2.) How long is the offense period, before it resets? That is, in the w,k.b sequence, if a channel user gets kicked, how much time must go by with no more offenses, for this user to be bac...
by willyw
Thu Jan 15, 2009 1:09 am
Forum: Script Support & Releases
Topic: AllProtection.tcl (Stable: v4.8 / Beta: v4.9b4)
Replies: 1351
Views: 1025352

character repeating

Hello, Just getting familiar with Allprotection. This is about character repeating. With a test setup, it seems that AP will not trigger on repeated question marks. It does trigger on repeated exclamation points though. Same for repeated periods... no trigger. Is there something I've overlooked? We ...