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.