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
Thu May 26, 2005 6:33 pm
Forum: Archive
Topic: using list in a foreach command
Replies: 23
Views: 8232

its not brainsurgery, store everything in lists (split), so you wont get any problems with special chars or [commands], then when doing matches or server outputs, convert it back to a string (join).
by greenbear
Thu May 26, 2005 3:26 pm
Forum: Archive
Topic: Problems with starting my eggdrop
Replies: 6
Views: 2431

are you allowed to run bg processes on that shell, then ?
by greenbear
Wed May 25, 2005 7:57 pm
Forum: Archive
Topic: customized info script
Replies: 3
Views: 1844

/me pets ac1id
down boy
by greenbear
Wed May 25, 2005 2:08 pm
Forum: Archive
Topic: thk u very much for your time and consideration in advance
Replies: 3
Views: 1667

Remove the script you've added that has the core:*dcc:+chan proc.
by greenbear
Wed May 25, 2005 2:02 pm
Forum: Archive
Topic: Bad word script doesn't ban if bad word is told in action
Replies: 11
Views: 3145

Code: Select all

bind ctcp - ACTION ctcp:badword

proc ctcp:badword {nick uhost hand chan keyword text} {
 if [string match -noc *badword* $text] {
  swproc $nick $uhost $hand $chan $text
 }
}
by greenbear
Wed May 25, 2005 1:34 pm
Forum: Archive
Topic: IS THAT A CODE BUG????
Replies: 3
Views: 1903

unfortanly that error msg doesnt tell us much, other than it crashing using a timer somewhere in/around the nb_gotcmc proc..
anything interesting in that DEBUG file it wrote ?
by greenbear
Wed May 25, 2005 1:08 pm
Forum: Archive
Topic: Vhost list
Replies: 34
Views: 13804

not getting klined seems like the better solution
by greenbear
Wed May 25, 2005 12:00 pm
Forum: Archive
Topic: how to stop an eggdrop trying to reconnect if G:lined
Replies: 2
Views: 1447

try the klined.tcl script that comes with eggdrop
by greenbear
Wed May 25, 2005 11:58 am
Forum: Archive
Topic: thk u very much for your time and consideration in advance
Replies: 3
Views: 1667

sounds like a custom script that you've loaded.
by greenbear
Tue May 24, 2005 9:59 pm
Forum: Archive
Topic: voice devoice problem
Replies: 5
Views: 2997

that sounds like a custom script.
by greenbear
Tue May 24, 2005 9:45 pm
Forum: Archive
Topic: tried my best
Replies: 10
Views: 4309

I recommend oidentd. Basicly all you have to do is start it.
by greenbear
Tue May 24, 2005 9:42 pm
Forum: Archive
Topic: customized info script
Replies: 3
Views: 1844

set infodb "/path/to/dbfile/info.dat" set maxhits 5 proc pub:info {nick uhost hand chan text} { set search [lrange [split $text] 0 e] set hits 0 set db [open $::infodb r] while {![eof $db]} { set line [gets $db] set keyword [concat [lindex [split $line |] 0]] if {[string match -noc *[join...
by greenbear
Tue May 24, 2005 2:29 pm
Forum: Archive
Topic: Help with mIRC > TCL
Replies: 4
Views: 2121

bind msg - !scrimhelp msg:scrimhelp bind pub - !scrimhelp pub:scrimhelp bind pub - !nmxscrim pub:nmxscrim bind msg - !setscrim msg:setscrim proc msg:scrimhelp {nick uhost hand text} { say:scrimhelp $nick } proc pub:scrimhelp {nick uhost hand chan text} { say:scrimhelp $nick } pub say:scrimhelp nick...
by greenbear
Tue May 24, 2005 11:47 am
Forum: Archive
Topic: Let a tcl script comunicate with java program
Replies: 1
Views: 1017

yea, that can be done. read up on exec, eval and catch.
by greenbear
Tue May 24, 2005 11:42 am
Forum: Archive
Topic: question with some tcl + php code
Replies: 7
Views: 2250

convert $arg to a list, using 'split', before doing anything to it.

Code: Select all

set arg [lrange [split $arg] 0 end]
and to convert it back to a string, you can use 'join'