Hey,
ich habe ein Problem mit meinem Fraktionsladen-System.
Ich bekomme keine Error oder Warnings. Bloß meine Konsole gibt mir nicht das was ich haben möchte.
forward LoadFractions_Data();
public LoadFractions_Data()
{
new rows, id;
rows = cache_num_rows();
printf("Gefundene Rows: %d" ,rows);
for(new i=0; i<rows; i++)
{
id = cache_get_value_name_int(i, "FID", fInfo[i][fid]);
if(id < 0 || id >= rows) continue;
cache_get_value_name(i, "Name", fInfo[i][f_name]);
cache_get_value_name(i, "Shortname", fInfo[i][f_shortname]);
cache_get_value_name_float(i, "X", fInfo[i][f_x]);
cache_get_value_name_float(i, "Y", fInfo[i][f_y]);
cache_get_value_name_float(i, "Z", fInfo[i][f_z]);
cache_get_value_name_float(i, "R", fInfo[i][f_r]);
cache_get_value_name_int(i, "Inter", fInfo[i][f_inter]);
cache_get_value_name_int(i, "World", fInfo[i][f_world]);
cache_get_value_name_int(i, "Leaderskin", fInfo[i][f_leaderskin]);
cache_get_value_name_int(i, "Kasse", fInfo[i][f_kasse]);
cache_get_value_name_int(i, "Mats", fInfo[i][f_mats]);
cache_get_value_name_int(i, "Drogen", fInfo[i][f_drogen]);
cache_get_value_name(i, "Color", fInfo[i][f_color]);
printf("[Fraktions] Durchlauf: %d | Fraktions-ID: %d| Fraktions-Name: %s [Fraktions]", i, fInfo[i][fid], fInfo[i][f_name]);
}
return 1;
}
Die Konsole spuckt die IDS richtig aus in der richtigen reihenfolge aber den Namen nicht.