Download
(98 Kb)
Download
Updated: 06/07/21 09:56 AM
Updated:06/07/21 09:56 AM
Created:07/20/20 07:50 AM
Monthly downloads:555
Total downloads:30,192
Favorites:31
MD5:
Pollox's Daily Quest Tracker - Update  Popular! (More than 5000 hits)
Version: 1.8.15
by: DarkPhalanx, g4m3r7ag
This is an update for Pollox's Daily Quest Tracker.

I added "all" missing dailies and the use of LibMultilangualName that allows the quest names to be translated to the other languages.

Note: I'll update the addon for Blackwood as soon as I can find the quest ID's. If anything is missing or incorrect, please let me know.

Depends on: LibAddonMenu-2.0 and LibMultilingualName
1.8.15. - Fixed multi language issues.

1.8.14. - Fixed Blackwood dalies (thanks Yachoor!)

1.8.13. - Added Blackwood dailies

1.8.12. - Added Craglorn dailies
- Fixed keybinding setting
- Updated APIVersion

1.8.11. - Added The Reach dailies and new Pledges. (Thanks M-Ree for your contribution).

1.8.10. - Updated APIVersion and removed old libstub reference.

1.8.9. - Updated APIVersion and removed old libstub reference.

1.8.8. - Added multi-language support for crafting writs.

1.8.7. - Added Imperial City dailies.

1.8.6. - Added missing translations for the new pledges.

1.8.5. - Added missing pledges.

1.8.4. - Rearranged the newly added quests according to this resource: https://en.uesp.net/wiki/Online:Repeatable_Quests

1.8.3. - Added multi-language support which requires LibMultilingualName.

1.8.2. - Added English translations for RU, DE, ES, JP, FR, so they won't appear blank in the interface (translation will come later).
Archived Files (13)
File Name
Version
Size
Uploader
Date
1.8.14
138kB
DarkPhalanx
06/06/21 10:03 AM
1.8.13
138kB
DarkPhalanx
06/03/21 05:01 AM
1.8.12
97kB
DarkPhalanx
05/27/21 07:54 AM
1.8.11
96kB
DarkPhalanx
12/23/20 08:43 AM
1.8.10
93kB
DarkPhalanx
11/04/20 06:18 AM
1.8.9
93kB
DarkPhalanx
09/09/20 06:48 AM
1.8.8
93kB
DarkPhalanx
08/13/20 03:54 AM
1.8.7
93kB
DarkPhalanx
07/21/20 04:51 PM
1.8.6
92kB
DarkPhalanx
07/21/20 06:00 AM
1.8.4
92kB
DarkPhalanx
07/20/20 03:16 PM
1.8.3
91kB
DarkPhalanx
07/20/20 12:59 PM
1.8.2
89kB
DarkPhalanx
07/20/20 10:17 AM
1.8.1
83kB
07/20/20 07:50 AM


Post A Reply Comment Options
Unread 06/06/21, 08:30 AM  
yachoor
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 70
Uploads: 1
Originally Posted by DarkPhalanx
I added the Blackwood dailies but LibMultilingualName isn't updated yet, so it might not work properly yet.
The variables for wolrdboss quests in blackwood have copy pasted names from delves in *_quests.lua files (SI_DQT_BLACKWOOD_QUESTS_DELVE_01 instead of SI_DQT_BLACKWOOD_QUESTS_WORLDBOSS_01 ...)

There's also new API function GetQuestName (it returns quest name in game language) - maybe you don't need to wait for LibMultilingualName updates.

Locally I just replaced
Code:
-- Blackwood Delve Quests -- Added by DarkPhalanx
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_01 = MN.GetRawQuestName(lang, 6644) -- "A Proper Blessing"
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_02 = MN.GetRawQuestName(lang, 6668) -- "Beauty Amid Danger"
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_03 = MN.GetRawQuestName(lang, 6674) -- "Breaking the Chain"
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_04 = MN.GetRawQuestName(lang, 6673) -- "Conflict of Interest"
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_05 = MN.GetRawQuestName(lang, 6675) -- "Insect Savior"
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_06 = MN.GetRawQuestName(lang, 6665) -- "Shadow Tactics"

