Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Advertisement

Returns the action bar page containing the extra bar/button.

extraPage = GetExtraBarIndex()

Returns[]

extraPage
number - index of the action bar page containing the extra action button.

Example[]

The following snippet prints out the name of your current extra button ability:

local extraPage = GetExtraBarIndex()
if HasExtraActionBar() then
 local slot = extraPage*12 + 11
 local action, id = GetActionInfo(slot)
 if action == "spell" then
  print("Your extra ability is: " .. GetSpellInfo(id))
 else
  print("The thing on your extra action button is not a spell. How odd.")
 end
else
 print("You don't have an extra bar at the moment.")
end

Patch changes[]

Cataclysm Patch 4.3.0 (2011-11-29): Added.

See also[]

Advertisement