SorhaQuestLog
SorhaQuestLog is a basic Quest/Achievement addon similar to MonkeyQuest and nQuestLog.
It allows the display of quests and achievements on the screen in an configurable way.
Options panel is accessible using /sql or /sorhaquestlog
Quest Controls
Hidden Quests
- Click the square at the top of the tracker to show/hide hidden quests
- Right-click a quest to show or hide it.
Zones
- Left-click a zone to collapse/expand it
- Right-click a zone to open a menu to show/hide quests
- Alt + right-click a zone to open a menu to show/hide zones
Quests
- Left-click a quest to open quest text pane. (Alt-Left if you enable full log option)
- Alt + Left-click a quest to open quest in world map log (Left if you enable full log option)
- Control left-click a quest to set it as the active quest tracking
- Alt + Ctrl left-click a quest to abandon it. (Can disable confirm dialog in options)
Features
Core Features:
- Individual Minions for Quests, Achievements and Scenarios
- Auto Show/Hide options when entering instances, arenas, combat, pet battles, the outside world etc.
- Can hide the default blizzard quest frame
- Handles blizzards remote quests
- Borders and background for minions
- LDB Module
Quest Log Minion Features:
- Expandable/collapsible zone headers
- Auto collapsing/expanding zone headers as you change zones
- Hide Zone headers when all their quests are hidden
- Expand collapse menu available using alt-right-click on a zone
- Hide quests by right-clicking the quest or by selecting it from its zone headers right-click menu
- Hide completed objectives
- Can completely hide quest tracker when tracking no quests
- Hide or re-size item buttons
- Colour objective texts and statuses by completeness(gradual) , state(done/undone) or choose a custom colour
- Colour quest titles and level texts by level, completeness(gradual) , state(done/undone) or choose a custom colour
- Changeable fonts, font shadowing and font sizes for Zones, Quests and Objectives
- Adjustable indentation for quests and objectives
- Option to display only the quest details pane of the quest log when left-clicking a quest. (Alt left click to get the full quest log panel)
- Ctrl left-click a quest to set it as the active quest for blizzards minimap tracker, (Dugi arrow support)
- Alt + Ctrl left-click a quest to abandon it. (Can disable confirm dialog in options)
Achievement Minion Features:
- Customizable text by choosing fonts, sizes, shadowing and colours.
- Customizable textures for progress bars
- Optional progress status bars for the achievements that can have them
- Option to limit the number of tasks displayed per achievement
Notification Features:
- Customizable sounds for quest/objective complete and quest starting item picked up notifications.
- Choose custom sounds for quest completions and objective completions
- Re-direct the objective completion messages elsewhere with LibSink
Recent Changes
New since v1.4.8
- Track world quests
- Link Scenario and achievement minions to quest minion
Other Stuff >.>
Bug reporting and Suggestions
You can report bugs or suggestions using wowaces ticket system at:
http://www.wowace.com/addons/sorhaquestlog/tickets/
Localization
If you want to help localize SorhaQuestLog you can do so using the wowace localization section at:
http://www.wowace.com/addons/sorhaquestlog/localization/
I think this'll be just perfect, thank you!
I had macro'd it before, but it required a UI reload, and that was irritating.
Hello,
I read through a good handful of posts below and I'm not seeing this posted, so maybe it's something on my end, but...
I cannot get the quest tracker to "not" track quests that I have unchecked in my quest log. Am I missing some setting somewhere that stops this or do you think another mod may be interfering?
In the Zones tab of the Quest Tracker settings is "Allow Hidden Quests" ticked?
Going to enable that by default in future versions I think.
I've got a strange problem with the custom sounds for quest progress/completion. There are a number of sounds I've used that have now vanished for one specific character, while they are still available and working for others. For example, I was using "Blizzard: Helle Glocken" (probably "Light Bells" in English) for quest completion. This sound has disappeared from the menu for my hunter, while it is still there for my mage. Half of the sounds are still there and working ok, and the other half have gone. I haven't changed anything. It just happened.
That is rather odd, most of the sounds come from other addons registering the sounds they have, which can then be used in SQL.
But judging by the title of that sound it is a built in blizzard one?
One thing I would try is logging onto the erroring character and one other with just this addon enabled and see what is listed on both. Will eliminate any other mods as being the cause.
So, until I stop being lazy and write my own tracker to get it just the way I want it, I'll be using this one. So with that said, I'll share what I have discovered while hacking at this addon.
I noticed it doesn't want to track the criteria for some achievements properly. After printing out some debug information I found out that this was because GetAchievementCriteriaInfo() for that criteria reported it as completed. Modifying the if statement on line 1041 to "completed = false or quantity < requiredQuantity" appears to fix this.
Edit: I need to learn to scroll down. >.< Anyway, the quantity thing would appear to be a good solution in the meanwhile anyway. ;p
Have put that into the latest revision, hopefully there is no odd achivements it works for that it shouldn't but we will find out :D
Thanks ^_^
I think the Proving Grounds tracker (Built into the Scenario/Challange Modes tracker) should be working, if a little primitive.
Is in r97 (If curseforge ever stops maintenance).
If anyone uses it and notices bugs please tell me :)
r96+ should also display the pet etc achievements that I could find that were erroring.
Though right now the packager is broken so no files getting made >.>
Anyone else, before I use up ticket bandwidth?
Bars have stopped working in the Achievement Minion. I'm 330 of 400 battle pets, and before the 5.4 patch, this displayed fine. Now, there's no bar for any "quantity" style achievement. I can't get a text version to display, either. I've disabled all other addons -- no change.
Thankfully, everything else seems to be working well in 5.4. Quest tracking is fine. Remote quests are fine. Scenario tracking is fine. I gave Proving Grounds a try today, and didn't get a timer display, but I don't know if that's how it normally works. :)
Thanks, Sorha2!
Hmm have not been able to duplicate the bar bug so far >.<
Did even gold looted fail to work?
As to the proving ground issue, am trying to get that going.. but no luck as of yet :(
Actually, "Got My Mind On My Money" does work perfectly. The bar displays, as well as the coins and amounts overlayed. But "That's a Lot of Pet Food" does not display anything. There is spacing underneath the achivement title, just blank now.
If I can reset just that tracker from the UI, or by editing a section of the settings file, I'm down to try. I'd rather not wipe all settings if I don't have to. It took me a while to get things just right. :)
Ok from what I can tell the blizzard API for some reason tells me the criteria for those achivements are complete and so SQL is not rendering it.
Will have a revision up soon that has a patch for mount/pet based ones.
In the mean time it is modules/Achivements.lua
Function AchievementsTracker:GetAchievementText() on line:1041
if (completed == false) then
to
if (completed == false or atype == 75 or atype == 81 or atype == 156 or atype == 157 or atype == 158 or atype == 160) then
On a related note I just found out there are achivements with 2 quanity based things which would need 2 bars.. totally not set up for that >.>
Edit:
Ok found a few more id's, I don't think blizzards tracker displays them correctly either sadly.
Replacing line 1041 works, thanks! Hooray, special cases. :)
Hey Sorha,
I hope you are well.
I have just completed the german translation of the missing terms. Do you plan any release soon so the translation will be live? By the way: There is just one thing this great addon is missing: A minion for challenge modes
Kind regards
I am well, busy but well thanks :)
Sadly not had a chance to test this version for any bugs etc, but it should have the new translations live.
I started on challange modes but sadly ran out of time and people willing to be test dummys for me to finish it off >.<
I've been unable to get it to work with Mik Scrolling Combat Text. It will not enable the Miksbt option at all.
And i'm hoping that you'll add another MonkeyQuest feature, of highlighting the quests when in the appropriate subzone/area.
Seems to be an issue in LibSink when MSBT changed :(
Will look to see if there is anything I can do about it, for now if you add the line:
isMSBTFive = true
To the top of Core.lua it should fix the error in LibSink.
Um.. how do I get monkeyquest to show that highlighting.. kinda couldn't figure it out to see it >.<
An interesting thing I've noticed since 5.3 hit is on occasion the "Work Complete" and other quest sounds randomly do not work. Theres no error presented on screen. Just a minor curiosity I thought I'd mention.
I also read about sound related problems with another addon regarding patch 5.3 guess they changed something related to them..
Yeah sadly that one is in blizzards hands :(
Addon sounds were set a lower prioity and so if there is other sounds going on they were simply not played at times.