hallo liebe Community,
ich habe folgendes Problem.
Ich mache ein dynamisches Autohaus, läuft auch gut außer einer Sache.
Es lädt das letzte Fahrzeug in der Tabelle so oft wie Fahrzeuge in der Tabelle stehen. (z.B. Es stehen 7 Fahrzeuge in der Tabelle, es wird das 7. Fahrzeug 7 mal an der gleichen Stelle erstellt.)
Hier ist der Code der im public 'OnGameModeInit()' drin ist.
for(new i = 0; i < mysql_CountDB("Autohaus"); i++)
{
format(query,sizeof query,"SELECT * FROM `Autohaus`");
mysql_query(query);
mysql_store_result();
while(mysql_fetch_row(query))
sscanf(query,"e<p<|>iddddffff>",AhCars[i]);
AhCars[i][vID] = AddStaticVehicleEx(AhCars[i][Modell],AhCars[i][PosX],AhCars[i][PosY],AhCars[i][PosZ],AhCars[i][Rotation],col,col,3600000);
format(string,sizeof string,"Autohaus %d",AhCars[i][vID]);
SetVehicleNumberPlate(AhCars[i][vID],string);
format(string,sizeof string,"Modell: {FF0000}%s\n{00A0FF}Kaufpreis: %i€\nVerkaufspreis: %i€\nRepairpreis: %i€",Carname[AhCars[i][Modell]-400],AhCars[i][Kaufpreis],AhCars[i][Verkaufspreis],AhCars[i][Repairpreis]);
Create3DTextLabel(string,hellblau,AhCars[i][PosX],AhCars[i][PosY],AhCars[i][PosZ]+0.75,15,0);
}
Ich bedanke mich schon mal.
MfG