Download
(635 b)
Download
Updated: 05/24/14 01:40 PM
Compatibility:
Live (1.0)
Updated:05/24/14 01:40 PM
Created:05/03/14 08:40 AM
Monthly downloads:16
Total downloads:3,329
Favorites:7
MD5:
Categories:Discontinued & Outdated, Character Advancement, Info, Plug-in Bars
HoWUI
Version: 0.0.8
by: Kentarii [More]
This addon has been split into the following addons and will no longer be maintained:

* House of Winters - Clock
* House of Winters - Research and Mount Timers
* House of Winters - Quest Journal

Also check my other addons:
* House of Winters - Texture Viewer

Please delete the "HoWUI" directory from your AddOns directory when moving on to the other addons which have been updated to work with Craiglorn.
Post A Reply Comment Options
Unread 05/03/14, 03:43 PM  
Kentarii
AddOn Author - Click to view AddOns

Forum posts: 42
File comments: 52
Uploads: 5
Feedback and suggestions are most welcome!

This addon is a work-in-progress and I will continue to add more settings to make stuff more customizable based on the needs of the people using it.

I will update the description page with known issues and plans ahead soon (tm).
Report comment to moderator  
Reply With Quote
Unread 05/05/14, 07:53 PM  
Mitsarugi
 
Mitsarugi's Avatar
AddOn Author - Click to view AddOns

Forum posts: 23
File comments: 225
Uploads: 12
I hate you >.< i was almost done with writing my completed quest log addon
Last edited by Mitsarugi : 05/05/14 at 07:56 PM.
Report comment to moderator  
Reply With Quote
Unread 05/05/14, 08:34 PM  
Kentarii
AddOn Author - Click to view AddOns

Forum posts: 42
File comments: 52
Uploads: 5
Originally Posted by Mitsarugi
I hate you >.< i was almost done with writing my completed quest log addon
Hahaha, great minds think alike

I blame Shadowfen zone in Ebonheart Pact for me writing my Quest Journal, still at 59/62...
Spent less time writing my Quest Journal than riding around that zone looking for quests... if only I could go back in time and redo that zone.
Will be useful for my next character I level though.
Report comment to moderator  
Reply With Quote
Unread 05/06/14, 03:13 AM  
Mitsarugi
 
Mitsarugi's Avatar
AddOn Author - Click to view AddOns

Forum posts: 23
File comments: 225
Uploads: 12
Originally Posted by Kentarii
Originally Posted by Mitsarugi
I hate you >.< i was almost done with writing my completed quest log addon
Hahaha, great minds think alike

I blame Shadowfen zone in Ebonheart Pact for me writing my Quest Journal, still at 59/62...
Spent less time writing my Quest Journal than riding around that zone looking for quests... if only I could go back in time and redo that zone.
Will be useful for my next character I level though.
"I blame Shadowfen zone in Ebonheart Pact for me writing my Quest Journal, still at 59/62..." exact same reason i started writing it and i'm at 59/62 too XD
Yep i started a new char just for that too, altho my addon was gonna add info to the database by itself i'll show you how it looked like
lua Code:
  1. local QuestGiverName
  2. local QuestGiverCoordX
  3. local QuestGiverCoordY
  4.    
  5. function QuestOffered()
  6.     local OfferedQuestInfo = GetOfferedQuestInfo()
  7.     d("== " .. QuestGiverName .."'s Quest Dialogue ==")
  8.     d(QuestGiverName.. ": " .. OfferedQuestInfo)--useless atm
  9. end
  10.        
  11. function QuestAdded()
  12.     local NumQuests = GetNumJournalQuests()
  13.     local MapName = GetMapName()
  14.     --local AddedQuestLevel = GetJournalQuestLevel(NumQuests)
  15.     local NumQuestRewards = GetJournalQuestNumRewards(NumQuests)
  16.     local QuestName, backgroundText, activeStepText, activeStepType, activeStepTrackerOverrideText, completed, tracked, questLevel, pushed, questType = GetJournalQuestInfo(NumQuests)
  17.     d("== Quest Added! ==")
  18.     --d(GetJournalQuestName(NumQuests))
  19.     d("====================")
  20.     d("Quest Name: " .. QuestName)
  21.     d("BackGround Text: " .. backgroundText)
  22.     d("Completed: " .. tostring(completed))
  23.     --d("*Tracked: " .. tostring(tracked))
  24.     --d("*Active Step: " .. activeStepText)
  25.     --d("*Active Step Tracker: " .. activeStepTrackerOverrideText)
  26.     --d("Quest Level: " .. AddedQuestLevel)
  27.     d("Quest Level: " .. tostring(questLevel))
  28.     --d("*Pushed: " .. tostring(pushed))
  29.     --d("*Quest Type: " .. questType)
  30.     for i=1,NumQuestRewards do
  31.     local type, name, amount, iconFile, meetsUsageRequirement, itemQuality = GetJournalQuestRewardInfo(NumQuests, i)
  32.     d("== Reward #" .. i .. " ==")
  33.     d("Type: " .. type)
  34.     d("Name: " .. tostring(name))
  35.     d("Amount: " .. amount)
  36.     d("IconFile: " .. iconFile)
  37.     d("Meets Usage Requirement: " .. tostring(meetsUsageRequirement))
  38.     d("Item Quality: " .. itemQuality)
  39.     end
  40.     d("Number of Quests in Journal: " .. NumQuests)
  41.     d("Number of Quest Rewards: " .. NumQuestRewards)
  42.     d("NPC Name: " .. QuestGiverName)
  43.     d("Map Name: " .. MapName)
  44.     d("X: " .. QuestGiverCoordX)
  45.     d("Y: " .. QuestGiverCoordY)
  46.     d("==================")
  47.     Log("quests", QuestName , QuestGiverName , QuestGiverCoordX , QuestGiverCoordY , MapName , questLevel , completed)
  48.     end

