20.07.2015, 11:28
Well this timer stops when the player is going offline. You shouldn't stop the timer when the player has 0 wanteds, because the player can get wanted again, and then the timer is off. 
But, you should do this:
to:
So, if the player leave the server the timer will stop.
- Mencent

But, you should do this:
PHP код:
SetTimerEx("OnPlayerWantedTimer",60000*3,1,"i",playerid);//This have to be where the players connect
PHP код:
new WantedTimer[MAX_PLAYERS];//global
WantedTimer[playerid] = SetTimerEx("OnPlayerWantedTimer",60000*3,1,"i",playerid);//This have to be where the players connect
//OnPlayerDisconnect:
KillTimer(WantedTimer[playerid]);
- Mencent


