WoW:API GetBuildVersion: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
(use removedapi template)
Line 1: Line 1:
{{removedapi|1.3.0|It was replaced by [[API GetBuildInfo|GetBuildInfo]].}}
<center>'''GetBuildVersion''' -''Documentation by [[user:zlixar|Zlixar]]''-</center>
<center>'''GetBuildVersion''' -''Documentation by [[user:zlixar|Zlixar]]''-</center>


Line 26: Line 28:
;''Details''
;''Details''
:This only returns the version number, not the build number or any other information.
:This only returns the version number, not the build number or any other information.
;REMOVED IN 1300


----
----
{{WoW API}}
{{WoW API}}

Revision as of 20:59, 23 May 2006

GetBuildVersion -Documentation by Zlixar-

Returns the current game version as a string.

version = GetBuildVersion();

Arguements
None

Returns
version
The current version string

Example
version = GetBuildVersion();
DEFAULT_CHAT_FRAME:AddMessage("Current game version is " .. version .. "!", .5, 0, 0);
Returns
Current game version is 1.2.1!

Details
This only returns the version number, not the build number or any other information.
REMOVED IN 1300

Template:WoW API