Database looks like this:
lua Code:
  1. ["data"] =
  2.                 {
  3.                     [1] =
  4.                     {
  5.                         [1] = [[A Beginning at Bleakrock]],
  6.                         [2] = [[Riurik]],
  7.                         [3] = 0.594161,
  8.                         [4] = 0.616586,
  9.                         [5] = [[Davon's Watch]],
  10.                        [6] = 4,
  11.                        [7] = false,
  12.                    },
  13.                },

And this data would be used to create a list and the map pins
Report comment to moderator  
Reply With Quote
Unread 05/06/14, 07:18 AM  
Saftsuse
 
Saftsuse's Avatar

Forum posts: 13
File comments: 149
Uploads: 0
So if I understand this correctly, this addon can help me identify which quests I miss in Shadowfen, then I can google the quests I havent done and find where they are and finally complete them?

The Shadowfen quest is like a black hole in my achievement log, along with fishing, so if this is it, then thanks alot

Is it possible to turn off the other parts of the addon?
Report comment to moderator  
Reply With Quote
Unread 05/06/14, 08:00 AM  
Mitsarugi
 
Mitsarugi's Avatar
AddOn Author - Click to view AddOns

Forum posts: 23
File comments: 225
Uploads: 12
Originally Posted by Saftsuse
So if I understand this correctly, this addon can help me identify which quests I miss in Shadowfen, then I can google the quests I havent done and find where they are and finally complete them?

The Shadowfen quest is like a black hole in my achievement log, along with fishing, so if this is it, then thanks alot

Is it possible to turn off the other parts of the addon?
Yes you would have to google it as this addon doesnt show you where it is only its name, it shows all quests in the area you are in in the Quest journal window and once you complete one it will mark it as completed.
Altho quests completed before installing it can only be set to completed manually as they cant be detected by the addon.
Other options can be deactivated in the menu
Report comment to moderator  
Reply With Quote
Unread 05/06/14, 12:11 PM  
Kentarii
AddOn Author - Click to view AddOns

Forum posts: 42
File comments: 52
Uploads: 5
Thanks for answering questions for me Mitsarugi
Couldn't have said it better myself :P

> And this data would be used to create a list and the map pins

This data is already in esohead database since they can map it in their online maps even though it's not available to us.

With this addon, you will know what you have done and what you haven't.
I didn't want to take away the adventuring bit of the game which ZO use as the reason for not providing a proper quest journal.
Report comment to moderator  
Reply With Quote
Unread 05/06/14, 03:08 PM  
Kentarii
AddOn Author - Click to view AddOns

Forum posts: 42
File comments: 52
Uploads: 5
New version just released, here's the changelog for the first 5 versions

0.0.5 (2014-05-06)
--------------------------------------------------------------------------------
* Quest Journal:
- Fixed issue when opening up Quest Journal in unsupported zones.
- Left-click on zone name to bring up list with supported zones.
--------------------------------------------------------------------------------

0.0.4 (2014-05-06)
--------------------------------------------------------------------------------
* Quest Journal:
- Left-click on quest title to set as completed.
- Right-click on quest title to reset state to incomplete.
- Click on quest, unknown, active, completed numbers to apply filter.
--------------------------------------------------------------------------------

0.0.3 (2014-05-04)
--------------------------------------------------------------------------------
* Added Quest Journal module.
--------------------------------------------------------------------------------

0.0.2 (2014-05-03)
--------------------------------------------------------------------------------
* Added ESO Monitor module.
--------------------------------------------------------------------------------

0.0.1 (not released)
--------------------------------------------------------------------------------
* Setup base addon code with support for modules.
* Added Clock module.
--------------------------------------------------------------------------------
Report comment to moderator  
Reply With Quote
Unread 05/06/14, 04:18 PM  
Mitsarugi
 
Mitsarugi's Avatar
AddOn Author - Click to view AddOns

Forum posts: 23
File comments: 225
Uploads: 12
- so how about making the journal scrollable or have pages?
- maybe show it with the ingame journal by pressing "J" ?
- add filters to it to show all Unfound, Completed, Uncompleted, All Quests ?
- filter/sort by level, zone etc...?
i have ideas so ask away if you need some ^^
Report comment to moderator  
Reply With Quote
Unread 05/06/14, 05:10 PM  
Kentarii
AddOn Author - Click to view AddOns

Forum posts: 42
File comments: 52
Uploads: 5
Originally Posted by Mitsarugi
- so how about making the journal scrollable or have pages?
- maybe show it with the ingame journal by pressing "J" ?
- add filters to it to show all Unfound, Completed, Uncompleted, All Quests ?
- filter/sort by level, zone etc...?
i have ideas so ask away if you need some ^^
1) It is already scrollable (but there isn't any scrollbars).
2) Yeah, good suggestion, I thought about that, but so far, I've kept a small window always up with active quests down in the corner.
3) You can do that already by clicking on the numbers.
4) You can click on zone name to switch between zones.

