SA-MP Forums Archive
Wanted Level - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Wanted Level (/showthread.php?tid=262573)



Wanted Level - Anzhelov - 18.06.2011

What's the pawno option for setting wanted level to person.
When you type command and player ID, it will appear wanted level to the player. (SetWantedLevel set my own char's wanted level)


Re: Wanted Level - Kayaque - 18.06.2011

COMMAND:wanted(playerid, input[])
{
if(sscanf(input, "u", id)) return SendClientMessage(playerid, COLOR, "Usage /wanted [playerid]");

SetWantedLevel(id, 1);
return 1;
}