22.08.2010, 14:51
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:
Thanks in advance.
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; }