Open Great Vault from anywhere

Hey guys,

Is there a way to open the Great Vault UI from anywhere in the world?

Or would i need to be in Dornogal to open it?

Thank you

You can only open it in the bank in Dornogal

3 Likes

okay, ty

You can go the the ‘Mythic+ Dungeons’ or ‘Delves’ tab (default hotkey - I) to see your progress with delves, dungeons, and raids. However, you can only generate and select loot from the vault in Dornogal.

2 Likes

There is an addon called Great Vault you can download that will add a button to the mini map you can click to view the vault. That is what i use. Still have to go to the vault to loot your rewards for the week.

there is a script you can macro as well to do the same thing the addon does.

#showtooltip
/run C_AddOns.LoadAddOn(“Blizzard_WeeklyRewards”);
/run if WeeklyRewardsFrame:IsShown() then WeeklyRewardsFrame:Hide() else WeeklyRewardsFrame:Show() end

nice, ty

This is way overcomplicating it, you can just check your GV progress from the mythic+ tab in the LFD window. Click on the vault icon to open it up.

1 Like

I just open my map, and click on the Great Vault icon.

1 Like

You can open it to see what is done, is in the adventure guide. But to access it to gain the equipment you need to actually go to the vault.

1 Like

yep, ty

There are also addons that let you see this too, I have one that tells me what content I’ve done and what I need to do in a more concise way than the game’s default UI.

I think it’s Tomcat’s Tours that’s doing that, but I’m not 100% sure on it.

1 Like

Need to be in Dornogal to claim what’s already in it from last week.

You can look at your vault-slot progress this week from anyplace in the game world by typing “i” and then clicking the Delves tab, clicking on the Great Vault icon to the right of Brann.


There’s likely an update to this macro if you wanted to bind that set of clicks to a single button on an action bar somewhere, but I haven’t found an update that works since DF.

#Great Vault
/run LoadAddOn(“Blizzard_WeeklyRewards”); WeeklyRewardsFrame:Show()

Edit: Found a working update to check progress from anywhere in one click!

/run C_AddOns.LoadAddOn(“Blizzard_WeeklyRewards”); WeeklyRewardsFrame:Show()

1 Like

I was fully expecting to come into this thread and read about a new bruto mount pitch with a great vault npc on it…

1 Like

ty!

Only in Dornogal. The other vaults are locked.

1 Like

Ive used this macro since the great vault was introduced in SL, but I havnt been able to get it to work since TWW launched. Ive tried at least a dozen different variations Ive found online and none of them seem to work. Idk what Im doing wrong

Prior to TWW the command was
/run LoadAddOn(“Blizzard_WeeklyRewars”)

After TWW the cammand is
/run C_AddOns.LoadAddon(“Blizzard_WeeklyRewars”)

LoadAddOn was moved to a class container and is preceded by “C_Addons.”, so the old line no longer works.

1 Like

I updated it to the new macro and it worked for the first week or so of TWW, but stopped working soon after. I’ve pretty much given up on the macro for now. I downloaded the addon and puts a button on the minimap and that’ll be good enough

1 Like

good