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

by AtomicWedgie
Sat May 07, 2005 5:37 am
Forum: Archive
Topic: Something aint right.. help me
Replies: 6
Views: 1921

bind pub - "!add cs" my:proc you can't use pub with "!add cs" you may want to change this to: bind pubm - "!add cs *" my:proc proc my:proc {nick uhost hand chan text} { if {[string equal -nocase "game" [lindex [split $text] 2]]} { if {([lindex [split $text] 3...
by AtomicWedgie
Sat May 07, 2005 5:35 am
Forum: Archive
Topic: Something aint right.. help me
Replies: 6
Views: 1921

i want like !add cs
<bot> You have been added to CS list. Thank you for using this Service
by AtomicWedgie
Sat May 07, 2005 5:33 am
Forum: Archive
Topic: Something aint right.. help me
Replies: 6
Views: 1921

2) no message when trying to add.


How do i do this ?
by AtomicWedgie
Fri May 06, 2005 7:16 pm
Forum: Archive
Topic: Something aint right.. help me
Replies: 6
Views: 1921

bind pub - "!add cs" my:proc proc my:proc {nick uhost hand chan text} { if {[string equal -nocase "game" [lindex $text 0]]} { if {([lindex $text 1] != "") && ![file exists database\CS.txt]} { set file [open database\CS.txt a]; puts $file "[lindex $text 1] ...
by AtomicWedgie
Fri May 06, 2005 7:15 pm
Forum: Archive
Topic: Something aint right.. help me
Replies: 6
Views: 1921

Something aint right.. help me

bind pub - "!add cs" my:proc proc my:proc {nick uhost hand chan text} { if {[string equal -nocase "game" [lindex $text 0]]} { if {([lindex $text 1] != "") && ![file exists database\CS.txt]} { set file [open database\CS.txt a]; puts $file "[lindex $text 1] ...
by AtomicWedgie
Fri May 06, 2005 11:42 am
Forum: Archive
Topic: Need help with mirc to tcl..
Replies: 6
Views: 3011

hmm,
friend says i will get flooded with the bot sending the whole list to ppl...

maybe any1 can make :
an Admin command that will add Lists like ..

.Addlist UT

CS.txt and UT.txt, then you can do !players UT

and the bot says Totally players under UT is: 32
by AtomicWedgie
Fri May 06, 2005 11:22 am
Forum: Archive
Topic: Need help with mirc to tcl..
Replies: 6
Views: 3011

!show <should show the Number of Listed and will show list, !remove <should remove nick from list> and if you can add this little thing it will be perfect ... as some1 !adds the bot will change topic with Last Added : <NAME> and an admin command to !remove <nick> thats all thanks :)
by AtomicWedgie
Fri May 06, 2005 11:19 am
Forum: Archive
Topic: Need help with mirc to tcl..
Replies: 6
Views: 3011

now all needed is !removeme that will remove name from list

and !show



this is correct :)
by AtomicWedgie
Fri May 06, 2005 11:15 am
Forum: Archive
Topic: Need help with mirc to tcl..
Replies: 6
Views: 3011

yes :)

now all needed is !removeme that will remove name from all lists

and !show <list> .
by AtomicWedgie
Thu May 05, 2005 10:50 pm
Forum: Archive
Topic: Need help with mirc to tcl..
Replies: 6
Views: 3011

Need help with mirc to tcl..

Code: ON *:TEXT:*:#:{ if ($1 == !add) { if ($2 == game) { if ( ($3 != $null) && (!$read(database\games.txt,w,$3) ) { /.write database\games.txt $3 $nick } } } if ($2 == clan) { if ( ($3 != $null) && (!$read(database\clans.txt,w,$3) ) { /.write database\clans.txt $3 $nick } } } Pleas...
by AtomicWedgie
Wed May 04, 2005 9:08 am
Forum: Archive
Topic: needed to be translated to TCL
Replies: 2
Views: 2625

One last thing...

i want a !show command that will show all list's as a notice or query or echo
by AtomicWedgie
Wed May 04, 2005 9:06 am
Forum: Archive
Topic: needed to be translated to TCL
Replies: 2
Views: 2625

!removeme should remove the name of player (or by host) from all lists.
by AtomicWedgie
Wed May 04, 2005 8:33 am
Forum: Archive
Topic: needed to be translated to TCL
Replies: 2
Views: 2625

needed to be translated to TCL

ON *:TEXT:*:#:{ if ($1 == !add) { if ($2 == game) { if ( ($3 != $null) && (!$read(database\games.txt,w,$3) ) { /.write database\games.txt $3 $nick } } } if ($2 == clan) { if ( ($3 != $null) && (!$read(database\clans.txt,w,$3) ) { /.write database\clans.txt $3 $nick } } } Please make...