Heyho,
ich habe da ein kleines Problem mit mein Fraktion´s Car System.
Das erstellen klappt wunderbar allerdings das Laden nicht so ganz mir wird folgender Error aufgelistet:
[ERROR] mysql_tquery - callback parameter count does not match format specifier length
Das hier ist die Funktion:
stock LoadFrakCars()
{
new query[512];
format(query,sizeof(query),"SELECT * FROM frakcars");
mysql_function_query(dbhandle,query,true,"FrakCarsLoad","i");
}
forward FrakCarsLoad();
public FrakCarsLoad()
{
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();
fcInfo[id][Frak]=cache_get_field_content_int(i,"Fraktion",dbhandle);
fcInfo[id][FCModel]=cache_get_field_content_int(i,"Model",dbhandle);
fcInfo[id][FC_X]=cache_get_field_content_float(i,"PosX",dbhandle);
fcInfo[id][FC_Y]=cache_get_field_content_float(i,"PosY",dbhandle);
fcInfo[id][FC_Z]=cache_get_field_content_float(i,"PosZ",dbhandle);
fcInfo[id][FC_RT]=cache_get_field_content_float(i,"PosRT",dbhandle);
fcInfo[id][FCCol1]=cache_get_field_content_int(i,"Farbe1",dbhandle);
fcInfo[id][FCCol2]=cache_get_field_content_int(i,"Farbe2",dbhandle);
fcInfo[id][id_fc] = CreateVehicle(fcInfo[id][FCModel],fcInfo[id][FC_X],fcInfo[id][FC_Y],fcInfo[id][FC_Z],fcInfo[id][FC_RT],fcInfo[id][FCCol1],fcInfo[id][FCCol2],-1);
}
return 1;
}
Ich hoffe mir kann da einer helfen
Mfg,
CinqYo