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:119,893
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 05-21-21, 10:55 AM  
Fr0stwing
A Kobold Labourer
 
Fr0stwing's Avatar

Forum posts: 0
File comments: 1
Uploads: 0
For those who want to use this on TBC Classic, here's a temporary fix which makes it work.

I found that a lot of the code is anchored to the "IsClassic" check.
I simply changed the "20000" to "30000" from the second line of code in the .lua file without editing anything else to match to TBC build numbers, and it seems to all be working flawlessly; I haven't encountered any errors since.

So, all you need to do is open up the "Classic Quest Log.lua" file and change the following:

From
Code:
local IsClassic = select(4, GetBuildInfo()) < 20000
To
Code:
local IsClassic = select(4, GetBuildInfo()) < 30000

You can also open up the .toc file (Classic Quest Log.toc) and change the following so that the game doesn't see it as an outdated addon as well:

From
Code:
## Interface: 11302
To
Code:
## Interface: 20501
Report comment to moderator  
Reply With Quote
Unread 05-20-21, 11:47 AM  
sykopat
A Kobold Labourer

Forum posts: 1
File comments: 28
Uploads: 0
Originally Posted by moglis
Are you going to make this work for TBC Classic?
Best quest log addon i have used in Classic
Yes please, there is nothing else that comes close!
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
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 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 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 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 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-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 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 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-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-23-19, 06:19 PM  
Dridzt
A Pyroguard Emberseer
 
Dridzt's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1359
File comments: 829
Uploads: 55
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-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-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
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.