Bei mir laden die Dynamischen Fraktionspickups nicht aus der Datenbank, Debugtest etc auch schon gemacht, kommt immer bis zur gleichen stelle
case _LOAD_FRAK_PICKS:{
new var[20];
for(new i=0;i<rows;i++){
printf("Schleife %i", i);
cache_get_field_content(i, "healthx", var);print("x");
FrakInfo[rows][f_HPx] = floatstr(var);print("x1");
cache_get_field_content(i, "healthy", var); FrakInfo[rows][f_HPy] = floatstr(var);
cache_get_field_content(i, "healthz", var); FrakInfo[rows][f_HPz] = floatstr(var);
FrakInfo[rows][f_HPPick] = CreateDynamicPickup(1240, 1, FrakInfo[rows][f_HPx], FrakInfo[rows][f_HPy], FrakInfo[rows][f_HPz]);
printf("%f %f %f", FrakInfo[rows][f_HPx], FrakInfo[rows][f_HPy], FrakInfo[rows][f_HPz]);
}
mysql_free_result();
}
bis zu dem x kommt er, x1 erscheint in der Konsole nicht mehr