WoW:API GetTime
Jump to navigation
Jump to search
When called, returns the elapsed time in seconds from the "epoch" given by GetDate().
elapsedSeconds = GetTime();
- Arguments
- None
- Returns
- elapsedSeconds
- Floating Point Number - The elapsed time in seconds from the "epoch" (or "zero-hour") which is determined by GetDate().
- Example
seconds = GetTime();
print("Current system uptime is: "..seconds.." seconds!");
- Result
Current system uptime is: 60123 seconds!
- Details
- This is relatively unconfirmed, though experimentation on my part has failed to find any fault in this correlation. It may, however, be possible that this tracks something such as current session uptime (as opposed to total system uptime). Any confirmation or corrections appreciated ^.^
- Added by RoQ:
- It's plausible to use GetTime() as a timestamp, in those cases where you want to verify that one thing has happened before or after another. The only exception to this is when the value of GetDate() changes, then (obviously) the value of GetTime() has no relationship to the value before GetDate() changed.