The blue world quest (epic world quest? I’m not sure) markers aren’t showing up on the map in Nazjatar. Having this problem on all of my characters and with and without any addons on. The world quests are there and you can still do them but there isn’t any visible marker for them on the map. I reported this bug last week in a ticket and was able to see the blue wq markers for a day after it but then they just disappeared again.
I’m also having this issue. tried things out without any addons and still unfortunately couldn’t see the blue marker on map. Strang bug
It’s July now and this issue is still. I haven’t been able to find any info on the matter either though I betting with very few people doing Nazjatar content at this time it probably hasn’t been discovered by many people either. Hopefully it will be fixed soon but for now it’s at least a nice bonus when I’m in the middle of my pearl grind and it unexpectedly pops up in my log with pearls as the reward.
It’s really sad how these bugs go without being fixed. Not only that but the summoning of the depths seems to no longer be in the game.
At this moment I am not in Nazjatar, but looking at the map I am seeing one elite blue quest: Champion Vyz’olgo the Mind-Taker. Are you seeing that one?
Nope, for months the blue and elite world quests have not been appearing at all anymore.
Is this on characters they used to show on before? I’m not seeing any on the map today, but I know I have done some in the last month, so they were appearing to me at that time. At that time I recall a Summon from the Depths happening as well.
I’m not sure, I can only tell you on all my other characters the blue, elite world quests and summoning of the depths no longer appear. And the sad thing I’m reporting each almost every time I’m on Nazjatar along with other graphical errors and bugs I found but nothing gets fixed ever.
Yesterday I saw an elite blue quest up. But I haven’t been paying attention for long.
I’m gonna check too and see if I can see the quests. Maybe they got fixed but I doubt it.
That was yesterday. It’s not up today.
I meant I’ll check and see if I’ll see those three appearing on the map in the coming days
I will be looking too. But not seeing any today. It looks like regular blue quests are bugged or have been removed.
I haven’t been to Nazjatar in a little while now but yeah everyone once in a while I’d be able to see one of the blue quests. Very rarely I would see both but they’d always just be gone again the next day.
Ok so the summoning of the depths is still in game and appears on the map. As for the blue and elite quests they don’t appear on the map at all. They are in game though.
While trying to complete Nazjatarget Eliminated, I have and still am encountering this issue. This post is the only thing I can find on the issue. So I will post this here.
Below is a script you can run to see, of all the named enemies you need to kill for the achievement, which ones are up. Because there are so many, I had to split it into two separate commands. Run first half and second half separately.
First half:
/run for k,v in pairs({Szun=55897,Zhiela=55895,Zoko=55894,Shalan=55898,Starseeker=55899,Azanz=55893,Undana=55896,Kassar=55900,Brutalizer=55886}) do print(format("%s: %s",k,C_TaskQuest.IsActive(v) and "\124cFF00FF00Yes\124r" or "\124cFFFF0000No\124r")) end
Second Half:
/run for k,v in pairs({Aldrantiss=55891,Alzana=55887,Eldanar=55892,Kyx=55889,Qalina=55888,Vyz=55890}) do print(format("%s: %s",k,C_TaskQuest.IsActive(v) and "\124cFF00FF00Yes\124r" or "\124cFFFF0000No\124r")) end
Below are scripts that will tell you where they are if they are up:
Szun
/script local x,y = C_TaskQuest.GetQuestLocation(55897, 1355);print(format("Szun: %f, %f", x*100, y*100))
Zhiela
/script local x,y = C_TaskQuest.GetQuestLocation(55895, 1355);print(format("Zhiela: %f, %f", x*100, y*100))
Zoko
/script local x,y = C_TaskQuest.GetQuestLocation(55894, 1355);print(format("Zoko: %f, %f", x*100, y*100))
Shalan
/script local x,y = C_TaskQuest.GetQuestLocation(55898, 1355);print(format("Shalan: %f, %f", x*100, y*100))
Starseeker
/script local x,y = C_TaskQuest.GetQuestLocation(55899, 1355);print(format("Starseeker: %f, %f", x*100, y*100))
Azanz
/script local x,y = C_TaskQuest.GetQuestLocation(55893, 1355);print(format("Azanz: %f, %f", x*100, y*100))
Undana
/script local x,y = C_TaskQuest.GetQuestLocation(55896, 1355);print(format("Undana: %f, %f", x*100, y*100))
Kassar
/script local x,y = C_TaskQuest.GetQuestLocation(55900, 1355);print(format("Kassar: %f, %f", x*100, y*100))
Brutalizer
/script local x,y = C_TaskQuest.GetQuestLocation(55886, 1355);print(format("Brutalizer: %f, %f", x*100, y*100))
Aldrantiss
/script local x,y = C_TaskQuest.GetQuestLocation(55891, 1355);print(format("Aldrantiss: %f, %f", x*100, y*100))
Alzana
/script local x,y = C_TaskQuest.GetQuestLocation(55887, 1355);print(format("Alzana: %f, %f", x*100, y*100))
Eldanar
/script local x,y = C_TaskQuest.GetQuestLocation(55892, 1355);print(format("Eldanar: %f, %f", x*100, y*100))
Kyx
/script local x,y = C_TaskQuest.GetQuestLocation(55889, 1355);print(format("Kyx: %f, %f", x*100, y*100))
Qalina
/script local x,y = C_TaskQuest.GetQuestLocation(55888, 1355);print(format("Qalina: %f, %f", x*100, y*100))
Vyz
/script local x,y = C_TaskQuest.GetQuestLocation(55890, 1355);print(format("Vyz: %f, %f", x*100, y*100))
Someone could easily make an addon or weakaura with this. I almost started to, but I’m almost done with the achievement. I also didn’t want to invest the time more than this on a bug blizzard should fix.
PS: Completing the world quest will mark it as inactive until it recycles.
You are a boon. Thank you so very much!