RCK, the eggdrop utimer function is as follows (from eggdrop documentation):
Quote:
utimer <seconds> <tcl-command>
Description: executes the given Tcl command after a certain number of
seconds have passed
Returns: a timerID
Module: core
|
In my script, I didn't take into account that you might be using other scripts that use timers, sorry.
My script creates a utimer, then when a certain amount of seconds pass deletes all utimers, and creates another utimer.. repeating the process indefinitely.
An easy way to fix this is setting a global variable to the return value of the utimer command, which is the timerID, and then only deleting that utimer.
I don't have the time right now, but I'll try to over the weekend.