Category: Outdated Mods
Addon Information
Download Latest Version.
To add favorites please register for a free account. If you already have one you need to login. How do I install this? (FAQ)
Maul's Portal Bug Reports Feature Requests
Author:
Version:
30000.1
Date:
10-12-2008 05:17 PM
Size:
7.96 Kb
Downloads:
3,273
Favorites:
13
MD5:
Pictures
Click to enlarge
How ColorBlind enchances the UI
Color Blind 4.0
Color Blind 4.0 is a near complete rewrite of the previous Color Blind version posted here. It has been updated for 2.3 and all features are working. Some of the features are implemented a bit differently than in the screen shot, will update the screenshot when time allows.

Auction House Tooltips and Item Comparison Tooltips and not working 100% though. Again, I will figure those out when I get more time =)

--------------------------------------

Original Color Blind by Hwap & Megabob
  Change Log - Color Blind 4.0
30000.1 -
- Updated for WoW 3.0, though it should still work on live save for the craft skill frame (which is removed in 3.0)

TOC change for 2.4.
Added changes made by user Cosmic Cleric.
  Optional Files - Color Blind 4.0
File Name
Version
Size
Author
Date
Type
Manual3
8kB
01-29-2009 02:12 PM
Patch
Manual2
8kB
01-01-2009 04:59 PM
Patch
Manual1
4kB
12-06-2008 04:23 PM
Patch
RarityTooltip7
4kB
12-12-2007 05:20 PM
Patch
  Comments - Color Blind 4.0
Post A Reply Comment Options
Old 12-03-2007, 01:14 AM  
Maul
Macaroon!
 
Maul's Avatar
Premium Member
Interface Author - Click to view interfaces

Forum posts: 242
File comments: 997
Uploads: 26
Yeah, as stated in the notes above, auctionhouse tooltips are not working, mainly because I have not figured out how to hook them yet.

As for semi colons, it is optional in lua. I stopped using them some time ago, not sure why

And thanks for the code snippet...I will add it ana an option to toggle it
Maul is online now Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-30-2007, 08:20 PM  
Cosmic Cleric
A Murloc Raider
 
Cosmic Cleric's Avatar
Interface Author - Click to view interfaces

Forum posts: 8
File comments: 269
Uploads: 8
Quote:
Originally posted by Maul
What you would like done should be fairly easy. I will see what I can do and post an update
I actually fixed it for myself for now, by making this change to line 348...

Code:
text:SetText(item .. "|cffffffff".." ("..itemQuality[rarity]..")|r")
... which got me what I wanted.

EDIT: I made some modifications to the function, removing unneeded variables...

Code:
local function setTooltipItemColor(self)

	local text = getglobal(self:GetName().."TextLeft1")
	local texttext = text:GetText()
	
	if (texttext) then
	
		local _, _, rarity, _, _, _, _, _, _, _ = GetItemInfo(texttext)
		
		if (rarity) then			
			text:SetText(texttext .. "|cffffffff".." ("..itemQuality[rarity]..")|r")		
			self:Show()
		end
	
	end
	
end
This is what I am currently using and it seems to work fine.


If you are willing to implement this into a future version it would be great, but I'm not in a hurry for it at this point since I did the above.

EDIT: I noticed that when I'm browsing the Auction House the tooltip does not show the item quality in the same as if I'm mousing over something on my character page tab or in my bags, for some items? Items I have for sale myself do show the rarity information. Would be great if the same tooltip functionality worked for displaying item quality for items in the AH too, so I don't buy a blue paying purple prices!

BTW, I noticed you didn't use any semi-colons in the code in that fuction, was curious as to why?

Thank you for your time and efforts, it is appreciated.

Last edited by Cosmic Cleric : 12-02-2007 at 02:37 AM.
Cosmic Cleric is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-30-2007, 02:30 PM  
Maul
Macaroon!
 
Maul's Avatar
Premium Member
Interface Author - Click to view interfaces

