GetDate

From Warcraft Wiki
Jump to navigation Jump to search
Links
Info
Added in 1.0.0
Removed in 1.3.0

When called, returns the build date of the current version of WoW (as listed on the bottom left of the login screen).

date = GetDate();

Arguments
none

Returns
date
String - For example for version 1.2.1, it returned "Dec 20 2004". This date will be the date WoW was released or built (some internal Blizzard date close to release).

Example
local date = GetDate();
Result
"Dec 20 2004"

Patch changes