What is your bot using to connect? mIRC?
mIRC does have it’s own built in timer system that accepts timer names.
Example: /timerBlackMarmalade 0 900 /msg #BlackMarmalade This is a message that will send every 15 minutes; Forever.
at the same time you could run:
/timerWhiteMarmalade 0 900 /msg #WhiteMarmalade This is a message that will send every 15 minutes; Forever.
Another example: /timerBlackMarmalade 5 60 /msg #BlackMarmalade This is a message that will send every 1 minute; 5 times, then stop.
There is no space between /timer and your variable name. To shut off “ALL” timers you could do /timers off
To shut off one timer you could do /timerName off.
BE VERY CAREFUL ABOUT THE ORDER YOU PUT THE NUMBERS IN
/timerDerp 0 900 /msg #channel HerpDerp will send one message every 15 minutes forever
/timerDerp 900 0 /msg #channel HerpDerp will send 900 messages instantly. You will be banned for 8 hours.
Of course if you use another bot/client/service you could custom code your own timer, but I assume that you don’t program.