29.12.2014, 20:42
Hello, Mc.Pepe.
You're missing the functions, here's an example:
You're missing the functions, here's an example:
pawn Код:
stock SetPlayerTeamFromClass(playerid, classid)
{
switch(classid)
{
case 0: gTeam[playerid] = TEAM_BALLAS;
case 1: gTeam[playerid] = TEAM_AZTECA;
}
}
stock SetPlayerToTeamColour(playerid)
{
switch(gTeam[playerid])
{
case TEAM_BALLAS: SetPlayerColor(playerid, 0x8080C0FF);
case TEAM_AZTECA: SetPlayerColor(playerid, 0x00FFFFFF);
}
}