Topic: NameTag color Team Based matches
IDK just throwing this idea out there for the 5.0. I havent made DM fix yet im sure that easy tho.I think it just looks better.....you decide
and good job w/ the game.
Im no real Programmer I learned on my own so dont laugh
int team =client_datas[info.cid].team;
if(is_teamplay){
if(team == 0 ){
gfx_text_color(1,0,0,a);//red
}
else if(team == 1 ) {
gfx_text_color(0,0,1,a);}//blue
gfx_text(0, position.x-tw/2.0f, position.y-60, 28.0f, name, -1);
}
else{
gfx_text(0, position.x-tw/2.0f, position.y-60, 28.0f, name, -1);
}