You should take a look at my screenshots, one has some pointers with basic usage info
Last edited by Kentarii : 05/06/14 at 05:11 PM.
Report comment to moderator  
Reply With Quote
Unread 05/07/14, 01:23 AM  
Saftsuse
 
Saftsuse's Avatar

Forum posts: 13
File comments: 149
Uploads: 0
Originally Posted by Mitsarugi
Originally Posted by Saftsuse
So if I understand this correctly, this addon can help me identify which quests I miss in Shadowfen, then I can google the quests I havent done and find where they are and finally complete them?

The Shadowfen quest is like a black hole in my achievement log, along with fishing, so if this is it, then thanks alot

Is it possible to turn off the other parts of the addon?
Yes you would have to google it as this addon doesnt show you where it is only its name, it shows all quests in the area you are in in the Quest journal window and once you complete one it will mark it as completed.
Altho quests completed before installing it can only be set to completed manually as they cant be detected by the addon.
Other options can be deactivated in the menu
Wow, nice!

Can I see which quests I have previously done anywhere else?
Report comment to moderator  
Reply With Quote
Unread 05/07/14, 04:12 AM  
Kentarii
AddOn Author - Click to view AddOns

Forum posts: 42
File comments: 52
Uploads: 5
Originally Posted by Saftsuse
Can I see which quests I have previously done anywhere else?
This data is logged somewhere by ZO since the GM's can respond to customer support requests giving out info about which quests you have done.
The published API does not have any methods which reveals this info I'm afraid (at least I haven't found any way).
Report comment to moderator  
Reply With Quote
Unread 05/07/14, 09:38 AM  
Puschpa

Forum posts: 0
File comments: 5
Uploads: 0
I've tried the AddOn, only the quest piece of it, since I already use other AddOns for crafting research and clock. I cannot get the zone name to show up, and neither the unknown/active/completed quest display. I only have the total/required quests display. Deactivated all other AddOns, relogged, switched character...no way to get the missing lines to show up. I'm a bit clueless ow, what I'm overlooking? Strange thing, even with all AddOns except yours deactivated I still get the "Too many anchors processing" error message.
Report comment to moderator  
Reply With Quote
Unread 05/07/14, 11:41 AM  
Kentarii
AddOn Author - Click to view AddOns

Forum posts: 42
File comments: 52
Uploads: 5
Originally Posted by Puschpa
I've tried the AddOn, only the quest piece of it, since I already use other AddOns for crafting research and clock. I cannot get the zone name to show up, and neither the unknown/active/completed quest display. I only have the total/required quests display. Deactivated all other AddOns, relogged, switched character...no way to get the missing lines to show up. I'm a bit clueless ow, what I'm overlooking? Strange thing, even with all AddOns except yours deactivated I still get the "Too many anchors processing" error message.
I haven't seen this issue before... don't think my addon use that many anchors.

http://www.esoui.com/forums/showthread.php?t=1010

Do you have any specific error message?
Did you disable addons in the UI or did you actually remove the folders?
Last edited by Kentarii : 05/07/14 at 11:42 AM.
Report comment to moderator  
Reply With Quote
Unread 05/08/14, 03:31 AM  
Kentarii
AddOn Author - Click to view AddOns

Forum posts: 42
File comments: 52
Uploads: 5
v0.0.6

Code:
0.0.6 (2014-05-08)
--------------------------------------------------------------------------------
* Quest Journal:
  - Added missing quests to Coldharbour zone which counts toward achievement:
    - Holes in the World
    - Soul Survivors
  - Store more meta data with regards to quest info, zone, agent and location.
  - Added some support for quest of various type not tied to a particular zone.
  - Left-click on quest now shows some quest info, more detailed for discovered
    quests and only basic info for the available quests.
  - Right-click on quest will toggle complete/incomplete state.
--------------------------------------------------------------------------------
Last edited by Kentarii : 05/08/14 at 03:31 AM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: