GetDevelopmentMode: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Remove obsolete Requirements section)
 
(11 intermediate revisions by 7 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Shared function}}
{{New feature/item|3.0120|1.2|3355|
 
Available client side in 1.2 and onwards
This function is used to get the development mode of the client or whole server. For more information see [[setDevelopmentMode]]
}}
This function is used to get the development mode of the client. For more information see [[setDevelopmentMode]]


==Syntax==
==Syntax==
Line 14: Line 12:
Returns ''true'' if the development mode is on, ''false'' if off.
Returns ''true'' if the development mode is on, ''false'' if off.


==Requirements==
==Example==
{{Requirements|n/a|1.1.1-9.03355|}}
<section name="Client" class="client" show="true">
This command enables / disables the development mode
<syntaxhighlight lang="lua">
addCommandHandler("dev",function()
local boolean = not getDevelopmentMode() -- true/false
setDevelopmentMode(boolean)
outputChatBox("DevelopmentMode: "..tostring(boolean))
end)
</syntaxhighlight>
</section>


==See Also==
==See Also==
{{Client_utility_functions}}
{{Shared_utility_functions}}
 
[[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