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))
mNo edit summary
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==

Revision as of 14:25, 30 April 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)

Requirements

This template will be deleted.

See Also