26.08.2012, 19:28
Look them up on wiki.
Basically, SetTimerEx is SetTimer with parameters, if you want to send random messages to everybody etc. then SetTimer is enough, but when you want a timer to be only for 1 person, you use SetTimerEx. KillTimer is used to kill a timer, like stop it working.
Like:
Basically, SetTimerEx is SetTimer with parameters, if you want to send random messages to everybody etc. then SetTimer is enough, but when you want a timer to be only for 1 person, you use SetTimerEx. KillTimer is used to kill a timer, like stop it working.
Like:
pawn Код:
new timerid123 = SetTimer("SendRandomMessage", 1000*30*7, true);
KillTimer(timerid123);