GetDevelopmentMode: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
(Remove obsolete Requirements section)
 
(One intermediate revision by one other user not shown)
Line 23: Line 23:
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>
==Requirements==
{{Requirements|1.5.4-9.11305|1.1.1-9.03355|}}


==See Also==
==See Also==
{{Client_utility_functions}}
{{Shared_utility_functions}}


[[pl:GetDevelopmentMode]]
[[pl:GetDevelopmentMode]]

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