12.04.2015, 22:07
Quote:
Firstly, why do you have two timers with the same repeating interval? Makes no sense. |
What if you had 2 timers and you combined them into a 3rd timer. Now at some point you want to kill the first timer, so how do you do that without killing the second one? You use separate timers.
pawn Код:
SetTimer("TipBot", 180000, 1);
SetTimer("GameBot", 600000, 1);
600000 = 600 seconds = 10 minutes
So what's the problem again?