Posts: 1,648
Threads: 482
Joined: Jun 2010
Title says all.
If I were to use settimerex and set it to repeating false would I need to kill it after it has been called and if I didn't what would happen?
Posts: 872
Threads: 25
Joined: Sep 2014
Reputation:
0
No, you don't need. Only if you want to kill the timer before it executes.
Posts: 1,648
Threads: 482
Joined: Jun 2010
I've been having issues with timers not being called.
Posts: 21
Threads: 0
Joined: Feb 2016
Reputation:
0
In short, no.
When you kill a timer, that timer's ID is never freed, i.e. used again internally. This is because timer IDs are incremental. So if you kill timer ID 5, the ID of the next created timer will be 6 instead of 5. Think of it as an AUTO_INCREMENT column in a SQL database.