GetDevelopmentMode: Difference between revisions
Jump to navigation
Jump to search
OpenIDUser32 (talk | contribs) No edit summary |
Fernando187 (talk | contribs) (Remove obsolete Requirements section) |
||
(12 intermediate revisions by 8 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{ | {{Shared function}} | ||
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. | ||
== | ==Example== | ||
<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== | ||
{{ | {{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 [-]
ClientThis command enables / disables the development mode
addCommandHandler("dev",function() local boolean = not getDevelopmentMode() -- true/false setDevelopmentMode(boolean) outputChatBox("DevelopmentMode: "..tostring(boolean)) end)
See Also
- addDebugHook
- base64Decode
- base64Encode
- debugSleep
- decodeString
- encodeString
- fromJSON
- generateKeyPair
- getColorFromString
- getDevelopmentMode
- getDistanceBetweenPoints2D
- getDistanceBetweenPoints3D
- getEasingValue
- getNetworkStats
- getNetworkUsageData
- getPerformanceStats
- getRealTime
- getTickCount
- getTimerDetails
- getTimers
- getFPSLimit
- getUserdataType
- getVersion
- gettok
- isTransferBoxVisible
- setTransferBoxVisible
- hash
- inspect
- interpolateBetween
- iprint
- isOOPEnabled
- isTimer
- killTimer
- md5
- passwordHash
- passwordVerify
- pregFind
- pregMatch
- pregReplace
- removeDebugHook
- resetTimer
- setDevelopmentMode
- setFPSLimit
- setTimer
- ref
- deref
- sha256
- split
- teaDecode
- teaEncode
- toJSON
- tocolor
- getProcessMemoryStats
- utfChar
- utfCode
- utfLen
- utfSeek
- utfSub