Download
(17Kb)
Download
Updated: 09-26-19 10:31 AM
Patch for:
Classic Quest Log.
Pictures
File Info
Compatibility:
Classic (1.13.2)
Updated:09-26-19 10:31 AM
Created:05-23-19 10:47 AM
Downloads:120,098
Favorites:54
MD5:

Classic Quest Log for Classic  Popular! (More than 5000 hits)

Version: 1.4.6-Classic
by: Stanzilla [More]

Fix toggling tracking
Post A Reply Comment Options
Unread 09-10-19, 06:50 AM  
Arnore
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
Is it possible to add support for Quest XP tracker?

https://www.wowinterface.com/downloa....html#comments
Report comment to moderator  
Reply With Quote
Unread 09-10-19, 06:25 PM  
Arxon_Havenloft
A Defias Bandit

Forum posts: 2
File comments: 12
Uploads: 0
Re: Re: Re: Re: Info

Originally Posted by Arxon_Havenloft
Originally Posted by Taryble
I'm seeing this same issue as well, and it's not tied to the Instant Quest Text setting.
I can get it to show by swapping between the Dark and Normal background, but otherwise, only the first quest I look at in the log is full visible.
Same. I've been using the Dark/Normal switch to fix it as well but it is annoying.

I have however found a fix if you're willing to run an additional quest addon. After I turned Quester back on to get my peon noises back "job done / more work" I noticed that I was no longer having that text issue. So I've just been leaving them both going.

https://www.curseforge.com/wow/addons/quester/files
I found a different addon which doesn't have the description fading issue but it doesn't look at aesthetically pleasing as this one. I'm not sure if you want to look through that code and find out why theirs works and yours doesn't but here's the link: https://www.curseforge.com/wow/addons/widequestlog
__________________
Some things money can't buy.. but you'll still get those things anyway if you have enough money.
Last edited by Arxon_Havenloft : 09-10-19 at 08:47 PM.
Report comment to moderator  
Reply With Quote
Unread 09-10-19, 11:36 PM  
Jakobud
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 14
Uploads: 2
Please just put your addon on Github so others can help you troubleshoot problems and fix them for you.
Report comment to moderator  
Reply With Quote
Unread 09-11-19, 07:49 PM  
Saraneth0o
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
I have noticed that I am unable to shift click the quests to add them to chat while using this addon. Is it possible to fix? Cheers.
Report comment to moderator  
Reply With Quote
Unread 09-23-19, 06:19 PM  
Dridzt
A Pyroguard Emberseer
 
Dridzt's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1362
File comments: 831
Uploads: 59
Originally Posted by Saraneth0o
I have noticed that I am unable to shift click the quests to add them to chat while using this addon. Is it possible to fix? Cheers.
+1

To clarify we want to have shift-clicking insert the quest title in an open editbox not a link.
Last edited by Dridzt : 09-23-19 at 06:24 PM.
Report comment to moderator  
Reply With Quote
Unread 09-26-19, 10:29 AM  
Stanzilla
An Aku'mai Servant
AddOn Author - Click to view AddOns

Forum posts: 34
File comments: 146
Uploads: 6
The code is here https://github.com/Stanzilla/ClassicQuestLog the problem is that the original project is All Rights Reserved, it's actually not allowed to do that and only allowed on WowI because they have this "plugins and patches" category. If Gello wants me to take it down, I will. If you guys find and fix any bugs, I'll be happy to merge them but I don't play Classic anymore so I'm probably not going to do much work on it myself.
Report comment to moderator  
Reply With Quote
Unread 09-27-19, 11:39 AM  
djulioo
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
I just did a change to make the quests post in the chat when you shift-click on them. Only needed to change the following lines (in yellow):
Code:
function cql:ListEntryOnClick()
   local index = self.index
   if self.index==0 then
		return -- this is a fake header/war campaign; don't do anything
		elseif self.isHeader then
      ClassicQuestLogCollapsedHeaders[self.questTitle] = not ClassicQuestLogCollapsedHeaders[self.questTitle] or nil
   else
      if IsModifiedClick("CHATLINK") and ChatEdit_GetActiveWindow() then
            local activeWindow = ChatEdit_GetActiveWindow();
            activeWindow:Insert(self.questTitle);
      elseif IsModifiedClick("QUESTWATCHTOGGLE") then
         cql:ToggleWatch(index)
      else
         cql:SelectQuestIndex(index)
      end
   end
   cql:UpdateLogList()
