feat: implement equipment set save, update, and delete

Add saveEquipmentSet() and deleteEquipmentSet() methods that send
CMSG_EQUIPMENT_SET_SAVE and CMSG_DELETEEQUIPMENT_SET packets. The save
packet captures all 19 equipment slot GUIDs via packed GUID encoding.
The Outfits tab now always shows (not just when sets exist), with an
input field to create new sets and Update/Delete buttons per set.
This commit is contained in:
Kelsi 2026-03-20 04:43:46 -07:00
parent f88d90ee88
commit ae56f2eb80
3 changed files with 82 additions and 14 deletions

View file

@ -1535,6 +1535,9 @@ public:
};
const std::vector<EquipmentSetInfo>& getEquipmentSets() const { return equipmentSetInfo_; }
void useEquipmentSet(uint32_t setId);
void saveEquipmentSet(const std::string& name, const std::string& iconName = "INV_Misc_QuestionMark",
uint64_t existingGuid = 0, uint32_t setIndex = 0xFFFFFFFF);
void deleteEquipmentSet(uint64_t setGuid);
// NPC Gossip
void interactWithNpc(uint64_t guid);