kemayo / wow-handynotes-battleforazerothtreasures

World of Warcraft addon to tell you where treasures are in Battle for Azeroth (requires HandyNotes)
5 stars 6 forks source link

Uldum: Friendly Alpaca Progress Tracker #33

Closed gitarrg closed 2 years ago

gitarrg commented 2 years ago

Hi there,

Might be nice to add a progress tracker (similar to eg.: the Korthia Mounts: Darkmoul or Malie) to the Friendly Alpaca in Uldum.

could be done like this:

3a4,12
> -- Friendly Alpaca
> local function GetFriendlyAlpaceStatus()
>     local count = select(4, GetQuestObjectiveInfo(58881, 0, false))
>     if count ~= nil then
>         return format(" (%d/7)", count)
>     end
>     return ""
> end
>
22c31
<     note="Feed it {item:174858:Gersahl Greens} for 7 days; find them by the rivers",
---
>     note="Feed it {item:174858:Gersahl Greens} for 7 days; find them by the rivers" .. GetFriendlyAlpaceStatus(),

Screenshot how this change looks for me in game: image

kemayo commented 2 years ago

I agree it's a good idea -- I'll add it, but in a slightly different way than suggested, after I update the handler with the Shadowlands changes.