Can you change prat class colors?
Posted: Thu May 28, 2015 8:12 pm
Hey I was curious if you could change the Prat class colors. Shamans are colored pink (paladin color) in chat rather than blue.
heradura wrote:That's just what the shaman color is.
if RAID_CLASS_COLORS and RAID_CLASS_COLORS[class] then
return RAID_CLASS_COLORS[class].r, RAID_CLASS_COLORS[class].g, RAID_CLASS_COLORS[class].b
if RAID_CLASS_COLORS and RAID_CLASS_COLORS["Shaman"] then
return 0, 122, 222
sapporo wrote:heradura wrote:That's just what the shaman color is.
I mean I assume I could edit the lua to change it. In retail it's blue and that's what I want, I assume it's one string for both.
RAID_CLASS_COLORS = {
["HUNTER"] = { r = 0.67, g = 0.83, b = 0.45, colorStr = "ffabd473" },
["WARLOCK"] = { r = 0.58, g = 0.51, b = 0.79, colorStr = "ff9482c9" },
["PRIEST"] = { r = 1.0, g = 1.0, b = 1.0, colorStr = "ffffffff" },
["PALADIN"] = { r = 0.96, g = 0.55, b = 0.73, colorStr = "fff58cba" },
["MAGE"] = { r = 0.41, g = 0.8, b = 0.94, colorStr = "ff69ccf0" },
["ROGUE"] = { r = 1.0, g = 0.96, b = 0.41, colorStr = "fffff569" },
["DRUID"] = { r = 1.0, g = 0.49, b = 0.04, colorStr = "ffff7d0a" },
["SHAMAN"] = { r = 0.0, g = 0.44, b = 0.87, colorStr = "ff0070de" },
["WARRIOR"] = { r = 0.78, g = 0.61, b = 0.43, colorStr = "ffc79c6e" },
["DEATHKNIGHT"] = { r = 0.77, g = 0.12 , b = 0.23, colorStr = "ffc41f3b" },
["MONK"] = { r = 0.0, g = 1.00 , b = 0.59, colorStr = "ff00ff96" },
};
Vorfidus wrote:If nobody else has done it, I'll do it when I get home today and upload it. Like the others said, you just need to edit the LUA file inside the addon, which dictates the colors based on RGB.