04.07.2012, 22:51
Hello all l have this:
But in chat all players names are white how to change them to their skin colour help pleas?!?!
pawn Код:
new to_others[MAX_CHATBUBBLE_LENGTH+1];
format(to_others,MAX_CHATBUBBLE_LENGTH,"Says: %s",text);
SetPlayerChatBubble(playerid,to_others,MESSAGE_COLOR,35.0,10000);
}
{
new string[128], pname[24];
GetPlayerName(playerid, pname, sizeof(pname));
format(string, sizeof (string), "%s[%d]: %s", pname, playerid, text);
SendClientMessageToAll(0xFFFFFFAA, string);
}
return 0;
}