19.07.2015, 17:42
Hello!
You have to work with a timer.
Take this or anything else:
SetTimerEx have to be there where the players connect.
(Sorry for my bad English!)
- Mencent
You have to work with a timer.
Take this or anything else:
PHP код:
SetTimerEx("OnPlayerWantedTimer",60000*3,1,"i",playerid);//This have to be where the players connect
forward OnPlayerWantedTimer(playerid);
public OnPlayerWantedTimer(playerid)
{
if(GetPlayerWantedLevel(playerid) > 0)SetPlayerWantedLevel(playerid,GetPlayerWantedLevel(playerid)-1);
return 1;
}
(Sorry for my bad English!)
- Mencent

