Author Topic: Schedules, can they be cancelled?  (Read 346 times)

I've been wondering for a while now and I've needed to know this but just didn't bother to ask anyone.
Can schedules be cancelled or not?  Because I'm making a client-sided afk reminder and when I say I'm back, it says I'm back but since the schedule is a long time-period (so it doesn't seem like spam whatsoever) so it still plays the schedule when I say I'm back after it already calls the schedule.

I've really been wondering if you can cancel them like by a function or something. I'd appreciate it.

Code: [Select]
$mySchedule = schedule(5000,0,doStuff);

cancel($mySchedule);

Code: [Select]
$mySchedule = schedule(5000,0,doStuff);

cancel($mySchedule);
This works, thanks!