Download
(18Kb)
Download
Updated: 08-08-17 03:32 PM
Pictures
File Info
Compatibility:
Shadows of Argus (7.3.0)
Tomb of Sargeras (7.2.0)
Updated:08-08-17 03:32 PM
Created:01-17-14 12:42 PM
Downloads:4,044
Favorites:14
MD5:
Categories:Unit Mods, Character Advancement

NiceColorize

Version: 7.3.0
by: Mr.Dio [More]

The addon will no longer be updated. But all its main parts are now present some addons:


This addon will help you a little improve the standard interface. He will paint the names of players in colors of their class (frames, friends list). It also changes the display of the number of health and resources. Colorize your interface.
If you have any questions or suggestions, you can ask them in this forum thread, ingame pm, or comments.

Optional Files (0)


Post A Reply Comment Options
Unread 07-26-18, 10:17 PM  
Mr.Dio
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 10
Uploads: 11
Hello! The addon will no longer be updated. But all its main parts are now present some addons: NiceBars, NiceIcons, NiceColoredNames.
Report comment to moderator  
Reply With Quote
Unread 07-26-18, 12:04 PM  
Tired85
A Defias Bandit

Forum posts: 3
File comments: 8
Uploads: 0
using human mistweaver lvl 110 and I get:

the following error within bugsack:
Code:
3x NiceColorize\FramesColorize.lua:376: attempt to index global 'ReputationWatchBar' (a nil value)
NiceColorize\FramesColorize.lua:376: in function `FramesColorizeModule_Update'
NiceColorize\NiceConfig.lua:377: in function <NiceColorize\NiceConfig.lua:358>
NiceColorize\NiceConfig.lua:401: in function <NiceColorize\NiceConfig.lua:396>

Locals:
Cfg = <table> {
 Class = false
 ModuleEnable = true
 Gradient = false
 BottomColor = <table> {
 }
 TopColor = <table> {
 }
}
ClassColor = <table> {
 colorStr = "ff00ff96"
 GetRGB = <function> defined @SharedXML\Util.lua:615
 OnLoad = <function> defined @SharedXML\Util.lua:604
 b = 0.59
 GenerateHexColorMarkup = <function> defined @SharedXML\Util.lua:646
 WrapTextInColorCode = <function> defined @SharedXML\Util.lua:650
 GenerateHexColor = <function> defined @SharedXML\Util.lua:642
 GetRGBA = <function> defined @SharedXML\Util.lua:623
 IsEqualTo = <function> defined @SharedXML\Util.lua:608
 g = 1
 r = 0
 SetRGBA = <function> defined @SharedXML\Util.lua:631
 GetRGBAsBytes = <function> defined @SharedXML\Util.lua:619
 SetRGB = <function> defined @SharedXML\Util.lua:638
 GetRGBAAsBytes = <function> defined @SharedXML\Util.lua:627
}
(*temporary) = <function> defined =[C]:-1
(*temporary) = <table> {
}
(*temporary) = SlidingActionBarTexture0 {
 0 = <userdata>
}
(*temporary) = SlidingActionBarTexture1 {
 0 = <userdata>
}
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = PartyMemberFrame3Texture {
 0 = <userdata>
}
(*temporary) = PartyMemberFrame4Texture {
 0 = <userdata>
}
(*temporary) = PartyMemberFrame1PetFrameTexture {
 0 = <userdata>
}
(*temporary) = PartyMemberFrame2PetFrameTexture {
 0 = <userdata>
}
(*temporary) = PartyMemberFrame3PetFrameTexture {
 0 = <userdata>
}
(*temporary) = PartyMemberFrame4PetFrameTexture {
 0 = <userdata>
}
(*temporary) = FocusFrameTextureFrameTexture {
 0 = <userdata>
}
(*temporary) = TargetFrameToTTextureFrameTexture {
 0 = <userdata>
}
(*temporary) = FocusFrameToTTextureFrameTexture {
 0 = <userdata>
}
(*temporary) = Boss1TargetFrameTextureFrameTexture {
 0 = <userdata>
}
(*temporary) = Boss2TargetFrameTextureFrameTexture {
 0 = <userdata>
}
(*temporary) = Boss3TargetFrameTextureFrameTexture {
 0 = <userdata>
}
(*temporary) = Boss4TargetFrameTextureFrameTexture {
 0 = <userdata>
}
(*temporary) = Boss5TargetFrameTextureFrameTexture {
 0 = <userdata>
}
(*temporary) = <unnamed> {
 0 = <userdata>
}
(*temporary) = <unnamed> {
 0 = <userdata>
}
(*temporary) = <unnamed> {
 0 = <userdata>
}
(*temporary) = <unnamed> {
 0 = <userdata>
}
(*temporary) = <unnamed> {
 0 = <userdata>
}
(*temporary) = <unnamed> {
 0 = <userdata>
}
(*temporary) = <unnamed> {
 0 = <userdata>
}
(*temporary) = <unnamed> {
 0 = <userdata>
}
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = "attempt to index global 'ReputationWatchBar' (a nil value)"
Report comment to moderator  
Reply With Quote
Unread 10-19-14, 09:47 PM  
Mr.Dio
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 10
Uploads: 11
Originally Posted by karmamuscle
Hi,
the error below fires every time I have a NPC targeted. Atleast where my character is in Ironforge, every NPC I can target from the Auction House bridge does it.
I use default blizzard unitframes.
hmm, as I understand it happens when you choose a character that does not have mana. I have not seen this and I have no such problem. Please try to change
Code:
local Position = (Bar:GetValue() / MaxValue) * Bar:GetWidth()
in NiceColorize\BarsColorize.lua:114 to
Code:
			if MaxValue then
			if MaxValue == 0 then
				local Position = 0
			else
				local Position = (Bar:GetValue() / MaxValue) * Bar:GetWidth()
			end
			end
I changed it and the addon still works well.
Report comment to moderator  
Reply With Quote
Unread 10-19-14, 03:21 PM  
karmamuscle
A Cobalt Mageweaver
 
karmamuscle's Avatar
AddOn Author - Click to view AddOns

Forum posts: 205
File comments: 173
Uploads: 1
Hi,
the error below fires every time I have a NPC targeted. Atleast where my character is in Ironforge, every NPC I can target from the Auction House bridge does it.
I use default blizzard unitframes.
Code:
388x NiceColorize\BarsColorize.lua:114: Division by zero
NiceColorize\BarsColorize.lua:114: in function <NiceColorize\BarsColorize.lua:60>
NiceColorize\BarsColorize.lua:376: in function <NiceColorize\BarsColorize.lua:365>

Locals:
ColorizeBars = <function> defined @NiceColorize\BarsColorize.lua:156
Cfg = <table> {
 BarsColorize = <table> {
 }
 NamesColorize = <table> {
 }
}
TextOnBars_Update = <function> defined @NiceColorize\BarsColorize.lua:60
__________________
55 89 144 233 377 610 987 1597 2584 4181 6765
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.