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

by caramba
Tue Feb 24, 2009 6:58 pm
Forum: Scripting Help
Topic: namespace, foreach - problem
Replies: 7
Views: 3973

Hey I tested it on TCL 8.4.12, 8.5.5 with eggdrop 1.6.18. The same problem on both. Like tomekk said, it's something wrong with queue. I don't know how to fix it. I changed in config "max-queue-msg" no effect. I tried puthelp/putquick/putserv - nothing. There is no possibility to send more...
by caramba
Sat Feb 21, 2009 1:16 pm
Forum: Scripting Help
Topic: namespace, foreach - problem
Replies: 7
Views: 3973

namespace, foreach - problem

Hi everyone simple script: bind pub - !do do_proc proc do_proc {unick uhost uhand uchan uarg} { namespace eval $unick { set nickname [lindex [split [namespace current] ":"] 2] set letters {a b c d e f g} foreach letter [split $letters] { putquick "PRIVMSG $nickname :$letter" } } ...