Scripting/Squirrel/Functions/Player.WantedLevel: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
No edit summary |
(→Syntax) |
||
Line 3: | Line 3: | ||
== Syntax == | == Syntax == | ||
< | <pre>[squirrel] | ||
integer player.WantedLevel; | |||
</pre> | |||
*'''player''': the player who you want to get the wanted level from | *'''player''': the player who you want to get the wanted level from | ||
Line 10: | Line 12: | ||
Returns a integer value | Returns a integer value | ||
== Example == | == Example == |
Revision as of 14:59, 25 January 2016
This function will get the wanted level of the player
Syntax
[squirrel] integer player.WantedLevel;
- player: the player who you want to get the wanted level from
Returns
Returns 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
}
}