Problem bei Fraktionsautohaus

Wichtiger Hinweis: Bitte ändert nicht manuell die Schriftfarbe auf schwarz sondern belasst es bei der Standardeinstellung. Somit tragt ihr dazu bei dass euer Text auch bei Verwendung unseren dunklen Forenstils noch lesbar ist!

Tipp: Ihr wollt längere Codeausschnitte oder Logfiles bereitstellen? Benutzt unseren eigenen PasteBin-Dienst Link
  • Hallo,


    Ich habe(mal wieder-.-) ein Problem, diesmal bei meinem GangAutohaussystem


    Hier die Fehler und die Zeilen:


    C:\Users\Patrick\Desktop\Desktop aufräumer\autohausordner\filterscripts\Gangautohaus.pwn(365) : warning 213: tag mismatch
    C:\Users\Patrick\Desktop\Desktop aufräumer\autohausordner\filterscripts\Gangautohaus.pwn(365) : error 032: array index out of bounds (variable "GangAutoSpawns")
    C:\Users\Patrick\Desktop\Desktop aufräumer\autohausordner\filterscripts\Gangautohaus.pwn(366) : warning 213: tag mismatch
    C:\Users\Patrick\Desktop\Desktop aufräumer\autohausordner\filterscripts\Gangautohaus.pwn(366) : error 032: array index out of bounds (variable "GangAutoSpawns")
    C:\Users\Patrick\Desktop\Desktop aufräumer\autohausordner\filterscripts\Gangautohaus.pwn(367) : warning 213: tag mismatch
    C:\Users\Patrick\Desktop\Desktop aufräumer\autohausordner\filterscripts\Gangautohaus.pwn(367) : error 032: array index out of bounds (variable "GangAutoSpawns")
    C:\Users\Patrick\Desktop\Desktop aufräumer\autohausordner\filterscripts\Gangautohaus.pwn(367) : error 047: array sizes do not match, or destination array is too small
    C:\Users\Patrick\Desktop\Desktop aufräumer\autohausordner\filterscripts\Gangautohaus.pwn(368) : warning 213: tag mismatch
    C:\Users\Patrick\Desktop\Desktop aufräumer\autohausordner\filterscripts\Gangautohaus.pwn(368) : error 032: array index out of bounds (variable "GangCarList")





    new GangAutoSpawns[1][ahGangSpawn] = {
    {739.7457,-1343.8668,13.2828,270.2592}
    };




    else if (strcmp("/kaufen", x_frac, true, 10) == 0)
    {
    if (Spectating[playerid][0]!=-1)
    {
    for(new car = 0; car < Max_Gang_Cars; car++)
    {
    if(PlayerInfo[playerid][pLeader] != 0)
    {
    if(GangCarList[PlayerInfo[playerid][pLeader]][car][Carid] != 0 && gesetzt[playerid] != 1)
    {
    new preis = GangKaufliste[Spectating[playerid][0]][Preis];
    if (GetPlayerMoney(playerid) >= preis)
    {
    new autohaus=GangKaufliste[Spectating[playerid][0]][Autohaus];
    GivePlayerMoney(playerid, - preis);
    GangCarList[PlayerInfo[playerid][pLeader]][car][Typ]=Spectating[playerid][0];
    GangCarList[PlayerInfo[playerid][pLeader]][car][GangX]=GangAutoSpawns[autohaus][GanggX];
    GangCarList[PlayerInfo[playerid][pLeader]][car][GangY]=GangAutoSpawns[autohaus][GanggY];
    GangCarList[PlayerInfo[playerid][pLeader]][car]=GangAutoSpawns[autohaus][GanggZ];
    GangCarList[PlayerInfo[playerid][pLeader]][car][GanggRotation]=GangAutoSpawns[autohaus][GanggRotation];
    SetVehicleParamsForAll(GangKaufliste[Spectating[playerid][0]][Carid],0,0);
    TogglePlayerControllable(playerid,1);
    Spectating[playerid][0]=-1;
    RemovePlayerFromVehicle(playerid);
    format(string,sizeof(string),"Du hast dir erfolgreich für $%i ein/einen %s gekauft!",preis,GangKaufliste[GangCarList[PlayerInfo[playerid][pLeader]][car][Typ]][Name]);
    SendClientMessage(playerid, COLOR_RED, string);
    SendClientMessage(playerid, COLOR_GREEN, "Wenn du dein Fahrzeug zerstörst, gib /freperatur ein.");
    SendClientMessage(playerid, COLOR_GREEN, "Mit /fschloss kannst du dein Fahrzeug für andere Leute freigeben oder abschließen.");
    SendClientMessage(playerid, COLOR_GREEN, "Mehr Befehle kannst du unter /fhilfe sehen.");
    SendClientMessage(playerid, COLOR_YELLOW, "Dein Auto steht am Ausgabepunkt bereit! Viel Spaß beim Fahren!");
    }
    else
    {
    new string2[64];
    format(string2,sizeof(string2), "Du hast nicht genug Geld für das Auto (benötigt: $%i)!", preis);
    SendClientMessage(playerid, COLOR_LIGHTRED, string);
    }
    OnGangBuyCar(PlayerInfo[playerid][pLeader], playerid);//PlayerInfo.... PLeader
    }
    else
    {
    SendClientMessage(playerid, COLOR_GREY, "Du besitzt bereits ein Fahrzeug auf diesem Schlüssel");
    }
    }
    }
    }
    else
    {
    SendClientMessage(playerid, COLOR_GREY, "Du besichtigst kein Auto!");
    }
    return 1;
    }
    }




    ich hoffe ihr könnt mir erneut helfen:)


    Lg BlackLegend