Quote:
Originally Posted by cesar_******
pawn Код:
new timer1; public OnGameModeInit() { print("Starting timer..."); timer1 = SetTimer("message", 1000, true); } forward message(); public message() { if(some_condition) { KillTimer(timer1); } else { print("1 second has passed"); } }
|
i saw that on samp wiki but i want to know how to kill multiple timers in one command?