GetDevelopmentMode: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Remove obsolete Requirements section)
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server client function}}
{{Shared function}}
{{Needs Example}}
 
This function is used to get the development mode of the client. For more information see [[setDevelopmentMode]]
This function is used to get the development mode of the client or whole server. For more information see [[setDevelopmentMode]]


==Syntax==
==Syntax==
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