Open main menu
Home
Random
Log in
Settings
About AddOn Studio
Disclaimers
AddOn Studio
Search
Editing
WoW:API GetEquipmentSetItemIDs
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{wowapi}} Populates a table with item IDs of items in the specified equipment set. itemArray = GetEquipmentSetItemIDs("name"[, returnTable]); ==Arguments== ;"name" : String - equipment set name to retrieve information about. ;returnTable : Table, optional - if specified, the array portion of the table is populated with item IDs. If not provided, a new table is created ==Returns== ;itemArray : Table - the array portion of this table contains item IDs of the items in the set. : 0: Ammo : 1: Head : 2: Neck : 3: Shoulder : 4: Shirt : 5: Chest : 6: Belt : 7: Legs : 8: Feet : 9: Wrist : 10: Gloves : 11: Finger 1 : 12: Finger 2 : 13: Trinket 1 : 14: Trinket 2 : 15: Back : 16: Main hand : 17: Off hand : 18: Ranged : 19: Tabard ==Example== To print all items that are part of the first set: local set = GetEquipmentSetInfo(1); local itemArray = GetEquipmentSetItemIDs(set); for i=1, 19 do if itemArray[i] then print(i, (GetItemInfo(itemArray[i]))); end end NOTE: If the set is a partial set the method 'for i=1, #itemArray do' will not work, as 'i' can possibly be the wrong ids. where #itemArray returns 2, items 1, 2 may be nil and items 15, 17 may be the correct array indicies {{API Trail EquipmentManager}}
Summary:
Please note that all contributions to AddOn Studio are considered to be released under the Creative Commons Attribution-NonCommercial-ShareAlike (see
AddOn Studio Wiki:Copyrights
for details).
Submissions must be written by you, or copied from a public domain or similar free resource (see
AddOn Studio Wiki:Copyrights
for details).
Cancel
Editing help
(opens in new window)
Templates used on this page:
Template:API Trail EquipmentManager
(
edit
)
Template:Api
(
edit
)
Template:Apinav
(
edit
)
Template:Editlink
(
edit
)
Template:Navbar
(
edit
)
Template:Navbox
(
edit
)
Template:Tcl
(
edit
)
Template:Tocright
(
edit
)
Template:Wowapi
(
edit
)