bei dieser zeile bekomme ich diesen fehler code.
C:\Users\Philipp\Desktop\GTA\gamemodes\gf.pwn(498 ) : error 009: invalid array size (negative, zero or out of bounds)
new CarInfo[870][cInfo];
bei dieser zeile bekomme ich diesen fehler code.
C:\Users\Philipp\Desktop\GTA\gamemodes\gf.pwn(8984) : warning 217: loose indentation
while(idx < sizeof(CarInfo))
{
new coordsstring[256];
format(coordsstring, sizeof(coordsstring), "%d,%f,%f,%f,%f,%d,%d,%s,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d\n",
CarInfo[idx][cModel],
CarInfo[idx][cLocationx],
CarInfo[idx][cLocationy],
CarInfo[idx][cLocationz],
CarInfo[idx][cAngle],
CarInfo[idx][cColorOne],
CarInfo[idx][cColorTwo],
CarInfo[idx][cOwner],
CarInfo[idx][cOwned],
CarInfo[idx][cLock],
CarInfo[idx][cPaintjob],
CarInfo[idx][cVirWorld],
CarInfo[idx][cComponent0],
CarInfo[idx][cComponent1],
CarInfo[idx][cComponent2],
CarInfo[idx][cComponent3],
CarInfo[idx][cComponent4],
CarInfo[idx][cComponent5],
CarInfo[idx][cComponent6],
CarInfo[idx][cComponent7],
CarInfo[idx][cComponent8],
CarInfo[idx][cComponent9],
CarInfo[idx][cComponent10],
CarInfo[idx][cComponent11],
CarInfo[idx][cComponent12],
CarInfo[idx][cComponent13]);
if(idx == 184)
{
file2 = fopen("cars.cfg", io_write);
}
else
{
file2 = fopen("cars.cfg", io_append);
}
fwrite(file2, coordsstring);
idx++;
fclose(file2);
}
}
return 1; // das hier auch der 3 fehler
}
bei diesen bekomme ich diesen code.
C:\Users\Philipp\Desktop\GTA\gamemodes\gf.pwn(9027) : error 010: invalid function or declaration
}
fwrite(file2, coordsstring);
idx++;
fclose(file2);
}
}
return 1;
}