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.

Eggdrop Timer

Old posts that have not been replied to for several years.
Locked
D
Dizmo

Eggdrop Timer

Post by Dizmo »

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 :)
g
greenbear
Owner
Posts: 733
Joined: Mon Sep 24, 2001 8:00 pm
Location: Norway

Post by greenbear »

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

Thanks :) It works great, Life saver

Post by Dizmo »

:) Thanks gb
Locked