-- Blackwood World Boss Quests -- Added by DarkPhalanx
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_01 = MN.GetRawQuestName(lang, 6651) -- "A Reign of Frogs"
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_02 = MN.GetRawQuestName(lang, 6653) -- "Call of the Ruinach"
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_03 = MN.GetRawQuestName(lang, 6649) -- "Goblin Research"
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_04 = MN.GetRawQuestName(lang, 6645) -- "Legend of the Man-Bull"
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_05 = MN.GetRawQuestName(lang, 6650) -- "Rites of the Sul-Xan"
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_06 = MN.GetRawQuestName(lang, 6652) -- "The Trophy-Taker"
with
Code:
-- Blackwood Delve Quests -- Added by DarkPhalanx
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_01 = GetQuestName(6644) -- "A Proper Blessing"
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_02 = GetQuestName(6668) -- "Beauty Amid Danger"
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_03 = GetQuestName(6674) -- "Breaking the Chain"
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_04 = GetQuestName(6673) -- "Conflict of Interest"
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_05 = GetQuestName(6675) -- "Insect Savior"
L.SI_DQT_BLACKWOOD_QUESTS_DELVE_06 = GetQuestName(6665) -- "Shadow Tactics"

-- Blackwood World Boss Quests -- Added by DarkPhalanx
L.SI_DQT_BLACKWOOD_QUESTS_WORLDBOSS_01 = GetQuestName(6651) -- "A Reign of Frogs"
L.SI_DQT_BLACKWOOD_QUESTS_WORLDBOSS_02 = GetQuestName(6653) -- "Call of the Ruinach"
L.SI_DQT_BLACKWOOD_QUESTS_WORLDBOSS_03 = GetQuestName(6649) -- "Goblin Research"
L.SI_DQT_BLACKWOOD_QUESTS_WORLDBOSS_04 = GetQuestName(6645) -- "Legend of the Man-Bull"
L.SI_DQT_BLACKWOOD_QUESTS_WORLDBOSS_05 = GetQuestName(6650) -- "Rites of the Sul-Xan"
L.SI_DQT_BLACKWOOD_QUESTS_WORLDBOSS_06 = GetQuestName(6652) -- "The Trophy-Taker"
to get it working in english
Report comment to moderator  
Reply With Quote
Unread 06/03/21, 05:20 AM  
DarkPhalanx
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 31
Uploads: 2
I added the Blackwood dailies but LibMultilingualName isn't updated yet, so it might not work properly yet.
Report comment to moderator  
Reply With Quote
Unread 05/27/21, 12:24 PM  
Mythril89

Forum posts: 4
File comments: 65
Uploads: 0
Re: Re: craglorn Update

Originally Posted by DarkPhalanx
Originally Posted by Mythril89
can you include craglorn dailies? to many dailies in craglorn and might miss some.. thanks. your add-on really helps
I added those dallies but I haven't tested it so please let me know if they are functioning properly
sorry no craglorn shown.

sorry.. haven't updated the check list in the add-on menu, totally forgot about that. craglorn dailies are shown now.. thanks for the update
Last edited by Mythril89 : 05/28/21 at 04:08 AM.
Report comment to moderator  
Reply With Quote
Unread 05/27/21, 07:57 AM  
DarkPhalanx
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 31
Uploads: 2
Originally Posted by ziplock9000
Is this supposed to just wipe if you log off or crash?
Are you still facing this issue?
Report comment to moderator  
Reply With Quote
Unread 05/27/21, 07:56 AM  
DarkPhalanx
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 31
Uploads: 2
Originally Posted by Dionan
I am not seeing the option for the screen in keybinds for this addon. would love to use for this next event that rewards for daily quests.
I fixed a bug, you should be able to set the keybinding now
Report comment to moderator  
Reply With Quote
Unread 05/27/21, 07:56 AM  
DarkPhalanx
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 31
Uploads: 2
Re: craglorn Update

