WoW API: C_EquipmentSet.UseEquipmentSet

From AddOn Studio
Revision as of 07:17, 11 February 2021 by Bear (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

WoW API < C_EquipmentSet.UseEquipmentSet

Equips items from a specified equipment set.

local setWasEquipped = C_EquipmentSet.UseEquipmentSet(equipmentSetID)

Parameters

Arguments

  • equipmentSetID (number) - equipment set id

Returns

  • setWasEquipped (boolean) - true if the set was equipped, false otherwise. Failure conditions include invalid arguments, and engaging in combat.

Examples

UseEquipmentSet(1)

Equips the equipment set named "Tank".

Details

This function does not produce error messages. FrameXML/EquipmentManager.lua provides EquipmentManager_EquipSet("name"), which will provide the player with an error message if the equip action fails (but does not provide you with a return value).

Notes

  • Moved in patch 7.2.0 (2017-03-28) to C_EquipmentSet.UseEquipmentSet.
  • Added in Patch 3.0.2 (2008-10-14) as UseEquipmentSet.