Scripting/Squirrel/Functions/Player.WantedLevel
This wiki is using an old backup from 2020
Some information may be old/missing
This function will get the wanted level of the player
Syntax
integer player.WantedLevel;
- player: the player who you want to get the wanted level from
Returns return a integer value
Example
function onPlayerCommand( player, cmd )
{
if ( cmd=="mywanted" )
{
MessagePlayer( "Your wanted level is " + player.WantedLevel , player ); //output player's wanted level to the chat box
}
}