WoW API: GetEquipmentSetInfo

From AddOn Studio
Revision as of 04:45, 15 August 2023 by Move page script (talk | contribs) (Move page script moved page API GetEquipmentSetInfo to API GetEquipmentSetInfo without leaving a redirect)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

WoW API < GetEquipmentSetInfo

Returns information about a saved equipment set:

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

Arguments[edit]

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

Returns[edit]

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.

Example[edit]

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