isDebugViewActive | Multi Theft Auto: Wiki Skip to content

isDebugViewActive

Client-side
Server-side
Shared

Pair: setDebugViewActive

Manual Review Required

Please finish this page using the corresponding Old Wiki article. Go to Contribution guidelines for more information.


This function returns whether the ingame debug window is visible or not. This is the debugwindow visible using the "debugscript <level>" command.

OOP Syntax Help! I don't understand this!

  • Method: GuiElement.)(...)
  • Variable: .debugViewActive

Syntax

bool isDebugViewActive ( )

Returns

  • bool: value

Returns true if the debug view is visible, false if not.

Code Examples

shared

This example makes a /debug command to check if the client's debugscript is on or off.

function checkDebug () -- The function header
if ( isDebugViewActive() ) then -- Check if debugscript is active...
outputChatBox ( "You currently have debugscript on." ) -- If it is, output that it is
else -- If it returns anything else (that it's not active)...
outputChatBox ( "You currently have debugscript off." ) -- Output that they haven't got it on.
end
end
addCommandHandler ( "debug", checkDebug ) -- Execute the script when the client types "/debug"

See Also

GUI Functions