Download
(3Kb)
Download
Updated: 03-29-10 03:51 PM
Pictures
File Info
Updated:03-29-10 03:51 PM
Created:unknown
Downloads:10,355
Favorites:73
MD5:

QueTip  Popular! (More than 5000 hits)

Version: 2.61
by: Slakah [More]

Description
Adds Quest progress to the end of tooltips.

Features

  • Adds quest progress information to pretty much every tooltip imaginable.
  • Declutters the default quest tooltips.
  • Colours the tooltip by progress.
  • Adds quest progress to item tooltips (which Blizz doesn't support).

2.61 - Updated toc to 3.3

2.6 - Will no longer error when first encountering a quest objective.

2.52 - Toc bump, and fixed for the new blizzard objective format.

2.5 - Fixed missnamed function calls (damn dry coding).

2.4 - Will properly handle 2 quests with the exact same objective.

2.3 - Fixed missnamed variable (thanks Zidomo)

2.2 - Hooking is now fixed.

2.1 - Fixed references to nil tooltip variable (note: stop modifying code just before releasing it, or at least test your changes first for stupid mistakes like this one :p)

2.0 - Now updated to 3.1 QuestTooltip changes, pretty much a complete rewrite of the tooltip hooking code.

1.2 - Now handle objects on the floor.

1.11 - Keeping the Enemy at Bay seems to return nil on GetQuestLogLeaderBoard() sometimes. Now fixed.

1.1 - Changed some code here and there

1.0 - Initial Release
Optional Files (0)


Post A Reply Comment Options
Unread 02-16-08, 07:29 AM  
adlWoW
A Murloc Raider

Forum posts: 8
File comments: 9
Uploads: 0
Nice little mod, works great!

Thanks!
Report comment to moderator  
Reply With Quote
Unread 02-28-08, 03:59 AM  
durcyn
A Defias Bandit
 
durcyn's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2
File comments: 5
Uploads: 6
the patterns in IterQuests are parsed lazily. For quests where your 'i' variable is a single digit, this is fine, but only the last digit matches beyond that. Adding a %s between the .+ and first %d tokens should fix the matching.

Change the patterns on lines 51 and 55 from

local qtitle, i, n = strmatch(v, "(.+)(%d+)/(%d+)")

to

local qtitle, i, n = strmatch(v, "(.+)%s(%d+)/(%d+)")

and quest objectives > 10 should display correctly.
Report comment to moderator  
Reply With Quote
Unread 02-28-08, 05:53 AM  
durcyn
A Defias Bandit
 
durcyn's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2
File comments: 5
Uploads: 6
Seems strmatch will hit on substrings also, i.e. "Clefthoof" would match "Clefthoof Bull", which is undesirable. We can avoid this by removing the strmatch in the IterQuests function, changing the following on line 48:

if strmatch(qob, name) then

to

if qob = name then


Unfortunately, qob is captured with "slain" appended, so we can sub that out by adding the following after line 24:

local desc = string.gsub(desc," slain","")
Last edited by durcyn : 02-28-08 at 07:37 AM.
Report comment to moderator  
Reply With Quote
Unread 03-24-08, 01:08 PM  
Slakah
A Molten Giant
 
Slakah's Avatar
AddOn Author - Click to view AddOns

Forum posts: 863
File comments: 146
Uploads: 26
I have a new version which should work, just give me a bit to throughly test it.
Report comment to moderator  
Reply With Quote
Unread 04-10-08, 08:43 AM  
Flarin
A Frostmaul Preserver
 
Flarin's Avatar
AddOn Author - Click to view AddOns

Forum posts: 290
File comments: 212
Uploads: 1
Hello- I am getting a lot of errors with the quest objectives in the new zone. Quests in the older zones work fine.
__________________

"I will crush and destroy and...ooo...shiny..."

[SIGPIC][/SIGPIC]
Last edited by Flarin : 04-10-08 at 08:44 AM.
Report comment to moderator  
Reply With Quote
Unread 05-03-08, 02:07 AM  
Slakah
A Molten Giant
 
Slakah's Avatar
AddOn Author - Click to view AddOns

Forum posts: 863
File comments: 146
Uploads: 26
Originally posted by Flarin
Hello- I am getting a lot of errors with the quest objectives in the new zone. Quests in the older zones work fine.
Sorry it's taken so long to reply. Could you please elaborate?
Report comment to moderator  
Reply With Quote
Unread 05-23-08, 08:19 AM  
Taffu
A Flamescale Wyrmkin
AddOn Author - Click to view AddOns

Forum posts: 149
File comments: 422
Uploads: 29
QueTip is throwing a tremendous amount of errors in association with every quest update regarding newer quests (2.4 and higher). I would imagine this is associated to the new quest ID's, for example, for the Sunwell dailys.

I unfortunately forgot to write down the line associated with the error. However, it's a nil error expecting a number (QuestID?). This error throws upon taking a new quest (ie. Sunwell Isle Daily), upon quest updating (ie. killed a quest mob), and upon completion and hand-in of the quest(s).

Edit: Here's the error detail -
Code:
Interface\AddOns\QueTip\core.lua:23: bad argument #3 to 'format' (number expected, got nil)
(tail call): ?
[C]: ?
[C]: ?
Interface\AddOns\QueTip\core.lua:23: in function <Interface\AddOns\QueTip\core.lua:16>
Interface\AddOns\QueTip\core.lua:45: in function <Interface\AddOns\QueTip\core.lua:32>
Last edited by Taffu : 05-23-08 at 09:45 AM.
Report comment to moderator  
Reply With Quote
Unread 06-02-08, 11:34 AM  
Spahut
A Cobalt Mageweaver

Forum posts: 231
File comments: 131
Uploads: 0
Hi,

Is it possible to set the color of the text you add to the tip?
Report comment to moderator  
Reply With Quote
Unread 07-03-08, 10:07 AM  
Slakah
A Molten Giant
 
Slakah's Avatar
AddOn Author - Click to view AddOns

Forum posts: 863
File comments: 146
Uploads: 26
Originally posted by Spahut
Hi,

Is it possible to set the color of the text you add to the tip?
Yup, but I don't want to add an option to do so.

Just open up core.lua in notepad and modify

Code:
tooltip:AddDoubleLine(qtitle, have.."/"..need, 1, 1, 1, ColourGradient(have/need))
Replacing the 1 with a number between 0-1 with the amount of red you want in it, 1 with a number between 0-1 dictating the amount of green you want in your colour, and finally 1 with a number between 0-1 dictating the amount of blue you want in your colour.


So
Code:
tooltip:AddDoubleLine(qtitle, have.."/"..need, 1, 0, 0, ColourGradient(have/need))
would give you

"Find Mankirk's Wife: 0/1"

You have to modify two lines hope this helps .
Last edited by Slakah : 07-03-08 at 10:09 AM.
Report comment to moderator  
Reply With Quote
Unread 06-19-09, 03:39 PM  
Zidomo
A Cliff Giant
 
Zidomo's Avatar

Forum posts: 76
File comments: 1046
Uploads: 0
QueTip v2.0 (updated from v1.2, mod produces no saved variables), AddonLoader r99, USEnglish client/server, WoW 3.1.3 live. First logon with new version, an error is thrown up (recorded with BugSack/BugGrabber):

["message"] = "QueTip-2.0\\QueTip.lua:264: attempt to index global 'tooltip' (a nil value)\n<in C code>: in function `LoadAddOn'\nAddonLoader-2.0\\AddonLoader.lua:109: in function `LoadAddOn'\nAddonLoader-2.0\\Conditions.lua:124: in function <Interface\\AddOns\\AddonLoader\\Conditions.lua:117>\n\n ---",
["type"] = "error",
["time"] = "2009/06/19 14:08:33",
["session"] = 478,
["counter"] = 1


v1.2 used previously has not had any errors in WoW 3.1.3.
Report comment to moderator  
Reply With Quote
Unread 06-21-09, 01:30 AM  
trinkalou
A Kobold Labourer

Forum posts: 0
File comments: 10
Uploads: 0
2.1?

I just went to d/l the 2.1 file and was rather surprised to see that the file that i was to d/l says 2.0. Did the name forget to get updated or was the wrong file uploaded to the new update name?
Report comment to moderator  
Reply With Quote
Unread 06-21-09, 01:41 AM  
Slakah
A Molten Giant
 
Slakah's Avatar
AddOn Author - Click to view AddOns

Forum posts: 863
File comments: 146
Uploads: 26
It has been updated I just forgot to update the name of the zip file.
Report comment to moderator  
Reply With Quote
Unread 06-21-09, 10:10 AM  
fraz0815
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 13
Uploads: 2
Hello,
there is a problem when using QueTip and Engravings together. It doubles some of the lines in the tooltip when you click on an item in the chat. See screenshot. Mouseoveritems tooltips are not affected. Only happens when Engravings and Quetip are both enabled, checked all other tooltip-changing mods, but they didn't do anything, it's strange that Sellfish +AuctionLite info is not doubled.
Report comment to moderator  
Reply With Quote
Unread 06-22-09, 04:50 AM  
Slakah
A Molten Giant
 
Slakah's Avatar
AddOn Author - Click to view AddOns

Forum posts: 863
File comments: 146
Uploads: 26
I'll upload a fix today.
Last edited by Slakah : 06-22-09 at 04:55 AM.
Report comment to moderator  
Reply With Quote
Unread 06-22-09, 07:33 AM  
fraz0815
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 13
Uploads: 2
Thank you very much, problem is gone
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: