WoW:API GetGameTime: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Fixed typo in example code)
mNo edit summary
Line 28: Line 28:
----
----
{{Template:WoW API}}
{{Template:WoW API}}
[[Category:API Functions|GetGameTime]]
[[Category:API Core Functions|GetGameTime]]

Revision as of 14:33, 27 August 2005

GetGameTime -Documentation by Zlixar-

Returns the current server time in hours and minutes

hours,minutes = GetGameTime();

Arguments
none

Returns
hours
Number - The current hour.
minutes
Number - The minutes passed in the current hour.

Example
local hour,minute = GetGameTime();
Result
hour = 16
minute = 30

Details
This is the server's current time, NOT the current time of the user's system.

Template:WoW API