Autohaus Problem

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
  • Immer wenn ich den Code Durchlese finde ich keinen Fehler aber es sind welche da!
    for(new i =0; i < sizeof FCAutohaus; i++)
    {
    new Fahrzeugdatei[60];
    format(Fahrzeugdatei,sizeof(Fahrzeugdatei),"FCAutohaus/%s.ini",Autohaus[i][Autohausname];
    if(!dini_Exists(Fahrzeugdatei))
    {
    dini_Create(Fahrzeugdatei);
    dini_Set(Fahrzeugdatei,"Besitzer","Fort Carson");
    dini_IntSet(Fahrzeugdatei,"Kasse",Autohaus[i][Kasse]);
    }
    Autohaus[i][Kasse] = diniInt(Fahrzeugdatei,"Kasse");
    return 1;
    }


    Die Error Codes sind:
    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(932) : warning 217: loose indentation
    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(935) : error 017: undefined symbol "Autohaus"
    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(935) : warning 215: expression has no effect
    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(935) : error 001: expected token: ";", but found "]"
    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(935) : error 029: invalid expression, assumed zero
    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(935) : fatal error 107: too many error messages on one line


    Kann mir da einer Helfen??


    Danke im Vorraus :* <3

  • Was soll das "=" und die Klammer ")" in deinem Code? Bei der Klammer muss dann wenn dann eine geschweifte hin. Und beim = ein Komma.

    new Autohaus[1][Autohausinfo] = {
    ("FCAutohaus",-99.1947,1083.2280,19.7500,-87.2663,1075.9089,19.7422,"Fort Carson",0)
    };


    So Richtig? aber es sind immer noch error und Warnings da :)


    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(933) : warning 217: loose indentation
    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(936) : error 017: undefined symbol "Autohaus"
    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(936) : warning 215: expression has no effect
    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(936) : error 001: expected token: ";", but found "]"
    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(936) : error 029: invalid expression, assumed zero
    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(936) : fatal error 107: too many error messages on one line

  • new Autohaus[1][Autohausinfo] = {
    ("FCAutohaus",-99.1947,1083.2280,19.7500,-87.2663,1075.9089,19.7422,"Fort Carson",0}
    };

    Immer noch die Gleichen Error und Warnings :) Hier mal die Definition und der Code an sich:


    Definition
    new Autohaus[1][Autohausinfo] = {
    {"FCAutohaus",-99.1947,1083.2280,19.7500,-87.2663,1075.9089,19.7422,"Fort Carson",0}
    };


    Code:
    for(new i =0; i < sizeof FCAutohaus; i++)
    {
    new Fahrzeugdatei[60];
    format(Fahrzeugdatei,sizeof(Fahrzeugdatei),"FCAutohaus/%s.ini",Autohaus[i][Autohausname];
    }
    if(!dini_Exists(Fahrzeugdatei))
    {
    dini_Create(Fahrzeugdatei);
    dini_Set(Fahrzeugdatei,"Besitzer","Fort Carson");
    dini_IntSet(Fahrzeugdatei,"Kasse",Autohaus[i][Kasse]);
    }
    Autohaus[i][Kasse] = diniInt(Fahrzeugdatei,"Kasse");
    return 1;
    }


    Error/Warnings
    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(933) : warning 217: loose indentation
    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(936) : error 017: undefined symbol "Autohaus"
    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(936) : warning 215: expression has no effect
    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(936) : error 001: expected token: ";", but found "]"
    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(936) : error 029: invalid expression, assumed zero
    C:\Users\PlayFrames\Desktop\samp03z_svr_R1_win32\Fun.pwn(936) : fatal error 107: too many error messages on one line


    Ich bin zu Blöd um das hin zu bekommen :P mir muss man mal alles Einzeln oder Neu Formulieren :)

  • Beitrag von ErikSon ()

    Dieser Beitrag wurde gelöscht, Informationen über den Löschvorgang sind nicht verfügbar.