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
#2

you dont even need to code anything :l
Reply
#3

Quote:
Originally Posted by [FU]Victious
Посмотреть сообщение
you dont even need to code anything :l
if i dont then it doesnt let people talk.
Reply
#4

plz can someone help (( sorry for double post
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)