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
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
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.
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.
I just open my map, and click on the Great Vault icon.
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.
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.
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()
I was fully expecting to come into this thread and read about a new bruto mount pitch with a great vault npc on itâŚ
ty!
Only in Dornogal. The other vaults are locked.
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.
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
good