WoW API: GetAccountExpansionLevel

Revision as of 10:35, 25 June 2010 by WoWWiki>Starlightblunder (bp)

WoW API < GetAccountExpansionLevel

Returns level of expansion enabled for currently playing account.

expansionLevel = GetAccountExpansionLevel()

Returns

expansionLevel
Number - 0 = None, 1 = Burning Crusade, 2 = Wrath of the Lich King

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;

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

MAX_PLAYER_LEVEL_TABLE[GetAccountExpansionLevel()];