Guten Tag Community,
ich habe probleme beim laden der Häuser den ingame wird nach einem restart nichts mehr geladen
public OnHausLoad(hausid)
{
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++)
{
for(new x=0; x<sizeof(hInfo); x++)
{
hInfo[x][hBesitzer]=cache_get_field_content_int(i,"besitzer",dbhandle);
hInfo[x][hCreated]=cache_get_field_content_int(i,"created",dbhandle);
hInfo[x][h_enx]=cache_get_field_content_float(i,"enx",dbhandle);
hInfo[x][h_eny]=cache_get_field_content_float(i,"eny",dbhandle);
hInfo[x][h_enz]=cache_get_field_content_float(i,"enz",dbhandle);
hInfo[x][hPreis]=cache_get_field_content_int(i,"preis",dbhandle);
hInfo[x][hLevel]=cache_get_field_content_int(i,"level",dbhandle);
if(hInfo[x][hOwned] == 1)
{
CreatePickup(1239,1,hInfo[x][h_enx], hInfo[x][h_eny], hInfo[x][h_enz]);
}
if(hInfo[x][hOwned] == 0)
{
CreatePickup(1273,1,hInfo[x][h_enx], hInfo[x][h_eny], hInfo[x][h_enz]);
}
hLabel[x]=Create3DTextLabel("Haha", COLOR_RED, hInfo[x][h_enx], hInfo[x][h_eny], hInfo[x][h_enz], 40.0, 0, 0);
UpdateHausLabel(x,hInfo[x][hOwned]+1);
}
}
return 1;
}
loadHaus(hausid)
{
new query[128];
format(query,sizeof(query),"SELECT * FROM Haus WHERE besitzer='%i'",hInfo[hausid][hBesitzer]);
mysql_function_query(dbhandle,query,true,"OnHausLoad","i",hausid);
return 1;
}