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.
Help for those learning Tcl or writing their own scripts.
-
keeper2
- Voice
- Posts: 12
- Joined: Wed Jul 19, 2006 10:16 am
Post
by keeper2 »
Whats wrong here? The timer start immediately, but it should start after 15 seconds.
utimer 15 [putquick "privmsg #channel :Timer after 15 seconds!"]
-
krimson
- Halfop
- Posts: 86
- Joined: Wed Apr 19, 2006 8:12 am
Post
by krimson »
you should use
Code: Select all
utimer 15 [list putquick "privmsg #channel :Timer after 15 seconds!"]
-
keeper2
- Voice
- Posts: 12
- Joined: Wed Jul 19, 2006 10:16 am
Post
by keeper2 »
krimson wrote:you should use
Code: Select all
utimer 15 [list putquick "privmsg #channel :Timer after 15 seconds!"]
Thanks man