Questie

Questie

116M Downloads

Glow Behind Map Icons - Objectives (Magnifying Glass icon)

theoriginalmre opened this issue ยท 5 comments

commented

The Map option to "Always Glow Behind Map Icons " doesn't seem to apply to the Objective Icons (Magnifying Glass).

Please can you add this?

commented

Are you sure? It seems to be applying a glow for me.

image
(scale increased to make it obvious)

commented

Here's an example of 2 separate quests in the Scholazar Basin zone.
The quest which I've put in a blue arrow shows 1 icon that glows.
The other quest, which I've shown with 3 red arrows, do NOT glow.

Untitled

commented

Which quests correspond with which icons? (specifically - which quest objectives are lacking glow)

commented

The quest with the red arrows (lacking glow) is a Daily quest in Sholazar Basin called "A Cleansing Song"
https://www.wowhead.com/wotlk/quest=12735/a-cleansing-song

The fishing daily "Blood is Thicker" is also lacking glow.
https://www.wowhead.com/wotlk/quest=13833/blood-is-thicker
image

There are other daily quests that also have the same problem but I don't have them with me atm.

commented

@BreakBB @Logonz There are three ways icons can be created: objective, triggerEnd, and extraObjective. It seems that this specifically happens with extraObjectives where, rather than a DB reference, exact coordinates are given using the spawnlist parameter.

12735 A Cleansing Song:

[12735] = {
    [questKeys.extraObjectives] = {
        {{[zoneIDs.SHOLAZAR_BASIN]={{43,42}}}, ICON_TYPE_EVENT, l10n("Use Chime of Cleansing to summon Spirit of Atha"),0},
        {{[zoneIDs.SHOLAZAR_BASIN]={{49,63}}}, ICON_TYPE_EVENT, l10n("Use Chime of Cleansing to summon Spirit of Ha-Khalan"),1},
        {{[zoneIDs.SHOLAZAR_BASIN]={{46,74}}}, ICON_TYPE_EVENT, l10n("Use Chime of Cleansing to summon Spirit of Koosu"),2},
    },
    [questKeys.requiredMinRep] = {1105,9000},
},

13833 Blood Is Thicker:

[13833] = {
    [questKeys.extraObjectives] = {{{[zoneIDs.BOREAN_TUNDRA]={{57.5,33.2},{62.2,64.2},{45,45}}}, ICON_TYPE_SLAY, l10n("Slay any beast, jump in any water location and fish in the Pool of Blood"), 0}},
},

I don't know enough about how Questie operates to fix this one, but hopefully that points one of you in the right direction.