SA-MP Forums Archive
Wanted level over 6? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Wanted level over 6? (/showthread.php?tid=379885)



Wanted level over 6? - SKAzini - 23.09.2012

Is it possible to make a players wanted level over 6?
Eg.
pawn Код:
SetPlayerWantedLevel(playerid, 32);
Making
pawn Код:
GetPlayerWantedLevel(playerid);
Read 32 instead of the visible 6 HUD stars, without implementing a wanted level variable?


Re: Wanted level over 6? - clarencecuzz - 23.09.2012

No. You can save a player variable though.
Example:
pawn Код:
new WantedLevel[MAX_PLAYERS];

//When a player commits a crime
WantedLevel[playerid]++;
Read https://sampwiki.blast.hk/wiki/SetPlayerWantedLevel
the 'level' parameter can only be from 0-6.

EDIT: Shit lol, just saw this part: "Without implementing a wanted variable". In that case, no it's not very possible.


Re: Wanted level over 6? - Gangster-rocks - 23.09.2012

U need text draw but i don't know how to make it sorry.


Re: Wanted level over 6? - SKAzini - 23.09.2012

Alright.. seeing as a pvariable is the only way, I'll stick with that.