Download
(49MB)
Download
Updated: 12-25-22 01:22 PM
Pictures
File Info
Compatibility:
Dragonflight (10.0.2)
Shadowlands patch (9.0.2)
Visions of N'Zoth (8.3.0)
Updated:12-25-22 01:22 PM
Created:unknown
Downloads:5,594,282
Favorites:7,690
MD5:

LightHeaded  Popular! (More than 5000 hits)

Version: v100002-1.0.0-2022-12-15
by: Cladhaire [More]

Classic not updated at the moment, only retail.


LightHeaded is a very simple addon that displays quest information and comments from http://www.wowhead.com in game, eliminating the need to Alt-Tab when you get stuck on quest. This addon was inspired by qcomments and wowhead_quests, which both serve a similar purpose. Data is only loaded when you first request it, so you can be sure you're not using more memory than you need to.

I HIGHLY suggest using this addon with TomTom, another one of my addons (http://www.wowinterface.com/download...32-TomTom.html ). This allows you to simply click any coordinate in LightHeaded to add it to your map as a waypoint.

The following slash commands are valid:
  • /lh attach - Attaches the frame to the quest log
  • /lh detach - Detaches the frame, allows you to resize and move it
  • /lh sound - Toggles the open/close sound
  • /lh page - Toggles showing all comments on one page, or with multiple pages
  • /lh bgalpha <0.0-1.0> - Changes the alpha of the LH window background textures, so you can see the world.
  • /lh debug - Enables or disabled debug messages when loading quest databases
  • /lh config - Opens the LightHeaded configuration window
  • /lh autodetails - Toggle automatic opening of the Lightheaded window when clicking a quest in the objective tracker

LightHeaded now includes the English descriptions and introductory text for most of the quests in the game. This is disabled by default, but can be enabled for those players that are not playing in their native locale.

LightHeaded supports sending coordinates to TomTom, MapNotes, Cartographer2 and Cartographer3.

IMPORTANT: Addon authors that wish to use this API and data should
include the wowhead logo in the frame that displays this information.
They are kind enough to let me continue parsing their database, and we
owe them at least that much. Thank you.

Thanks for using my addons!

Updated 2022-12-15 for retail.
Beta Files (7)
File Name
Version
Hits
Size
Author
Date
v30401-1.1.0-2022-12-15
0
32MB
Cladhaire
02-04-23 03:41 AM
v11302-1.0.0-2020-05-01
591
10MB
Cladhaire
05-05-20 11:47 AM
v11302-1.1.0
1,322
10MB
Cladhaire
10-04-19 11:26 AM
v11302-1.0.0
1,464
10MB
Cladhaire
09-05-19 12:16 AM
v70100-1.1.0-2016-12-29
299
30MB
Cladhaire
01-12-17 02:27 PM
v70000-1.0.0-beta
307
27MB
Cladhaire
09-05-16 07:11 AM
v60000-0.1.0
1,012
22MB
Cladhaire
10-20-14 02:50 PM


Post A Reply Comment Options
Unread 09-21-08, 02:25 PM  
akgrizz
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
win vista

is there a way to use lightheaded with vista system?
I download it and i cant open or move it due to file not there txt, but it is there just can't use that type of file
Report comment to moderator  
Reply With Quote
Unread 09-21-08, 11:06 AM  
Mike-N-Go
A Theradrim Guardian
 
Mike-N-Go's Avatar
AddOn Author - Click to view AddOns

Forum posts: 68
File comments: 147
Uploads: 18
Re: Re: LightHeaded API

Originally posted by Cladhaire
There is an extensive API, but you shouldn't be altering the LH frame itself, you should instead use the data API that is provided to display the information in your own frame. I ask the following of anyone using this dataP:

"IMPORTANT: Addon authors that wish to use this API and data should
include the wowhead logo in the frame that displays this information.
They are kind enough to let me continue parsing their database, and we
owe them at least that much. Thank you."

Code:
name = LightHeaded:GetQuestName(qid)
numComments = LightHeaded:GetNumQuestComments(qid)
qid,cid,rating,indent,parent,date,poster,comment = LightHeaded:GetQuestComment(qid, idx)
idx,qid,cid,rating,indent,parent,date,poster,comment = LightHeaded:IterateQuestComments(qid)
c, z, x, y = LightHeaded:IterateNPCLocs(id)
qid,sharable,level,reqlev,stype,sname,sid,etype,ename,eid,exp,rep,series = LightHeaded:GetQuestInfo(qid)
I am trying to fix a a bug with TourGuide, I do not think making another frame is the way I wish to go about this.
Report comment to moderator  
Reply With Quote
Unread 09-21-08, 02:44 AM  
Cladhaire
Salad!
 
Cladhaire's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 1935
File comments: 4940
Uploads: 19
Re: LightHeaded API

Originally posted by Mike-N-Go
Cladhaire, is there a LightHeaded API call to open the details of a quest with the index of the quest ID? I think LightHeaded:UpdateFrame(qid, page) would be what I am looking for?


EDIT: Added more info.
There is an extensive API, but you shouldn't be altering the LH frame itself, you should instead use the data API that is provided to display the information in your own frame. I ask the following of anyone using this dataP:

"IMPORTANT: Addon authors that wish to use this API and data should
include the wowhead logo in the frame that displays this information.
They are kind enough to let me continue parsing their database, and we
owe them at least that much. Thank you."

Code:
name = LightHeaded:GetQuestName(qid)
numComments = LightHeaded:GetNumQuestComments(qid)
qid,cid,rating,indent,parent,date,poster,comment = LightHeaded:GetQuestComment(qid, idx)
idx,qid,cid,rating,indent,parent,date,poster,comment = LightHeaded:IterateQuestComments(qid)
c, z, x, y = LightHeaded:IterateNPCLocs(id)
qid,sharable,level,reqlev,stype,sname,sid,etype,ename,eid,exp,rep,series = LightHeaded:GetQuestInfo(qid)
__________________
"There's only one thing that I know how to do well and I've often been told that you only can do what you know how to do well, and that's be you-- be what you're like-- be like yourself. And so I'm having a wonderful time, but I'd rather be whistling in the dark..."
Last edited by Cladhaire : 09-21-08 at 02:46 AM.
Report comment to moderator  
Reply With Quote
Unread 09-21-08, 12:11 AM  
Mike-N-Go
A Theradrim Guardian
 
Mike-N-Go's Avatar
AddOn Author - Click to view AddOns

Forum posts: 68
File comments: 147
Uploads: 18
LightHeaded API

Cladhaire, is there a LightHeaded API call to open the details of a quest with the index of the quest ID? I think LightHeaded:UpdateFrame(qid, page) would be what I am looking for?


EDIT: Added more info.
Last edited by Mike-N-Go : 09-21-08 at 12:29 AM.
Report comment to moderator  
Reply With Quote
Unread 09-13-08, 08:04 AM  
Suteck
A Kobold Labourer
 
Suteck's Avatar

Forum posts: 0
File comments: 3
Uploads: 0
Re: Re: LightHeaded does not work with Dominos

Originally posted by Cladhaire
This is on Live? Does it happen on Beta?
live, unknown in beta
Report comment to moderator  
Reply With Quote
Unread 09-13-08, 02:34 AM  
Cladhaire
Salad!
 
Cladhaire's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 1935
File comments: 4940
Uploads: 19
Re: LightHeaded does not work with Dominos

Originally posted by Suteck
LH crashed WOW upon clicking on the collapse/expand buttons. I uninstalled, reinstalled, and updated several addons and I narrowed it down to Dominos.

PS Dominos is the new Bongos, author is abandoning Bongos. I'll also post on the Dominos site
This is on Live? Does it happen on Beta?
__________________
"There's only one thing that I know how to do well and I've often been told that you only can do what you know how to do well, and that's be you-- be what you're like-- be like yourself. And so I'm having a wonderful time, but I'd rather be whistling in the dark..."
Report comment to moderator  
Reply With Quote
Unread 09-12-08, 09:16 AM  
Suteck
A Kobold Labourer
 
Suteck's Avatar

Forum posts: 0
File comments: 3
Uploads: 0
LightHeaded does not work with Dominos

LH crashed WOW upon clicking on the collapse/expand buttons. I uninstalled, reinstalled, and updated several addons and I narrowed it down to Dominos.

PS Dominos is the new Bongos, author is abandoning Bongos. I'll also post on the Dominos site
Report comment to moderator  
Reply With Quote
Unread 09-05-08, 07:41 AM  
forty2j
A Cobalt Mageweaver

Forum posts: 232
File comments: 260
Uploads: 0
Originally posted by seashell0123
Yes, I started uninstalling the easiest addons first, one by one (ones that didn't need any reconfiguring when reinstalled), to see which one was causing the conflict, the last two I had left were Bartender3 and Titan Panel. My sister has Titan on her computer along with Lightheaded and she was able to flip through the 'pages'. So I uninstalled Bartender3 next because Titan was obviously not causing it. After uninstalling Bartender3, I was then able to use Lightheaded as it was intended. I then reinstalled all the addons again, excluding Bartender3 and it's still working wonderfully.
From your description, you didn't try LH+BT3 (with no Titan). There might be something with the way Titan and BT3 interact..

Also, BT4 is cool
Report comment to moderator  
Reply With Quote
Unread 09-04-08, 10:38 PM  
seashell0123
A Defias Bandit
 
seashell0123's Avatar

Forum posts: 2
File comments: 5
Uploads: 0
Originally posted by Cladhaire
Does this happen with ONLY Bartender3 and LightHeaded installed? No other addons enabled?
Yes, I started uninstalling the easiest addons first, one by one (ones that didn't need any reconfiguring when reinstalled), to see which one was causing the conflict, the last two I had left were Bartender3 and Titan Panel. My sister has Titan on her computer along with Lightheaded and she was able to flip through the 'pages'. So I uninstalled Bartender3 next because Titan was obviously not causing it. After uninstalling Bartender3, I was then able to use Lightheaded as it was intended. I then reinstalled all the addons again, excluding Bartender3 and it's still working wonderfully.
Report comment to moderator  
Reply With Quote
Unread 09-04-08, 03:48 PM  
Cladhaire
Salad!
 
Cladhaire's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 1935
File comments: 4940
Uploads: 19
Originally posted by seashell0123
Yes, that is the only add-on that I removed and Lightheaded started working again. I then reinstalled it just to make sure and Lightheaded stopped working. Domino's is extremely similiar to Bartender3 so I just downloaded that one. I'd rather have lightheaded than Bartender.......I depend to much on your addon for my alts =) Thanks for creating it!
Does this happen with ONLY Bartender3 and LightHeaded installed? No other addons enabled?
__________________
"There's only one thing that I know how to do well and I've often been told that you only can do what you know how to do well, and that's be you-- be what you're like-- be like yourself. And so I'm having a wonderful time, but I'd rather be whistling in the dark..."
Report comment to moderator  
Reply With Quote
Unread 09-04-08, 03:39 PM  
seashell0123
A Defias Bandit
 
seashell0123's Avatar

Forum posts: 2
File comments: 5
Uploads: 0
Originally posted by Cladhaire
That is odd. You're talking Bartender3 on WoWace trunk?
Yes, that is the only add-on that I removed and Lightheaded started working again. I then reinstalled it just to make sure and Lightheaded stopped working. Domino's is extremely similiar to Bartender3 so I just downloaded that one. I'd rather have lightheaded than Bartender.......I depend to much on your addon for my alts =) Thanks for creating it!
Report comment to moderator  
Reply With Quote
Unread 09-04-08, 01:11 AM  
Cladhaire
Salad!
 
Cladhaire's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 1935
File comments: 4940
Uploads: 19
Originally posted by seashell0123
I seemed to have found the addon that is conflicting with Lightheaded: Bartender 3. Once I removed that one add-on, I was able to start skimming through the pages again. I'm pretty bummed because I love that add on. But I hear Bongo's is very similiar so I'll just use that one. Hope the information helps.
That is odd. You're talking Bartender3 on WoWace trunk?
__________________
"There's only one thing that I know how to do well and I've often been told that you only can do what you know how to do well, and that's be you-- be what you're like-- be like yourself. And so I'm having a wonderful time, but I'd rather be whistling in the dark..."
Report comment to moderator  
Reply With Quote
Unread 09-03-08, 09:39 PM  
seashell0123
A Defias Bandit
 
seashell0123's Avatar

Forum posts: 2
File comments: 5
Uploads: 0
I seemed to have found the addon that is conflicting with Lightheaded: Bartender 3. Once I removed that one add-on, I was able to start skimming through the pages again. I'm pretty bummed because I love that add on. But I hear Bongo's is very similiar so I'll just use that one. Hope the information helps.
Last edited by seashell0123 : 09-03-08 at 09:53 PM.
Report comment to moderator  
Reply With Quote
Unread 09-03-08, 03:57 AM  
seashell0123
A Defias Bandit
 
seashell0123's Avatar

Forum posts: 2
File comments: 5
Uploads: 0
Originally posted by Cladhaire
There is another addon conflicting, and no change to LightHeaded or TomTom caused it, or will "fix" it. You can read plenty about this issue through the comments here on wowinterface.com. In short, there is another addon that is calling SelectQuestLogEntry() when it is not supposed to.
TY very much for the quick response. Since I only have about 5 addons it shouldn't be to hard to find the one that's conflicting. If/when I find it, I'll post it. Thanks again.
Report comment to moderator  
Reply With Quote
Unread 09-03-08, 01:11 AM  
Cladhaire
Salad!
 
Cladhaire's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 1935
File comments: 4940
Uploads: 19
Originally posted by seashell0123
For some reason when I open up my quest log, it won't let me go through the pages anymore (pages on the right). I uninstalled and reinstalled both Lightheaded and TomTom..........and also did /lh page and /lh attach but it didn't help. Any suggestions? This was working fine yesterday. Any thoughts would be appreciated
There is another addon conflicting, and no change to LightHeaded or TomTom caused it, or will "fix" it. You can read plenty about this issue through the comments here on wowinterface.com. In short, there is another addon that is calling SelectQuestLogEntry() when it is not supposed to.
__________________
"There's only one thing that I know how to do well and I've often been told that you only can do what you know how to do well, and that's be you-- be what you're like-- be like yourself. And so I'm having a wonderful time, but I'd rather be whistling in the dark..."
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: