GetExtraBarIndex

From Warcraft Wiki
Jump to navigation Jump to search
Flavors
Links
Info
Added in 5.0.4

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:

if HasExtraActionBar() then
 local page = GetExtraBarIndex()
 local id = 1
 local slot = id + (page - 1) * NUM_ACTIONBAR_BUTTONS
 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