WoW API: GetEquipmentSetInfo

WoW API < GetEquipmentSetInfo

Returns information about a saved equipment set:

name, icon, lessIndex = GetEquipmentSetInfo(index)
icon, lessIndex = GetEquipmentSetInfoByName("name")

ArgumentsEdit

GetEquipmentSetInfo -- index
Number: an ascending index going from 1 to GetNumEquipmentSets().
GetEquipmentSetInfoByName -- name
String: equipment set name.

ReturnsEdit

The functions returns nothing if the queried index or set name does not exist. If the index/name is valid, the following values are returned:

name
String: Equipment set name.
icon
String: Icon texture file name (relative to Interface/Icons) selected for this set.
lessIndex
Number: A number one less than the set index. This return value is not used by the default UI.

ExampleEdit

local name, icon, lessIndex = GetEquipmentSetInfo(1);
if not name then
 print("You have no equipment sets");
else
 print("First equipment set: \124TInterface\\Icons\\" .. icon .. ":16\124t " .. name);
end