16.08.2012, 22:41
You can always create a new player variable, like so:
pawn Код:
//top of your script
new WantedLevel[MAX_PLAYERS];
//and in the script, where you add Wanted Level, you add like:
WantedLevel[playerid] += 20; // This will add to a players wanted level 20
// And to check what a players wanted level is, do like:
if(WantedLevel[playerid] == 20)
// if his wanted level is 20
else if(WantedLevel[playerid] == 40)
// if his wanted level is 40 and so on