27.07.2014, 18:47
Hello i need a little bit help.
This is the code.
public OnPlayerText
I make this but when chat he show : arlindi [GAME](0): bla bla bla
I want to make it to :[GAME]arlidni(0): bla bla bla
Please help mee.
This is the code.
public OnPlayerText
PHP код:
if(team[playerid] == TEAM_HUMAN)
{
format(stringbig,sizeof(stringbig),""COL_WHITE"[GAME](%d): {FFFFFF}%s",playerid, text);
SendPlayerMessageToAll(playerid,stringbig);
}
if(team[playerid] == TEAM_ZOMBIE)
{
format(stringbig,sizeof(stringbig),""COL_WHITE"[GAME](%d): {FFFFFF}%s",playerid, text);
SendPlayerMessageToAll(playerid,stringbig);
I want to make it to :[GAME]arlidni(0): bla bla bla
Please help mee.