GetPlayerScriptDebugLevel

From Multi Theft Auto: Wiki
Revision as of 10:36, 20 May 2020 by Qaisjp (talk | contribs) (ver)
Jump to navigation Jump to search

This will allow you to retrieve the player current debug script level.

Syntax

int getPlayerScriptDebugLevel( player thePlayer )

OOP Syntax Help! I don't understand this!

Method: player:getScriptDebugLevel(...)
Variable: .scriptDebugLevel


Required Arguments

  • thePlayer: The person whose debug script level you want

Returns

Returns an int with the player debug script level, false if the player is invalid.

Example

Displays a message in the chat what is the player's debug level.

function showdebug (player)
    local level = getPlayerScriptDebugLevel( player )
    outputChatBox( "Your Script Debug Level: " .. level )
end
addCommandHandler ( "showdebug", showdebug )

See Also