Quote:
Originally Posted by gurmani11
Define colors
PHP код:
#define COLOR_RED 0xFF0000FF
#define COLOR_GREEN 0x00FF00FF
#define COLOR_BLUE 0x0000FFFF
#define COLOR_YELLOW 0xFFFF00FF
#define COLOR_WHITE 0xFFFFFFFF
set player color then (AFTER YOU CHOOSE THE TEAM) put this line there
PHP код:
SetPlayerColor(playerid,SetTeamColors(playerid));
Put this down anywhere but not in any functions
PHP код:
// case 0: or
// case TEAM_RED:
stock SetTeamColors(playerid)
{
switch (GetPlayerTeam(playerid))
{
case 0: COLOR_RED
case 1: COLOR_BLUE
case 2: COLOR_GREEN
case 3: COLOR_YELLOW
default: COLOR_WHITE // if no team
}
}
|
Maybe this the code
Код:
new string[128];
SetPlayerColor(playerid,SetTeamColors(playerid));
if(GetPlayerTeam(playerid) == 0)
{
format(string,sizeof(string),"{B7B7B7}(id: %d): {00FFF2}%s",playerid,text);
SendPlayerMessageToAll(playerid, string);
return 0;
}