Wowpedia

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

READ MORE

Wowpedia
Advertisement

Returns the item IDs of an equipment set.

itemIDs = C_EquipmentSet.GetItemIDs(equipmentSetID)

Arguments[]

equipmentSetID
number - Appears to return valid info for indices [0, 2, 4, ...]

Returns[]

itemIDs
table - a table of numbers indexed by InventorySlotId

Example[]

To print all items that are part of the first set:

local items = C_EquipmentSet.GetItemIDs(0)
for i = 1, 19 do
	if items[i] then
		print(i, (GetItemInfo(items[i])))
	end
end


Advertisement