WoW:API GetAccountExpansionLevel: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Updated for WotLK, Added example code from FrameXML)
m (Move page script moved page API GetAccountExpansionLevel to API GetAccountExpansionLevel without leaving a redirect)
 
(3 intermediate revisions by 3 users not shown)
Line 3: Line 3:
  expansionLevel = GetAccountExpansionLevel()
  expansionLevel = GetAccountExpansionLevel()


== Parameters ==
== Returns ==
 
* expansionLevel (number) - 0 = [[World of Warcraft|Classic]], 1 = [[World of Warcraft: The Burning Crusade|Burning Crusade]], 2 = [[World of Warcraft: Wrath of the Lich King|Wrath of the Lich King]], 3 = [[World of Warcraft: Cataclysm|Cataclysm]]
=== Returns ===
:; expansionLevel : Number - 0 = None, 1 = [[World of Warcraft: The Burning Crusade|Burning Crusade]], 2 = [[World of Warcraft: Wrath of the Lich King|Wrath of the Lich King]]


== Examples ==
== Examples ==
Line 14: Line 12:
  MAX_PLAYER_LEVEL_TABLE[1] = 70;
  MAX_PLAYER_LEVEL_TABLE[1] = 70;
  MAX_PLAYER_LEVEL_TABLE[2] = 80;
  MAX_PLAYER_LEVEL_TABLE[2] = 80;
MAX_PLAYER_LEVEL_TABLE[3] = 85;


Calling this gives the maximum level the player can reach depending on expansion installed.
Calling this gives the maximum level the player can reach depending on expansion installed.
  MAX_PLAYER_LEVEL_TABLE[GetAccountExpansionLevel()];
  MAX_PLAYER_LEVEL_TABLE[GetAccountExpansionLevel()];
== Notes ==
* API system: Expansion
* API namespace: ''none''

Latest revision as of 04:45, 15 August 2023

WoW API < GetAccountExpansionLevel

Returns level of expansion enabled for currently playing account.

expansionLevel = GetAccountExpansionLevel()

Returns

Examples

Appears in "FrameXML/ReputationFrame.lua" line 15.

MAX_PLAYER_LEVEL_TABLE = {};
MAX_PLAYER_LEVEL_TABLE[0] = 60;
MAX_PLAYER_LEVEL_TABLE[1] = 70;
MAX_PLAYER_LEVEL_TABLE[2] = 80;
MAX_PLAYER_LEVEL_TABLE[3] = 85;

Calling this gives the maximum level the player can reach depending on expansion installed.

MAX_PLAYER_LEVEL_TABLE[GetAccountExpansionLevel()];

Notes

  • API system: Expansion
  • API namespace: none