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

by Kurupt
Thu Aug 25, 2005 6:29 pm
Forum: Archive
Topic: no ctcp version
Replies: 3
Views: 3447

would it work on 1500 nicks, i know that

Code: Select all

putserv "privmsg #chan :\001VERSION\001" 
but not so good with arrays
by Kurupt
Thu Aug 25, 2005 5:35 pm
Forum: Archive
Topic: no ctcp version
Replies: 3
Views: 3447

no ctcp version

On a chan are some bots that have ignore to ctcp version, so my question is how to ban the nicks that don't respond to version. Thanks, some ideeas would do it because i have no ideea now, if they don't respond how should i know. And secound i don't whant to version every nick i whant to version the...
by Kurupt
Thu Jun 16, 2005 4:38 am
Forum: Archive
Topic: ban mask
Replies: 3
Views: 1860

Code: Select all

*!$uhost
by Kurupt
Sat Apr 23, 2005 4:49 pm
Forum: Archive
Topic: MaxQsend problem after join huge channels
Replies: 1
Views: 1515

yes

by Kurupt
Sat Apr 16, 2005 5:10 pm
Forum: Archive
Topic: .binds * get the HITS [fixed]
Replies: 3
Views: 1386

doh

oh to get it if i have that line is no problem but how do i get this lines in tcl dosen't exist a command for .binds *
by Kurupt
Sat Apr 16, 2005 5:02 pm
Forum: Archive
Topic: .binds * get the HITS [fixed]
Replies: 3
Views: 1386

.binds * get the HITS [fixed]

[23:58:19] <bot> Command bindings: [23:58:19] <bot> TYPE FLGS COMMAND HITS BINDING (TCL) [23:58:19] <bot> nick -|- * 4510 drone:nick [23:58:19] <bot> notc -|- *LOGIN*username*password* 424 NoticeBan [23:58:19] <bot> notc -|- *login*syntax* 273 NoticeBan [23:58:19] <bot> pub -|- .ub 28 pub:unban [23...
by Kurupt
Thu Mar 17, 2005 5:53 am
Forum: Archive
Topic: Undernet network.. "mode #chan +e" on join!?
Replies: 15
Views: 10449

undernet dosen't support exempt
by Kurupt
Thu Mar 17, 2005 5:48 am
Forum: Archive
Topic: Need help on fight against the floods
Replies: 6
Views: 3434

same problem for me the bots start the ident with a lether folowed by numbers i made something like that if the ident start with 1 lether and 2 digits afther do ...

Code: Select all

  if {[regexp {^~{0,1}[[:lower:]]\d{2}.*$} [lindex [split $uhost @] 0]]} {
by Kurupt
Sun Mar 06, 2005 4:34 pm
Forum: Archive
Topic: ban
Replies: 4
Views: 3909

bind pubm - "*http://www.netwars.ru/go.php?login=*" ban:word proc ban:word {nick uhost hand chan text} { global botnick set reason "You use a forbiden word" set time "60" # in minutes set banmask *!*@[lindex [split $uhost @] 1] # will be *!*@ip newchanban $chan $banmas...
by Kurupt
Sat Mar 05, 2005 7:28 pm
Forum: Script Requests
Topic: Script request!
Replies: 14
Views: 8413

oh sorry i whas a lil disturbed
by Kurupt
Sat Mar 05, 2005 5:26 pm
Forum: Script Requests
Topic: Script request!
Replies: 14
Views: 8413

.

Code: Select all

bind time - "*5 * * * *" change:it
proc change:it {min hour day month year} {
global nick
set nick [randstring 9]
}
by Kurupt
Tue Dec 28, 2004 2:51 pm
Forum: Archive
Topic: /who #chan when the bot joins
Replies: 9
Views: 4247

neah

i don't use enforcebans so if no other problem is then will work fine for me. thanks
by Kurupt
Sun Dec 26, 2004 5:08 pm
Forum: Archive
Topic: /who #chan when the bot joins
Replies: 9
Views: 4247

/who #chan when the bot joins

I have a problem. My bots need to join a big channel, big means 900+ ppl on chan. And wen the bot join he do a /who #chan and that make im to get ping timeout. So my question does somebody know how to stop to do /who #chan when he joins or have somebody a patch for something like that.
by Kurupt
Thu Dec 02, 2004 7:40 pm
Forum: Archive
Topic: [SOLVED] Flag user information on join #
Replies: 21
Views: 6491

....

bind join - * pub:join proc pub:join {nick uhost hand chan} { if {[matchattr $hand Z|- $chan]} {putserv "privmsg $chan :owner entered"} else { if {[matchattr $hand -|o $chan]} {putserv "privmsg $chan :op entered"} else { if {[matchattr $hand -|- $chan]} {putserv "privmsg $c...
by Kurupt
Mon Sep 13, 2004 3:38 pm
Forum: Archive
Topic: botnick
Replies: 4
Views: 1397

this

No error but still not works bind raw - NICK rawNick proc rawNick {f k a} { if {$f==$::botname} { # new botnick is [string range $a 1 end] foreach bind [binds $nick] { set type [lindex $bind 0] set flag [lindex $bind 1] set mask [lindex $bind 2] set proc [lindex $bind 4] regsub -- $nick $mask $newni...