SetPlayerScriptDebugLevel: Difference between revisions
Jump to navigation
Jump to search
m (ver) |
|||
Line 24: | Line 24: | ||
This code will set joining players debug level to (3), (It is no recommended to use it in production, specially if you have sensitive data in your logs). | This code will set joining players debug level to (3), (It is no recommended to use it in production, specially if you have sensitive data in your logs). | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function setPlayerDebug (player) | |||
setPlayerScriptDebugLevel( | setPlayerScriptDebugLevel(player, 3) | ||
end) | outputChatBox("You set debug script level to 3", player) | ||
end | |||
addCommandHandler("setdebug", setPlayerDebug) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
</section> | </section> |
Revision as of 19:12, 9 June 2020
This will set player's debug level, equivalent to debugscript <level>.
Syntax
bool setPlayerScriptDebugLevel ( player thePlayer, int level )
OOP Syntax Help! I don't understand this!
- Method: player:setScriptDebugLevel(...)
- Variable: .scriptDebugLevel
Required Arguments
- thePlayer: The player whose debug level you wish to change
- level: 0: close debug console, 1: only errors, 2: errors and warnings, 3: errors, warnings and info messages
Returns
Returns true if successful, false otherwise.
Example
Click to collapse [-]
ServerThis code will set joining players debug level to (3), (It is no recommended to use it in production, specially if you have sensitive data in your logs).
function setPlayerDebug (player) setPlayerScriptDebugLevel(player, 3) outputChatBox("You set debug script level to 3", player) end addCommandHandler("setdebug", setPlayerDebug)
See Also
- getPlayerTeam
- getPlayerBlurLevel
- setPlayerBlurLevel
- getPlayerSerial
- forcePlayerMap
- getPlayerScriptDebugLevel
- getPlayerFromName
- getPlayerMoney
- getPlayerName
- getPlayerNametagColor
- getPlayerNametagText
- getPlayerPing
- getPlayerWantedLevel
- givePlayerMoney
- isPlayerMapForced
- isPlayerNametagShowing
- setPlayerHudComponentVisible
- setPlayerMoney
- setPlayerNametagColor
- setPlayerNametagShowing
- setPlayerNametagText
- takePlayerMoney
- countPlayersInTeam
- getPlayersInTeam
- isVoiceEnabled
- setControlState
- getControlState