Party Problem

01/11/2019 21:40 accelerated#1
hello, how to change the color of the box in the left side of menu? what file should i look into it? thanks

01/12/2019 00:57 Meutledaron#2
WndParty.cpp

Code:
void CWndPartyInfo::OnDraw


DWORD colorStatus = 0xff0000ff; // µðÆúÆ®´Â ÀÌ»ó¾øÀ½
		if( IsValidObj(pObjMember) )
		{
			if( pObjMember->GetHitPoint() == 0 ) 
				colorStatus = 0xffff0000; // Á×Àº³ð
			else 
			{
				if( pObjMember->GetMaxHitPoint() > 0 && ( (FLOAT)pObjMember->GetHitPoint() ) / ( (FLOAT)pObjMember->GetMaxHitPoint() ) <.1f ) 
					colorStatus = 0xffffff00; // HP 10% ÀÌÇÏÀγð
			}
		}
		else
		{
			colorStatus = 0xff878787; // µðÆúÆ®´Â ÁÖÀ§¿¡ ¾ø´Â³ð
			if( g_Party.m_aMember[ i ].m_bRemove ) 
				colorStatus = 0xff000000; // ¼*¹ö¿¡ ¾ø´Â³ð
		}
		p2DRender->RenderFillRect( rectTemp, colorStatus );
01/12/2019 04:18 accelerated#3
thanks Meutledaron.