Problem mit autohaus

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
  • Hey..
    Ich hab ein problem bei mein autohaus system
    Wenn ich bei mein autohaus mehr als 3 cars reinfüge steht dann bei samp gamemode unknown
    Und wenn ich im server rein gehe gibts da garnix


    Hier der befehl:



    new Buycars[3][AKInfo] = {
    {560, "Sultan", "Grottis Autohaus", 80000, 563.0904,-1290.9673,17.0862,358.9576},
    {541, "Bullet", "Grottis Autohaus", 170000, 559.0749,-1290.6060,16.9532,359.1490},
    {411, "Infernus", "Grottis Autohaus", 250000, 555.6571,-1290.1689,16.8732,357.7887}
    };


    Ich hoffe mir kann jemand helfen :S

  • new Buycars[3][AKInfo] = {
    {560, "Sultan", "Grottis Autohaus", 80000, 563.0904,-1290.9673,17.0862,358.9576},
    {541, "Bullet", "Grottis Autohaus", 170000, 559.0749,-1290.6060,16.9532,359.1490},
    {411, "Infernus", "Grottis Autohaus", 250000, 555.6571,-1290.1689,16.8732,357.7887}
    }; <------- Probier mal hier das ; Wegzumachen und probier es noch mal


    MfG ,
    Lami

    Mit Freundlichen Grüßen,
    Lami

  • for(new haus=1;haus<MAX_HAUS;haus++)
    {
    LoadHaus(haus);
    }


    for(new i = 0; i < sizeof Autohaus; i++)
    {
    new datei[50];
    format(datei,sizeof(datei),"/Autohaeuser/%s.ini",Autohaus[i][Name]);
    if(!dini_Exists(datei))
    {
    dini_Create(datei);
    dini_Set(datei,"Besitzer","Staat");
    dini_IntSet(datei,"Kasse",Autohaus[i][Kasse]);
    }
    Autohaus[i][Kasse] = dini_Int(datei,"Kasse");
    format(Autohaus[i][Besitzer],MAX_PLAYER_NAME,dini_Get(datei,"Besitzer"));
    }


    for(new i = 0; i < sizeof Autohaus; i++)
    {
    CreatePickup(1339,1,Autohaus[i][posx],Autohaus[i][posy],Autohaus[i][posz],-1);
    }


    for(new j = 0; j < sizeof Buycars; j++)
    {
    kaufauto[j] =
    CreateVehicle(Buycars[j][modelid],Buycars[j][posx],Buycars[j][posy],Buycars[j][posz],Buycars[j][posa],-1,-1,-1);
    }