WoW:API GetDate: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
m (Move page script moved page API GetDate to API GetDate without leaving a redirect)
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
I love you
{{wowapi|removed=1.3.0}}
 
Gets the build date of the current version of WoW, as listed on the bottom left of the login screen.
 
local date = GetDate()
 
== Parameters ==
=== Arguments ===
: none
 
=== Returns ===
* date (string) - This date will be the date WoW was released or built, some internal Blizzard date close to release.
 
== Example ==
<pre>
local date = GetDate() -- version 1.2.1
</pre>
 
; Result
"Dec 20 2004"
 
== Notes ==
* Removed in patch 1.3.0

Latest revision as of 04:45, 15 August 2023

WoW API < GetDate

Gets the build date of the current version of WoW, as listed on the bottom left of the login screen.

local date = GetDate()

Parameters

Arguments

none

Returns

  • date (string) - This date will be the date WoW was released or built, some internal Blizzard date close to release.

Example

 local date = GetDate() -- version 1.2.1
Result
"Dec 20 2004"

Notes

  • Removed in patch 1.3.0