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
Sun May 23, 2004 10:57 am
Forum: Script Support & Releases
Topic: Problem with Mass Join Clone Kicker Script.
Replies: 7
Views: 16833

Try with a shorter kick msg, you might trigger some anti-flood setting with it being so long.

Set your bots +enforcebans

Hope this helps.
by greenbear
Sun May 23, 2004 10:49 am
Forum: Archive
Topic: Channelbanlist Full
Replies: 12
Views: 2410

something like this should work set maxbans 40 bind mode - "*+b*" auto:unban proc auto:unban {nick uh hand chan arg} { global botnick maxbans set lenbanlist [llength [chanbans $chan]] if { $lenbanlist >= $maxbans } { set unban [lindex [chanbans $chan] 1] putserv "MODE $chan -b $unban&...
by greenbear
Fri May 21, 2004 1:47 pm
Forum: Archive
Topic: CTCP returns
Replies: 12
Views: 3542

Hi

try something like this:

to send a ctcp time request

Code: Select all

putserv "PRIVMSG $nick :\001TIME"  
and to read the reply

Code: Select all

bind ctcr - TIME time_reply
proc time_reply {nick host handle dest keyword args} {
 set reply [lindex $args 0]
 # ....
} 
by greenbear
Tue May 18, 2004 9:27 pm
Forum: Archive
Topic: Bot rehash
Replies: 1
Views: 1080

try doing a .restart
by greenbear
Mon May 17, 2004 10:32 pm
Forum: Archive
Topic: Botnet user lists share, share module settings help
Replies: 1
Views: 944

check the set private-global and set private-globals setting in the config
by greenbear
Mon May 17, 2004 10:06 pm
Forum: Archive
Topic: weather 3.4.1
Replies: 4
Views: 2096

i think wunderground, the page it get the info from, changed layouts.
by greenbear
Wed May 12, 2004 2:29 pm
Forum: Archive
Topic: crc check of a file..
Replies: 18
Views: 3002

tcllibs comes with a crc checker
by greenbear
Tue Dec 03, 2002 7:15 pm
Forum: Archive
Topic: long numbers
Replies: 3
Views: 840

didnt really find anything in the tcllibs that i could use

I was gonna play around with converting normal ips into long ip's, but the numbers get to high.
by greenbear
Tue Dec 03, 2002 4:59 pm
Forum: Archive
Topic: long numbers
Replies: 3
Views: 840

long numbers

could anyone please give me any pointers on how to work with very high numbers ?

10000000*100000000
Tcl: -1530494976

...
by greenbear
Tue Nov 06, 2001 2:38 pm
Forum: Archive
Topic: Only specified users may use .+user command
Replies: 15
Views: 1437

I guess you could use the filt command for this. the code would be something like this: # users that can use the +user command set allowed "user1 user2" bind filt - ".+user" +user:check proc +user:check {idx args} { global allowed set usernick [idx2hand $idx] if {[lindex $args 1]...
by greenbear
Fri Nov 02, 2001 1:20 am
Forum: Archive
Topic: irco Scan Port v1.0
Replies: 12
Views: 1158

hi i see you use

fconfigure $sock -error

i cant find the -error option documented anywhere.

and when playing it with it thru .tcl on partyline, i cant see it does anything...

by greenbear
Sat Oct 27, 2001 4:12 pm
Forum: Archive
Topic: beginner question
Replies: 1
Views: 563

For eggdrop based tcl u could checkout :
http://www.suninet.nl/tclguide/tclguide.html

For tcl in general goto:
http://www.scriptics.com/
by greenbear
Tue Oct 23, 2001 2:04 pm
Forum: Archive
Topic: if somthing is equal to nothing ?
Replies: 1
Views: 590

you typed it wrong, try

Code: Select all

if {$var == ""} { 
  #do stuff 
}
by greenbear
Sun Sep 30, 2001 5:41 pm
Forum: Archive
Topic: checking if a var is a number or not
Replies: 2
Views: 1465

hi, I want to check if a var. is a number or not. until now i have been using isnum, but it doesnt work with negative numbers.

ie.
.tcl isnum 5 -> Tcl: 1
.tcl isnum -5 -> Tcl: 0