Hey,
Ich hab ein Problem beim Häuser laden, Ich bekomme 2 Errors:
E:\Desktop\GcR\Neuer Ordner\gamemodes\gf.pwn(13139) : error 047: array sizes do not match, or destination array is too smallE:\Desktop\GcR\Neuer Ordner\gamemodes\gf.pwn(13140) : error 047: array sizes do not match, or destination array is too small
enum hInfo{ //..... hOwner[256], hDiscription[256],//.....};
new HouseInfo[240][hInfo];
Und hier Das laden der Häuser:
HouseInfo[idx][hOwner] = mysql_GetString("houses","hOwner", "HouseID", val); HouseInfo[idx][hDiscription] = mysql_GetString("houses","hDiscription", "HouseID", val);
und mysql_GetString:
stock mysql_GetString(Table[], Field[], Where[], Is[]){ new query[128], Get[128]; mysql_real_escape_string(Table, Table); mysql_real_escape_string(Field, Field); mysql_real_escape_string(Where, Where); mysql_real_escape_string(Is, Is); format(query, 128, "SELECT `%s` FROM `%s` WHERE `%s` = '%s'", Field, Table, Where, Is); mysql_query(query); mysql_store_result(); mysql_fetch_row(Get); mysql_free_result(); return Get;}
Ich hoffe Ihr könnt mir helfen,
mfg