GetPlayerScriptDebugLevel

From Multi Theft Auto: Wiki
Revision as of 02:47, 9 January 2020 by Deihim007 (talk | contribs) (Created page with "__NOTOC__ {{Server client function}} <!-- Describe in plain english what this function does. Don't go into details, just give an overview --> This will allow you to retrieve...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

Syntax

string 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

This will show your debug script level on your screen.

addEventHandler('onClientRender', root, function()
    dxDraw("Debug Script Level: "..getPlayerScriptDebugLevel(localPlayer), 10, 10)
end)

See Also