[Help] Changing awake text color

10/13/2019 11:47 rapiskid2#1
Good Day Epvpers!

I want to change awake color in every line. Please help!

1st line awake = Red STR+50
2nd line awake = Green STR+50
3rd line awake = Blue STR+50
10/15/2019 11:18 FlyffDeveloper#2
look in PutAwakeningBlessing - WndManager.cpp.

You'll find a loop in there called
Code:
for( int i = 0; i < nSize; i++ )
{
}
Inside there is the code to render the text for the awakening. So all you have to add is 'if i == 1 > color 1' etc etc. Preferable to use a switch statement but you get the idea :).
10/15/2019 11:21 Naltalah#3
Why do statements at all if you can have an array of color values and just be like dwColor[i]?