Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Drop Color Like RAN GS

Joined
Dec 7, 2011
Messages
499
Reaction score
176
White - Item Drop
Gold - Gold Drop

GLCrowRenList.cpp

Search this for item.

void CROWREN::SETTYPEFLAG ( GLCharacter *pMYCHAR, CItemClientDrop *pITEM )
{
m_dwCOLOR = NS_UITEXTCOLOR::ITEMMONEY;
}

Then Change The ITEMMONEY To WHITE!
Search this for gold.

void CROWREN::SETTYPEFLAG ( GLCharacter *pMYCHAR, CMoneyClientDrop *pMONEY )
{
m_dwCOLOR = NS_UITEXTCOLOR::ITEMMONEY;
m_vPOS = pMONEY->vPos;
}

Then Change The ITEMMONEY To GOLD!
Viola!
 
Back
Top