IsTimerPaused: Difference between revisions
Jump to navigation
Jump to search
(Created page with {{Server client function}} __NOTOC__ {{New feature/item|3.0161|1.6.0|22701| This function allows you to check whether a timer is paused. }} ==Syntax== <syntaxhighlight lang="lua"> bool isTimerPa...) |
mNo edit summary |
||
Line 9: | Line 9: | ||
bool isTimerPaused ( timer theTimer ) | bool isTimerPaused ( timer theTimer ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{OOP|| | {{OOP|||paused}} | ||
===Required Arguments=== | ===Required Arguments=== | ||
*'''theTimer:''' The [[timer]] you wish to check. | *'''theTimer:''' The [[timer]] you wish to check. |
Latest revision as of 10:29, 6 September 2024
Syntax
bool isTimerPaused ( timer theTimer )
OOP Syntax Help! I don't understand this!
- Variable: .paused
Required Arguments
- theTimer: The timer you wish to check.
Returns
Returns true if the timer is currently paused, false if not or if no such timer existed.
Example
This example pauses all currently running timers and resumes all currently paused timers from this resource.
-- Get a table of all current timers from this resource local timers = getTimers ( ) -- Loop through the table of timers for timerIndex, timerValue in ipairs( timers ) do -- check if each timer is currently paused local isPaused = isTimerPaused( timerValue ) -- pause or resume each timer based on its current state setTimerPaused ( timerValue, not isPaused ) 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
- bitAnd
- bitNot
- bitOr
- bitXor
- bitTest
- bitLRotate
- bitRRotate
- bitLShift
- bitRShift
- bitArShift
- bitExtract
- bitReplace