GetDevelopmentMode: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Change from client_utility to shared_utility)
(Remove obsolete Requirements section)
 
Line 23: Line 23:
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>
==Requirements==
{{Requirements|1.5.4-9.11305|1.1.1-9.03355|}}


==See Also==
==See Also==

Latest revision as of 15:35, 7 November 2024

This function is used to get the development mode of the client or whole server. For more information see setDevelopmentMode

Syntax

bool getDevelopmentMode ()

Returns

Returns true if the development mode is on, false if off.

Example

Click to collapse [-]
Client

This command enables / disables the development mode

addCommandHandler("dev",function()
	local boolean = not getDevelopmentMode() -- true/false
	setDevelopmentMode(boolean)
	outputChatBox("DevelopmentMode: "..tostring(boolean))
end)

See Also