03.12.2015, 13:54
Define colors
set player color then (AFTER YOU CHOOSE THE TEAM) put this line there
Put this down anywhere but not in any functions
PHP код:
#define COLOR_RED 0xFF0000FF
#define COLOR_GREEN 0x00FF00FF
#define COLOR_BLUE 0x0000FFFF
#define COLOR_YELLOW 0xFFFF00FF
#define COLOR_WHITE 0xFFFFFFFF
PHP код:
SetPlayerColor(playerid,SetTeamColors(playerid));
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
}
}