Originally Posted by Mythril89
can you include craglorn dailies? to many dailies in craglorn and might miss some.. thanks. your add-on really helps
I added those dallies but I haven't tested it so please let me know if they are functioning properly
Report comment to moderator  
Reply With Quote
Unread 04/27/21, 04:47 AM  
Mythril89

Forum posts: 4
File comments: 65
Uploads: 0
craglorn Update

can you include craglorn dailies? to many dailies in craglorn and might miss some.. thanks. your add-on really helps
Report comment to moderator  
Reply With Quote
Unread 04/09/21, 04:17 AM  
ziplock9000

Forum posts: 0
File comments: 19
Uploads: 0
Is this supposed to just wipe if you log off or crash?
Report comment to moderator  
Reply With Quote
Unread 03/30/21, 10:04 AM  
Dionan

Forum posts: 0
File comments: 1
Uploads: 0
I am not seeing the option for the screen in keybinds for this addon. would love to use for this next event that rewards for daily quests.
Report comment to moderator  
Reply With Quote
Unread 03/24/21, 08:51 PM  
Malorm

Forum posts: 0
File comments: 37
Uploads: 0
Not working

Not working
Report comment to moderator  
Reply With Quote
Unread 03/14/21, 09:47 AM  
TheCoryGuy

Forum posts: 0
File comments: 25
Uploads: 0
Thank you for your December 2020 update. Hoping to see this updated again as it's a big help for me as a new player.
Report comment to moderator  
Reply With Quote
Unread 03/09/21, 03:20 PM  
NeuroticPixels
Addon Addict
 
NeuroticPixels's Avatar
Premium Member

Forum posts: 211
File comments: 878
Uploads: 0
Please update.
Report comment to moderator  
Reply With Quote
Unread 01/09/21, 10:35 AM  
soonerrob

Forum posts: 0
File comments: 4
Uploads: 0
The Daily Undaunted Pledge DLC Dungeon seems to always be the wrong one.

https://prnt.sc/wjt8o2


https://prnt.sc/wjt91h



Last edited by soonerrob : 01/09/21 at 10:39 AM.
Report comment to moderator  
Reply With Quote
Unread 12/27/20, 07:24 PM  
M-ree

Forum posts: 2
File comments: 524
Uploads: 0
Originally Posted by DarkPhalanx
Edit: I also looked into the identical quest names for the harrow storms in each zone. The eso Event doesn't contain a quest id when a quest is completed or added to the journal .
... At least, if you have both Skyrim and Reach quests active, doing any HS in any zone completes both
Report comment to moderator  
Reply With Quote
Unread 12/23/20, 08:50 AM  
DarkPhalanx
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 31
Uploads: 2
Originally Posted by M-ree
Also... The Reach:

Western Skyrim Harrowstorms
6512 "Halt the Harrowstorms"
6528 "Halt the Harrowstorms"

Reach Harrowstorms (in a rather asinine twist not only named the same way, but also same way as W. Skyrim ones)
6558 "Halt the Harrowstorms"
6559 "Halt the Harrowstorms"

Reach WB Quests
Dwemer carrier:
6583 "The Scholar's Request"
6584 "Guides to the Deep"
6585 "Discarded Treasures"
Voidmother:
6556 "Namira's Perversions"
6581 "Notes of the Void"
6582 "Ruptures in the Reach"

Reach Delve Quests
Gloomreach:
6571 "Magic Mycology"
6572 "Strange Contamination"
6573 "Unhatched Menace"
Briar Rock:
6557 "Wild Talismans"
6567 "The Tainted Briarheart"
6569 "What's Hers is Ours"

Reach Resistance Quests
6600 "Remnants of the Deep Folk"
6601 "To Burn Away Evil"
6602 "The Light of Arkthzand"
6603 "Alone in the Dark"
6604 "Defenders of the Reach"
6605 "The Language of the Night"
6606 "The Lost Shrine"
Thanks for doing the research I just uploaded an update.

Edit: I also looked into the identical quest names for the harrow storms in each zone. The eso Event doesn't contain a quest id when a quest is completed or added to the journal .
Last edited by DarkPhalanx : 12/25/20 at 07:57 AM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump:

Support AddOn Development!

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.