end
Now I need to figure out how to make it show the proper map when you click for it to show the quest on the map as that's also not implemented
Report comment to moderator  
Reply With Quote
Unread 09-27-19, 04:24 PM  
hobox10
A Kobold Labourer

Forum posts: 0
File comments: 15
Uploads: 0
Is there any way to make it add a plus sign "+" to the end of the quest level when it is an elite (group) quest? So it would be like [50+].
Report comment to moderator  
Reply With Quote
Unread 10-02-19, 01:43 AM  
Reaper666735
A Defias Bandit
 
Reaper666735's Avatar

Forum posts: 2
File comments: 65
Uploads: 0
Wink Project

Originally Posted by Stanzilla
The code is here https://github.com/Stanzilla/ClassicQuestLog the problem is that the original project is All Rights Reserved, it's actually not allowed to do that and only allowed on WowI because they have this "plugins and patches" category. If Gello wants me to take it down, I will. If you guys find and fix any bugs, I'll be happy to merge them but I don't play Classic anymore so I'm probably not going to do much work on it myself.

i highly doubt Gello will ask , he already posted on the main branch that he will only maintain the "Retail" version, and he is aware of this 'offshoot' ^^

so if no news = good news
__________________
For Azeroth !
Report comment to moderator  
Reply With Quote
Unread 10-02-19, 02:03 AM  
Reaper666735
A Defias Bandit
 
Reaper666735's Avatar

Forum posts: 2
File comments: 65
Uploads: 0
Thumbs up good work

Originally Posted by djulioo
I just did a change to make the quests post in the chat when you shift-click on them. Only needed to change the following lines (in yellow):
Code:
function cql:ListEntryOnClick()
   local index = self.index
   if self.index==0 then
		return -- this is a fake header/war campaign; don't do anything
		elseif self.isHeader then
      ClassicQuestLogCollapsedHeaders[self.questTitle] = not ClassicQuestLogCollapsedHeaders[self.questTitle] or nil
   else
      if IsModifiedClick("CHATLINK") and ChatEdit_GetActiveWindow() then
            local activeWindow = ChatEdit_GetActiveWindow();
            activeWindow:Insert(self.questTitle);
      elseif IsModifiedClick("QUESTWATCHTOGGLE") then
         cql:ToggleWatch(index)
      else
         cql:SelectQuestIndex(index)
      end
   end
   cql:UpdateLogList()
end
Now I need to figure out how to make it show the proper map when you click for it to show the quest on the map as that's also not implemented

works like a charm ^^ , just too bad Classic does not allow the actual Quest link instead of name only
__________________
For Azeroth !
Report comment to moderator  
Reply With Quote
Unread 10-09-19, 04:39 PM  
hobox10
A Kobold Labourer

Forum posts: 0
File comments: 15
Uploads: 0
So any way to check which quests are group or elite quests to add a "+" sign to the end of the quest level (for example, [60+] Seal of Ascension)? I tried looking into it myself but didn't see how to determine if a quest is a group/elite quest.
Report comment to moderator  
Reply With Quote
Unread 02-15-20, 07:29 AM  
weavil
A Deviate Faerie Dragon

Forum posts: 14
File comments: 95
Uploads: 0
do you think there's an easy to make this play nice with Lightheaded
Report comment to moderator  
Reply With Quote
Unread 02-28-20, 11:06 AM  
Peerly
An Aku'mai Servant

Forum posts: 31
File comments: 35
Uploads: 0
I can't link quests. I've tried with only this addon loaded and it doesn't allow shift-clicking from the log. There is no error message or LUA error.
Report comment to moderator  
Reply With Quote
Unread 03-11-20, 01:07 PM  
Reaper666735
A Defias Bandit
 
Reaper666735's Avatar

Forum posts: 2
File comments: 65
Uploads: 0
Originally Posted by Peerly
I can't link quests. I've tried with only this addon loaded and it doesn't allow shift-clicking from the log. There is no error message or LUA error.
you need to edit the Lua yourself like indicated in the comments below
__________________
For Azeroth !
Report comment to moderator  
Reply With Quote
Unread 05-19-21, 10:42 AM  
moglis
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Are you going to make this work for TBC Classic?
Best quest log addon i have used in Classic
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.