Scripting/Squirrel/Functions/Player.WantedLevel

From Vice City Multiplayer
Revision as of 14:27, 25 January 2016 by Thisdp (talk | contribs) (Created page with "This function will show the FPS(Frames Per Second) of the player == Syntax == <pre>player.WantedLevel();</pre> == Example == <source lang=squirrel> function onPlayerComma...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

This function will show the FPS(Frames Per Second) of the player


Syntax

player.WantedLevel();

Example

function onPlayerCommand( player, cmd)
{
    if ( cmd=="mywanted" )
    {
        MessagePlayer( "Your wanted level is " + player.WantedLevel , player ); 
    }