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.

delay putallbots

Help for those learning Tcl or writing their own scripts.
Post Reply
p
pinkel
Voice
Posts: 8
Joined: Wed May 21, 2008 2:59 pm

delay putallbots

Post by pinkel »

I want to delay the putallbots announce for 3 secs.

I tried it this way:

Code: Select all

          utimer 3 putallbots "!channels $text"

          utimer 03 putallbots "!channels $text"

but both gives the error:
Tcl error [say]: wrong # args: should be "utimer seconds command"
What do I need to change?

Thanks
User avatar
speechles
Revered One
Posts: 1398
Joined: Sat Aug 26, 2006 10:19 pm
Location: emerald triangle, california (coastal redwoods)

Post by speechles »

Code: Select all

utimer 3 [list putallbots "!channels $text"]
Post Reply