Hallo Brotfische,
ich habe mal ein Autosave system gebaut es saved und lädt auch alles nur das Problem ist nun
es lädt nur 1 Car aus der Liste.
Die liste sieht immoment so aus
560,1513.404052,-1661.989624,13.252424,2.028450
560,1535.928222,-1666.600341,13.087545,178.617874
560,1535.922973,-1677.746948,13.088312,180.771148
Und es ließt nur die erste Zeile
stock autosladen()
{
new cars[5][64];
new line[256];
new File:datei = fopen("Cars.cfg",io_read);
if(datei)
{
new float:x,float:y,float:z,float:angel;
new modelid;
fread(datei, line);
split(line, cars,',');
modelid = strval(cars[0]);
x = floatstr(cars[1]);
y = floatstr(cars[2]);
z = floatstr(cars[3]);
angel = floatstr(cars[4]);
AddStaticVehicle(modelid,x,y,z,angel,-1,-1);
fclose(datei);
}
}
Wie kann ich das machen das alle Autos aus der Liste erstellt bzw. geladen werden?
Mit Freundlichen Grüßen Purex