16.08.2013, 21:42
What are you trying to achieve with:
?
First, set the timer to a global var:
pawn Код:
KillTimer(MoneyHackTimer(playerid));
First, set the timer to a global var:
pawn Код:
new timerMoneyHack[MAX_PLAYERS] = {INVALID_PLAYER_ID, ...};
KillTimer(timerMoneyHack[playerid]); // Make sure you kill the timer first ( If it was already set )
timerMoneyHack[playerid] = SetTimer(...);