Help: chat room text color
#1

I need help making only the name colored and the text white like almost all servers...

here is the issue:


and im assuming this is the code you need to see:

Код:
public OnPlayerText(playerid, text[])
{
    SaveScore(playerid);
    if(text[0] == '!') //change ! to what variable u wanna use
    {
    new string[128];    GetPlayerName(playerid, string, sizeof(string));
    format(string, sizeof(string), "[RADIO]%s: %s", string, text[1]);
    printf("%s", string);

    for(new i = 0; i < MAX_PLAYERS; i++)
    {
    if(IsPlayerConnected(i) && gTeam[i] == gTeam[playerid]) SendClientMessage(i,GetPlayerColor(playerid), string);
    }
    return 0;
    }
    new string[128], pName[MAX_PLAYER_NAME];
    GetPlayerName(playerid, pName, MAX_PLAYER_NAME);
    format(string, sizeof(string), "ID:[%d]%s: %s", playerid, pName, text);
	SendClientMessageToAll(GetPlayerColor(playerid), string);
	return 0;
}
Thanks in advance.
Reply


Messages In This Thread
Help: chat room text color - by Camacorn - 22.08.2010, 14:51
Re: Help: chat room text color - by WillyP - 22.08.2010, 15:12
Re: Help: chat room text color - by Camacorn - 22.08.2010, 15:26
Re: Help: chat room text color - by Camacorn - 22.08.2010, 16:26

Forum Jump:


Users browsing this thread: 1 Guest(s)