Forum Replies Created
-
AuthorPosts
-
You are welcome.
To explain a bit more in depth:
Adventure Mode – This is sorta automatic. The main would need to reach level 70 and then finish the campaign in Valdrakken. Then on the alts, all you need to do is complete the quest Excuse the Mess (If my memory serves me right) in the Dragonscale Expedition Campaign even though it’s possible to skip this intro quest chain to get to the Dragon Isles by either Boat/Zeppelin/Portal in Org/SW, however, the quests in each zone will not be available (at all) including the interaction with the Scouting Map. The Scouting Map will give you the intro quest (breadcrumb) to get to any chosen zone.
The map should look like this (Wow_tnpc603dGk.png) after completing a few quests.
Yes in that image you can see explore achievements and treasure chests, these are getting added as quickly as possible, we need to catch up.As I have stated before, it would be best to hang on the main character as long as possible including pushing up to level 20 Renown with all renown reps, in the update 9.0178 you can achieve this with the Dailies & Weekly guides and also the Renown Rep guides.
Dragonriding – Once you did this on your main, all of your alts will be able to have this unlocked. Also if your main collected all 48 of the Dragon Glyphs, all your alts will be able to enable the traits on the Dragonriding talent tree.
This is done by clicking the Dragon Isles Summary icon on the minimap and then clicking the View for DragonRiding (Skill & Unlocks) You don’t need to visit the DragonRiding Skill Trainer like you had to on your main. (See Wow_0NP3ZXwPyg.png image)Renown – Once your main gets to Renown Level 10 with all of the renown reps, your alts would get this buff Word of a Worthy Ally I where your alt would get 100% additional rep with each of the Renown Factions while their renown is below rank 10.
Once your main gets to Renown Level 20 (Renown) with all renown reps, your alts would get this buff Word of a Worthy Ally II where your alts would get 100% additional rep with each of the Renown Factions while their renown is below rank 20 and 200% if below rank 10.
So basically you’d be better off to get to Renown Level 20 because you get 200% additional renown rep up to level 10 and then 100% additional renown rep up to level 20. This one would be harder because of the longer grind, doing Quests, World Quests, Dungeon Quests daily this shouldn’t take too long. A lot of effort but it’s worth it if you want to push those alts through.
Remember, soon Blizzard will start looking at tinkering with the heirlooms so they can be optimized for Dragonflight. Which would mean, if your alts has some Heirlooms on, the gear during Dragonflight questing will defiantly replace those heirlooms in no time.
Here are a few youtube videos that would explain some of the above
https://www.youtube.com/watch?v=FNHUUjbxh0M
https://www.youtube.com/watch?v=O8vP36ambNIInstall the guides from the Members area, and yes, they are 9.0177 or keep using the battle.net launcher until the members area reflects 9.0178
Do you use World Quests Lists addon by any chance? I found that this can cause the addon to not show up completely.
I found an issue even with this edit, where the objective frames borders are not showing, disable WorldQuestsList and it’s fine. I’ll play around with this and report back if I find a fix for this.
winge said:the others you write, I am naturally certain I have done the right thing.Can you please explain a bit more? I am now totally confused.I don’t know how or why you found anything I’ve said offensive. I have looked over my statements several times accusing me of insulting you is not normal.
I am sorry if you took my prior statements insulting in anyway, it was not my intention.Ozzi said:Can you please provide an example of the ant trails? I can’t replicate this.Once 9.0178 is available, can you please try installing and trying it out, if ant trails aren’t working properly still, then can you please run Dugi Installer and click settings button, then click repair. Once you did that, click Okay then Reinstall.If the ant trails aren’t working still, then can you please take some screenshots or video footage of the ant trails not working. So that this can be investigated further.For starters, you’ve spelled your name wrong.
The alleged arrow issue is an easy fix, /dugi config, click the gear cog and then untick Icon Arrow. It’s not too hard or complicated to fix, a very petty issue.
No frames, do you mean the frames around the Objectives Frame? if so, then ensure that frames are checked. Frames > Objective Tracker Frame Border.
If this is still an issue then try /dugi fix.Can you please provide an example of the ant trails? I can’t replicate this.
Flight on a first character in DragonFlight is DragonRiding quest. If you stick with The Waking Shores guide, you will eventually start and complete that quest along with intro quests to teach customization and unlocking traits for DragonRiding. There’s also quests to teach you how to Race.
The Scouting Map will only show available zones (The Waking Shores, Ohn’ahran Plains, The Azure Span, Thaldraszus) The quest will be retrospective to the zone you choose, and it has absolutely nothing to do with dragonriding.
These are for unlocking other dragon mounts, there’s one for each zone, but this does not unlock flight.
-
Complete Ohn’ahran Plains: Winds of the Isles ability.
-
Complete Azure Span: Whirling Surge ability.
- Complete Thaldraszus: Bronze Timelock ability.
The quests are (optional) because not everyone is a fan with the racing side. See I knew it, can’t please everyone. Damned if you do, Damned if you don’t.
Adventure Mode has nothing to do with first character leveling, this is sorta like threads of fate leveling system where a character on the account must reach max level ( in this case 70 ) then alts on that account will have now two leveling options.
There’s also Renown, If you keep leveling your renown in each zone past level 10, alts get a higher rep exp boost while they complete quests and other rep earning activities and will level renown faster than the initial main character.
Okay no problems
In file WorldQuestsList.lua
Line: 8734
Find:local function IsQuestValidForEye(questID)
return QuestUtils_IsQuestWorldQuest(questID) or (WQLdb.WorldQuestBfAAssaultQuests[questID or 0] and not IsQuestComplete(questID or 0))
endReplace with:
local function IsQuestValidForEye(questID)
if not tonumber(questID) then return false end
return QuestUtils_IsQuestWorldQuest(questID) or (WQLdb.WorldQuestBfAAssaultQuests[questID or 0] and not IsQuestComplete(questID or 0))
endYou could easily make a script “PY” or “PS1″ to insert ” if not tonumber(questID then return false end ” in that file on line 8735 whenever the developer of WorldQuestsList does an update. Though Dugi has messaged the developer, two updates later this implementation of this edit was not added.
An example of this is using PowerShell:
(Get-Content "G:World of Warcraft_retail_InterfaceAddOnsWorldQuestsListWorldQuestsList.lua").replace('local function IsQuestValidForEye(questID)', 'local function IsQuestValidForEye(questID)
if not tonumber(questID) then return false end') | Set-Content "G:World of Warcraft_retail_InterfaceAddOnsWorldQuestsListWorldQuestsList.lua"
- Simply change the paths to reflect your own path, mine is “G:World of Warcraft_retail_InterfaceAddOnsWorldQuestsList”.
- Save the above script as WQL_Fix.ps1
- Within PowerShell (as Administrator) and browse to the WQL_Fix.ps1 location and then type .WQL_Fix.ps1 and hit enter.
@karpana Just be very careful with this, and don’t run the script more than once.
Also, find attached a .zip containing the above script.Oh cool, that’s good, however, there can be a small fix for that.
Just replace your WorldQuestsList.lua with this one, however, be warned, it’s not a total fix, some wowhead /way scripts may cause lua errors.Can you please try with just dugi enabled?
It doesn’t really matter, once you have downloaded and run 1.5.2 it automatically updates to 1.5.3
Looks like you have the same path set for both Classic and Classic Wrath.
Paths should be:- Retail = Your_PathWorld of Warcraft_retail_
- Wrath or TBC = Your_PathWorld of Warcraft_classic_
- Classic = Your_PathWorld of Warcraft_classic_era_
So the default paths would be like the following:
For 64 Bit- Retail = C:Program Files (x86)World of Warcraft_retail_
- Wrath or TBC = C:Program Files (x86)World of Warcraft_classic_
- Classic = C:Program Files (x86)World of Warcraft_classic_era_
For 32 bit
- Retail = C:Program FilesWorld of Warcraft_retail_
- Wrath or TBC = C:Program FilesWorld of Warcraft_classic_
- Classic = C:Program FilesWorld of Warcraft_classic_era_
You can literally have all three installed and they should update flawlessly with no issues. I have had no issues like this for several years.
See chrome_os8CeE0iXv.png that image will outline the current patches, aligning them up to your original post, it outlines 3.021 as Wrath and 1.60 as Classic.
I hope this helps rectifying this issue that you have described here.This bug is known and it in the to do list to get fixed. I have spoken to Dugi and he might push this through sooner.
In the Dugi installer click on reinstall
-
-
AuthorPosts