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.
Old posts that have not been replied to for several years.
D
Dizmo
Post
by Dizmo » Sun Oct 17, 2004 11:57 am
Hey
im trying to make a timer which msg's "X" with "save" every 15mins, im not very good with tcl and i was wondering if you could make that simple timer please. hope it isnt too much trouble, thanks
Your a life saver if you can
greenbear
Owner
Posts: 733 Joined: Mon Sep 24, 2001 8:00 pm
Location: Norway
Post
by greenbear » Sun Oct 17, 2004 12:28 pm
Code: Select all
if {![string match "*x:save*" [timers]]} {timer 15 x:save}
proc x:save {} {
putserv "PRIVMSG X :save"
if {![string match "*x:save*" [timers]]} {
timer 15 x:save
}
}
D
Dizmo
Post
by Dizmo » Sun Oct 17, 2004 6:25 pm
Thanks gb