1. Where does Equipment Manager save its files?

    Hello,

    I bought a char on trade. The former owner had different sets of gear saved in Equipment manager. I can see from the equipment manager that for the PvE set, I have a couple of pieces missing (chest and cloak). But it doesn't tell me the name of the pieces missing.

    I have tried to find out of where Equipment Manager saves its files and the different equipment so I can see what the pieces were, but I can't really find it.

    Anyone knows where to find this information?

    Thanks in advance for your input.

    Scorpyo

  2. Try the following macro and see if it works

    Code:
    /script local itemArray = GetEquipmentSetItemIDs("myset"); for i=1, 19 do local name = GetItemInfo(itemArray[i]); if itemArray[i] and name then print(i, (name));  end end
    Change myset for whatever the name of the set is

  3. Try the following macro and see if it works

    Code:
    /script local itemArray = GetEquipmentSetItemIDs("myset"); for i=1, 19 do local name = GetItemInfo(itemArray[i]); if itemArray[i] and name then print(i, (name));  end end
    Change myset for whatever the name of the set is
    Oh, no, sorry, it doesn't work, it only shows the pieces of equipment for this profile that I am wearing. It doesn't show the name of the one that I am missing.

    Regards,

    Scorpyo
    Edited: October 29, 2022

  4. Try the following macro and see if it works

    Code:
    /script local itemArray = GetEquipmentSetItemIDs("myset"); for i=1, 19 do local name = GetItemInfo(itemArray[i]); if itemArray[i] and name then print(i, (name));  end end
    Change myset for whatever the name of the set is
    Oh... Correction, no, it doesn't work, it only shows the pieces of this equipment that I am wearing. It doesn't show the pieces of equipment I am missing.

  5. Then I'm sorry. I am not sure if it's possible at all since the list of pieces is stored server-side.

    Some things are stored server-side but then cached locally but that's not the case for everything.

  6. . .
    Edited: January 1, 2024

  7. Then I'm sorry. I am not sure if it's possible at all since the list of pieces is stored server-side.

    Some things are stored server-side but then cached locally but that's not the case for everything.
    Ouch. That's a pity.

    Thank you very much for your help, though.

    Regards,

    Scorpyo

  8. Equipment manager stores server-side with itemids (the loot/unique id of the used item, not general id like these in wowhead, to avoid conflicts with non-unique gear on different equipment sets e.g. having two same weapons with different enchants/gems on different sets and switching between them) and then the client retrieves information about it. Once the item is deleted/missing from your inventory there is no way to have information about it
    Oh, I see.

    Okay, thank you very much for the information :)

    Regards,

    Scorpyo

  9. Equipment manager stores server-side with itemids (the loot/unique id of the used item, not general id like these in wowhead, to avoid conflicts with non-unique gear on different equipment sets e.g. having two same weapons with different enchants/gems on different sets and switching between them) and then the client retrieves information about it. Once the item is deleted/missing from your inventory there is no way to have information about it
    Are they integer ids or guids like units have? Because if they are guids you may be able to get the original id from them like you can from units... but if they are never transmitted to the client you are SOL

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •