Guten Tag Community,
ich habe seit 3 Wochen das Problem das kein Haus geladen wird ich weis nicht woran es liegt
Mein Code:
public OnHausLoad(hausid)
{
new num_fields,num_rows;
cache_get_data(num_rows,num_fields,dbhandle);
print("Test"); //<------ ab hier wird nix mehr gelesen :/
if(!num_rows)return 1;
for(new i=0; i<num_rows; i++)
{
new haus = getfreehausid();
hInfo[haus][hID]=cache_get_field_content_int(i,"id",dbhandle);
hInfo[haus][hBesitzer]=cache_get_field_content_int(i,"besitzer",dbhandle);
hInfo[haus][hCreated]=cache_get_field_content_int(i,"created",dbhandle);
hInfo[haus][hOwned]=cache_get_field_content_int(i,"owned",dbhandle);
hInfo[haus][h_enx]=cache_get_field_content_float(i,"enx",dbhandle);
hInfo[haus][h_eny]=cache_get_field_content_float(i,"eny",dbhandle);
hInfo[haus][h_enz]=cache_get_field_content_float(i,"enz",dbhandle);
hInfo[haus][hPreis]=cache_get_field_content_int(i,"preis",dbhandle);
hInfo[haus][hLevel]=cache_get_field_content_int(i,"level",dbhandle);
if(hInfo[haus][hOwned] == 1)
{
CreatePickup(1239,1,hInfo[haus][h_enx], hInfo[haus][h_eny], hInfo[haus][h_enz]);
}
if(hInfo[haus][hOwned] == 0)
{
CreatePickup(1273,1,hInfo[haus][h_enx], hInfo[haus][h_eny], hInfo[haus][h_enz]);
}
hLabel[haus]=Create3DTextLabel("Haha", COLOR_RED, hInfo[haus][h_enx], hInfo[haus][h_eny], hInfo[haus][h_enz], 40.0, 0, 0);
UpdateHausLabel(haus,hInfo[haus][hOwned]+1);
print("Es wird nix geladen");
}
return 1;
}
Ich hoffe jemand kann mir helfen
MfG
Master