Page 1 of 1

Cartographer - blue shamans

PostPosted: Mon Sep 21, 2015 7:00 pm
by Flp1LUPh
Wanted to make the shamans blue instead of there default pink in cartographer. Talking about the the player marker on the map when you are in a party.

Image

Any help is appreciated

Re: Cartographer - blue shamans

PostPosted: Tue Sep 22, 2015 2:46 pm
by mazzay
I found mention of color at the end of file:
Cartographer\Modules\GroupColors.lua
in two places, after line
Code: Select all
local t = RAID_CLASS_COLORS[fileName]

append line
Code: Select all
if fileName == "SHAMAN" then t.r=0.0 t.g=0.0 t.b=1.0 end


not tested but should work

Re: Cartographer - blue shamans

PostPosted: Wed Sep 23, 2015 12:47 pm
by Flp1LUPh
Image

Updated it to look like the picture. However unfortunately that does not seem to work
Am I putting it in the correct position?
Thanks for you efforts

Re: Cartographer - blue shamans

PostPosted: Wed Sep 23, 2015 2:34 pm
by mazzay
You change the color only for raids. For groups to do the same slightly below

Re: Cartographer - blue shamans

PostPosted: Wed Sep 23, 2015 4:57 pm
by Flp1LUPh
ahh okay, because it works for raids, much appreciated!