Ja moin es geht darum ich speichere in der DB ein Nummernschilder beim createn wird es auch richtig gesoeichert.
Jedoch setzt er es nicht wenn er die Fahrzeuge lädt.
hier mal der code :
Code
public onLoadCars()
{
new num_fields,num_rows;
cache_get_data(num_rows,num_fields,dbhandle);
if(!num_rows)return 1;
for(new i=0; i<num_rows; i++)
{
new id=getFreeCarId();
cInfo[id][c_model]=cache_get_field_content_int(i,"model",dbhandle);
cInfo[id][besitzer]=cache_get_field_content_int(i,"besitzer",dbhandle);
cInfo[id][c_x]=cache_get_field_content_float(i,"x",dbhandle);
cInfo[id][c_y]=cache_get_field_content_float(i,"y",dbhandle);
cInfo[id][c_z]=cache_get_field_content_float(i,"z",dbhandle);
cInfo[id][c_r]=cache_get_field_content_float(i,"r",dbhandle);
cInfo[id][c_color1]=cache_get_field_content_int(i,"color1",dbhandle);
cInfo[id][c_color2]=cache_get_field_content_int(i,"color2",dbhandle);
cInfo[id][db_id]=cache_get_field_content_int(i,"id",dbhandle);
cInfo[id][c_plate]=cache_get_field(i,"plate",dbhandle);
CreateVehicle(cInfo[id][c_model],cInfo[id][c_x],cInfo[id][c_y],cInfo[id][c_z],cInfo[id][c_r],cInfo[id][c_color1],cInfo[id][c_color2],-1,0);
SetVehicleNumberPlate(id,cInfo[id][c_plate]);
}
return 1;
}
Alles anzeigen