GetDevelopmentMode: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (This function is shared (https://github.com/multitheftauto/mtasa-blue/issues/3376))
(Remove obsolete Requirements section)
 
(2 intermediate revisions by one other user not shown)
Line 2: Line 2:
{{Shared function}}
{{Shared function}}


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