Beispielsweise, Ja.
Habe in meiner DB 4 Datensätze. Zivilist, LSPD, FBI, SAOD.
Leider gibt er mir wieder nur SAOD aus aber zwei mal.
forward LoadFractions_Data();
public LoadFractions_Data()
{
new rows, id;
rows = cache_num_rows();
for(new i=0; i<rows; i++)
{
cache_get_value_name_int(i, "FID", fInfo[i][fid]);
cache_get_value_name(i, "Name", fInfo[i][f_name], 256);
cache_get_value_name(i, "Shortname", fInfo[i][f_shortname], 64);
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], 64);
}
printf("%s", fInfo[2][f_name]);
printf("%s", fInfo[1][f_name]);
printf("%s", fInfo[3][f_name]);
printf("%s", fInfo[0][f_name]);
printf("[FRAKTIONS] %d/%d Fraktionen geladen.", rows, MAX_FRAC);
return 1;
}
Keine Warnings oder Errors