SetPlayerWantedLevel

From SA-MP Wiki

Jump to: navigation, search


Description:

Set a player's wanted level (6 brown stars under HUD).


Parameters:
(playerid, level)
playeridThe ID of the player to set the wanted level of.
levelThe wanted level to set for the player (0-6).


Return Values:

  • 1: The function executed successfully.
  • 0: The function failed to execute. The player specified does not exist.


Example Usage:

if(strcmp(cmdtext, "/turnuptheheat", true) == 0)
{
    SetPlayerWantedLevel(playerid, 6);
    SendClientMessage(playerid, 0xFF0000FF, "Wanted Level: 6");
    return 1;
}

Related Functions

The following functions may be useful, as they are related to this function in one way or another.

Personal tools
Navigation
Toolbox
In other languages