26.11.2010, 17:54
SetTimer returns the ID of the newly created timer. To keep track of this ID between different functions, you need to:
pawn Код:
// Top of script
new BSPTimer;
// Enter Checkpoint
BSPTimer = SetTimer("Bombspawnpolice",15000,false);
// Leave Checkpoint
KillTimer(BSPTimer);