GetRealTime: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
Line 4: | Line 4: | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua">table | <syntaxhighlight lang="lua">table getRealTime()</syntaxhighlight> | ||
===Returns=== | ===Returns=== | ||
Line 55: | Line 55: | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function showtime () | function showtime () | ||
local time = | local time = getRealTime() | ||
local hours = time.tm_hour | local hours = time.tm_hour | ||
local minutes = time.tm_min | local minutes = time.tm_min |
Revision as of 23:26, 17 December 2007
This function gets the real server time and returns it in a table
Syntax
table getRealTime()
Returns
Returns a table of substrings with different time format, false otherwise.
Member | Meaning | Range |
seconds | seconds after the minute | 0-61* |
minutes | minutes after the hour | 0-59 |
hours | hours since midnight | 0-23 |
monthday | day of the month | 1-31 |
month | months since January | 0-11 |
year | years since 1900 | |
weekday | days since Sunday | 0-6 |
yearday | days since January 1 | 0-365 |
isdst | Daylight Saving Time flag |
- tm_sec is generally 0-59. Extra range to accommodate for leap seconds in certain systems.
Example
This example outputs local time (server or client, where ever it was triggered) as hours and minutes
function showtime () local time = getRealTime() local hours = time.tm_hour local minutes = time.tm_min outputChatBox ( "Local Time: "..hours..":"..minutes ) 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