Ich habe mir einen Gangchat gemacht, doch nun bekomm ich 9 Warnungen
Der Gang chat :
public OnPlayerText(playerid, text[])
{
if (text[0] == '!')
{
new playerTeam = gTeam[playerid];
new string[128];
new REDD;
GetPlayerName(playerid, string, sizeof string);
format(string,sizeof(string),"TEAMCHAT %s: %s",string,text[1]);
switch (playerTeam) {
case TEAM_COP: color = REDD;
case TEAM_RUSSIA: color = REDD;
case TEAM_TRIADEN: color = REDD;
case TEAM_ITAL: color = REDD;
case TEAM_BIKER: color = REDD;
case TEAM_GROVE: color = REDD;
case TEAM_BALLAS: color = REDD;
case TEAM_AZTECAS: color = REDD;
case TEAM_RIFA: color = REDD;
case TEAM_ARMY: color = REDD;
case TEAM_SANITATER: color = REDD;
case TEAM_FBI: color = REDD;
case TEAM_PILOT: color = REDD;
case TEAM_ZIVI: color = REDD;
}
for (new i; i < MAX_PLAYERS; i++) {
if (gTeam[i] == playerTeam) {
SendClientMessage(i,REDD,string);
}
}
return 0;
}
return 1;
}
Die warnungen:
woran liegt es? wen es jmd weiß aber zu kompliziert ist zu erklären habe ich auch tv
Danke im voraus