Forum posts: 242
File comments: 997
Uploads: 26
What you would like done should be fairly easy. I will see what I can do and post an update
Maul is online now Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-28-2007, 10:52 PM  
Cosmic Cleric
A Murloc Raider
 
Cosmic Cleric's Avatar
Interface Author - Click to view interfaces

Forum posts: 8
File comments: 269
Uploads: 8
Question Feature Request

Thank you for updating this with the tooltip fix that displayes the rarity level of the item under the mouse pointer.

I have a request. Could you add an option, for the tooltips, that the color of the item is NOT changed but next to the name the rarity level is still added in parenthesis?

Right now if I want the rarity level text I have to take the option of everything being in white. I'm read/green colorblind, which basically means I have a hard time distinguishing between like colors like blue and purple, but can see general color ranges. So I hate to lose all colors just so I can have a tooltip that lets me distinguish between a blue and a purple item.

Thank you for your time and efforts, it is appreciated. /bow
Cosmic Cleric is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-12-2007, 02:45 AM  
crypticumbra
A Defias Bandit

Forum posts: 2
File comments: 1
Uploads: 0
I agree with you, i have been playing with regular retail wow for a several years now, and i cant tell epic and rares, i cant tell weather quests are difficult (second to hardest) or easy (second from gray). this helps me so much, thanks.
crypticumbra is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-29-2007, 10:27 PM  
Cosmic Cleric
A Murloc Raider
 
Cosmic Cleric's Avatar
Interface Author - Click to view interfaces

Forum posts: 8
File comments: 269
Uploads: 8
When trying to view a tooltip for an item, to see the quality of the item ("Rare", etc.), I do see it at the end of the tooltip, but just for an instant, and then the line disappears and the bottom border of the tooltip moves up one line. Is anybody else seeing this?

I tried modifying the Tooltip_Rarity.lua to append the quailty of an item text to the first line of the tooltip, instead of the last, and the same thing happens, the info shows up for an instant, and then goes away again.

I finally tried doing a GameTooltip:SetText("HELLO!"), instead, and I see my tooltip saying "HELLO!" for an instant, and then the original tooltip shows up over it and replaces it.

So it seems there's something else redrawing the tooltip after ColorBlind does, removing the color blind information. Has anybody else seen this happen to them?

Is it a matter of changing the TOC and making sure ColorBlind loads last? I tried unloading ALL of my add-ons except for ColorBlind, but the problem still happens.

Any help would be appreciated, as I can't tell the difference between blue and purple very well! Thanks.
Cosmic Cleric is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 09-26-2007, 11:22 AM  
Toren Altair
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Patch 2.2 Tooltip Fix

I made a small fix for Patch 2.2. Just unpack the file and put the Tooltip_Rarity.lua into the Colorblind directory. At least it works for me.

I have put the file on my webspace under http://www.space-blog.com/Colorblind-fix.rar

If Maul or whoever is in charge of this mod wants to put this changes on the site here, feel free so or contact me through my homepage.
Toren Altair is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-21-2006, 08:21 AM  
Corelgun
A Kobold Labourer
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 1
Uploads: 2
An unofficial WoW 2.0 revision of the stand-alone MonoCombo component is available from http://www.realisticsoftware.com/pages/WoWAddons.html
Corelgun is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-08-2006, 07:07 AM  
Viserion
A Defias Bandit

Forum posts: 2
File comments: 5
Uploads: 0
Thank you, thank you thank you for updating this. I was about ready to dive in myself but I like writing code from the start rather than modifying someone else's. At any rate this is probably the one addon I couldn't do with. Being able to tell if an item is epic or rare is a great!
Viserion is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Post A Reply



Category Jump:




The Network:
EQInterface | EQ2Interface | LoTROInterface | MMOInterface | War.MMOUI | WoWInterface | VGInterface | Allakhazam | Thottbot | Wowhead | Zam


©2009 MMOUI / ZAM Network
vBulletin - Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.