Liebe Community,
ich habe ein Problem bei dem /carkey befehl. Ich bekomme 4 Errors
Errors:
C:\SA-MP Server\filterscripts\AutohausSystem.pwn(811) : error 017: undefined symbol "CarKey"
C:\SA-MP Server\filterscripts\AutohausSystem.pwn(811) : warning 215: expression has no effect
C:\SA-MP Server\filterscripts\AutohausSystem.pwn(811) : error 001: expected token: ";", but found "]"
C:\SA-MP Server\filterscripts\AutohausSystem.pwn(811) : error 029: invalid expression, assumed zero
C:\SA-MP Server\filterscripts\AutohausSystem.pwn(811) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
4 Errors.
Die Zeilen:
[pwn=806] new MaxVeh[MAX_PLAYERS];
if(strcmp("/carkey", cmd, true) == 0)
{
if(MaxVeh[playerid] > 1)
{
CarKey[playerid] += 1;
if(CarKey[playerid] == MaxVeh[playerid])
{
CarKey[playerid] = 0;
}
if(Carlist[playerid][CarKey[playerid]][Typ] != -1)
{
new index = -1;
for(new i=0; i<sizeof(Kaufliste); i++)
{
if(Kaufliste[i][Modelid] == Carlist[playerid][CarKey[playerid]][Typ])
{
index = i;
break;
}
}
if(index == -1) format(string, sizeof(string), "Du nimmst deinen %dten Auto-Schlüssel, für deinen <unbekannt> !", CarKey[playerid]+1);
else format(string, sizeof(string), "Du nimmst deinen %dten Auto-Schlüssel, für deinen %s !", CarKey[playerid]+1, Kaufliste[index][Name]);
}
else
{
format(string, sizeof(string), "Du nimmst deinen %dten Auto-Schlüssel !",CarKey[playerid]+1);
}
SendClientMessage(playerid,COLOR_YELLOW,string);
}
return 1;
}[/pwn]
Ich hoffe ihr könnt helfen.
Mit freundlichen Grüßen,
James.