Question...

07/21/2014 23:23 ramom155#1
Hellp me change color name ADM for Black in Sorce pls
07/22/2014 13:04 Lumi#2
Mover.h -> define the Color (for example ...
Code:
#define COLOR_ADMINISTRATOR     0xffAE2D2D // <---- Here you need put your color in hex.
)

MoverRender.cpp -> AUTH_ADMINISTRATOR (for example...

Code:
if( m_dwAuthorization >= AUTH_ADMINISTRATOR ) // Admin color
			dwColor = COLOR_ADMINISTRATOR;


if(m_dwAuthorization >= AUTH_ADMINISTRATOR)
		{
			CString strName;
			strName = szName;
			strName += " [Admin]";
			strcpy( szName, (LPCTSTR)strName );

                }
07/22/2014 13:12 Shinji-MRT#3
Wop Lumi war schneller xD

Look for
Code:
#define COLOR_GAMEMASTER        0xff // <- color hex code...
#define COLOR_ADMINISTRATOR     0xff9e1021 // <- bad red in my case
//
Change it to your Color you wanted...

#Please Use SUFU next time

~Shinji
07/23/2014 16:46 ramom155#4
Tanks.
07/23/2014 23:35 AsuraDeveloper#5
Quote:
Originally Posted by Shinji-MRT View Post
Wop Lumi war schneller xD

Look for
Code:
#define COLOR_GAMEMASTER        0xff // <- color hex code...
#define COLOR_ADMINISTRATOR     0xff9e1021 // <- bad red in my case
//
Change it to your Color you wanted...

#Please Use SUFU next time

~Shinji
Using German words while communicating with an english person..

404 brain not found