enum Fehler

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 Leute,
    ich habe mal wieder ein kleines Problem undzwar habe ich folgende Fehler in diesem System

    enum SafeBoxSFPD
    {
    sSFPDGun1,
    sSFPDAmmo1,
    sSFPDGun2,
    sSFPDAmmo2,
    sSFPDGun3,
    sSFPDAmmo3,
    sSFPDGun4,
    sSFPDAmmo4
    }
    new SFPDSafeBox[SafeBoxSFPD];



    stock LoadSFPDSafeBox()
    {
    new SafeBoxSFPD1[64];
    format(SafeBoxSFPD1,sizeof(SafeBoxSFPD1),"/Server/Safebox/SFPD.txt");
    SafeBoxSFPD[sSFPDGun1]=dini_Int(SafeBoxSFPD,"Gun1");
    SafeBoxSFPD[sSFPDAmmo1]=dini_Int(SafeBoxSFPD,"Ammo1");
    SafeBoxSFPD[sSFPDGun2]=dini_Int(SafeBoxSFPD,"Gun2");
    SafeBoxSFPD[sSFPDAmmo2]=dini_Int(SafeBoxSFPD,"Ammo2");
    SafeBoxSFPD[sSFPDGun3]=dini_Int(SafeBoxSFPD,"Gun3");
    SafeBoxSFPD[sSFPDAmmo3]=dini_Int(SafeBoxSFPD,"Ammo3");
    return 1;
    }

    So und Folgende Fehler sind da.

    C:\Users\TimoDerBoss\Desktop\GTA SAMP SERVER\gamemodes\NVLF.pwn(3756) : error 028: invalid subscript (not an array or too many subscripts): "SafeBoxSFPD"
    C:\Users\TimoDerBoss\Desktop\GTA SAMP SERVER\gamemodes\NVLF.pwn(3756) : warning 215: expression has no effect
    C:\Users\TimoDerBoss\Desktop\GTA SAMP SERVER\gamemodes\NVLF.pwn(3756) : error 001: expected token: ";", but found "]"
    C:\Users\TimoDerBoss\Desktop\GTA SAMP SERVER\gamemodes\NVLF.pwn(3756) : error 029: invalid expression, assumed zero
    C:\Users\TimoDerBoss\Desktop\GTA SAMP SERVER\gamemodes\NVLF.pwn(3756) : 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.



    Wie kann ich das nun Fixen also es gibt angeblich keinen Sinn.

    San Fierro Roleplay Status : Alpha Online

    Vorschritt 13%

  • stock LoadSFPDSafeBox()
    {
    new SafeBoxSFPD1[64];
    format(SafeBoxSFPD1,sizeof(SafeBoxSFPD1),"/Server/Safebox/SFPD.txt");
    SafeBoxSFPD[sSFPDGun1]=dini_Int(SafeBoxSFPD1,"Gun1");
    SafeBoxSFPD[sSFPDAmmo1]=dini_Int(SafeBoxSFPD1,"Ammo1");
    SafeBoxSFPD[sSFPDGun2]=dini_Int(SafeBoxSFPD1,"Gun2");
    SafeBoxSFPD[sSFPDAmmo2]=dini_Int(SafeBoxSFPD1,"Ammo2");
    SafeBoxSFPD[sSFPDGun3]=dini_Int(SafeBoxSFPD1,"Gun3");
    SafeBoxSFPD[sSFPDAmmo3]=dini_Int(SafeBoxSFPD1,"Ammo3");
    return 1;
    }
    So sollte es gehn ;)

  • C:\Users\TimoDerBoss\Desktop\GTA SAMP SERVER\gamemodes\NVLF.pwn(3756) : error 028: invalid subscript (not an array or too many subscripts): "SafeBoxSFPD"
    C:\Users\TimoDerBoss\Desktop\GTA SAMP SERVER\gamemodes\NVLF.pwn(3756) : warning 215: expression has no effect
    C:\Users\TimoDerBoss\Desktop\GTA SAMP SERVER\gamemodes\NVLF.pwn(3756) : error 001: expected token: ";", but found "]"
    C:\Users\TimoDerBoss\Desktop\GTA SAMP SERVER\gamemodes\NVLF.pwn(3756) : error 029: invalid expression, assumed zero
    C:\Users\TimoDerBoss\Desktop\GTA SAMP SERVER\gamemodes\NVLF.pwn(3756) : 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.


    Negative Fehler noch nicht behoben!

    San Fierro Roleplay Status : Alpha Online

    Vorschritt 13%

  • stock LoadSFPDSafeBox()
    {
    new SafeBoxSFPD1[64];
    format(SafeBoxSFPD1,sizeof(SafeBoxSFPD1),"/Server/Safebox/SFPD.txt");
    SFPDSafeBox[sSFPDGun1]=dini_Int(SafeBoxSFPD1,"Gun1");
    SFPDSafeBox[sSFPDAmmo1]=dini_Int(SafeBoxSFPD1,"Ammo1");
    SFPDSafeBox[sSFPDGun2]=dini_Int(SafeBoxSFPD1,"Gun2");
    SFPDSafeBox[sSFPDAmmo2]=dini_Int(SafeBoxSFPD1,"Ammo2");
    SFPDSafeBox[sSFPDGun3]=dini_Int(SafeBoxSFPD1,"Gun3");
    SFPDSafeBox[sSFPDAmmo3]=dini_Int(SafeBoxSFPD1,"Ammo3");
    return 1;
    }