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 droune
Wed May 21, 2008 6:52 am
Forum: Scripting Help
Topic: Modifying decision.tcl
Replies: 3
Views: 2074

Papillon wrote:your problem most likely is in the very first line

Code: Select all

set channl #channel 
tcl interpret everything following # on a line as a comment, so you need to do

Code: Select all

set channl "#channel" 
for $channl not to be an empty variable
Ahh, so that's the problem. It works now. Thanks a lot :)
by droune
Tue May 20, 2008 5:33 pm
Forum: Scripting Help
Topic: Modifying decision.tcl
Replies: 3
Views: 2074

Modifying decision.tcl

Hello. I found this great script which can make some decisions for me. It works like this: <user> [ ] option 1 [ ] option 2 [ ] option 3 <bot> [x] option 1 [ ] option 2 [ ] option 3 The idea is great but I'd like to modify it a bit. The best way to avoid channel flooding is to set the user input on ...