mine is like this :
and i want it to end like this :
help please![]()
mine is like this :
and i want it to end like this :
help please![]()
That's a refined gunz chat. It's not hard to add "I'm lying" but you must have knowledge.
if you can locate the chat code to combatscreen probably-- try to use some code like this
the code is about implent a background to message posted in combatscreen (its not auto-resolution) so you need to have little more knowledge to it or you have to adjust the background for chat as well as u can.
MCOLOR backgroundcolor; if ( pCharacter->GetTeamID() == MMT_RED)
backgroundcolor = MCOLOR(100,0,0, 150);//background color in red team
else if ( pCharacter->GetTeamID() == MMT_BLUE)
backgroundcolor = MCOLOR(0,0,100, 150); //background color in blue team
else backgroundcolor = MCOLOR(0,0,0, 150); //background color in normal match
pDC->SetColor(backgroundcolor);
pDC->FillRectangle( MGetWorkspaceWidth() / 2 - 000,/*<-the positioning-> */MGetWorkspaceHeight() * (00.0f/800.0f) - 7, 445, 32); //<-the last part configures background size
backgroundcolor = MCOLOR( 190,125,210, 125); // font color -
pDC->SetColor( backgroundcolor);
Last edited by megaju9; 14-12-22 at 12:21 AM.