Rarity

Rarity

17M Downloads

Extend the existing detection for Island Expeditions to be usable with custom items

rdw-software opened this issue ยท 0 comments

commented

Source: Curse

I have a quick question regarding tracking of loot from Island expedition, I notice that the addon can track things like risen mare. If I wanted to make a custom drop like a transmog piece, is there anyway I can track it in the same way? I tried looking around but I couldn't find a way to make a custom item track in the same way Drop: Island Expedtions.

Notes: The IE detection currently uses a fixed list of item IDs to add attempts for when the IE ends. In order to add another category, at least the following would have to be done:

  • Add the actual detection method alongside NPC, BOSS etc.
  • Add localisation entries for the method (to be displayed in the options menu)
  • Modify the options menu to display the new entry for the method in the list
  • Modify the GUI logic of said menu to update the necessary fields (which expedition/map to choose from)
  • Actually define the list of expeditions, ideally by reusing the lookup table currently used (in the ISLAND_COMPLETED event handler)
  • Modify said event handler to not only check the predefined list of items, but also any custom item that uses the newly-introduced IE method
  • Possibly other things I forgot/didn't think about