19.01.2016, 20:03
Код:
cache_get_field_content(i, "Owner");
cache_get_field_content parameters :
(row, const field_name[], destination[], connectionHandle = 1, max_len = sizeof(destination))
WTF
cache_get_field_content(i, "Owner");
|
Can you show some more code?
A few lines above this one and a few below it as well? |
for(new i; i<47; i++)
{
HouseInfo[houseid][ID] = cache_get_field_content_int(i, "HouseID");
HouseInfo[houseid][hEnterX] = cache_get_field_content_float(i, "EnterX");
HouseInfo[houseid][hEnterY] = cache_get_field_content_float(i, "EnterY");
HouseInfo[houseid][hEnterZ] = cache_get_field_content_float(i, "EnterZ");
HouseInfo[houseid][hExitX] = cache_get_field_content_float(i, "ExitX");
HouseInfo[houseid][hExitY] = cache_get_field_content_float(i, "ExitY");
HouseInfo[houseid][hExitZ] = cache_get_field_content_float(i, "ExitZ");
HouseInfo[houseid][hInsideInt] = cache_get_field_content_int(i, "InsideInt");
HouseInfo[houseid][hInsideVir] = cache_get_field_content_int(i, "InsideVir");
HouseInfo[houseid][hOutsideInt] = cache_get_field_content_int(i, "OutsideInt");
HouseInfo[houseid][hOutsideVir] = cache_get_field_content_int(i, "OutsideVir");
HouseInfo[houseid][hOwned] = cache_get_field_content_int(i, "Owned");
HouseInfo[houseid][hLocked] = cache_get_field_content_int(i, "Hlocked");
HouseInfo[houseid][hInventory] = cache_get_field_content_int(i, "HouseInventory");
HouseInfo[houseid][hSecurity] = cache_get_field_content_int(i, "HouseSecurity");
HouseInfo[houseid][hPrice] = cache_get_field_content_int(i, "Price");
HouseInfo[houseid][hType] = cache_get_field_content_int(i, "HouseType");
HouseInfo[houseid][hQuality] = cache_get_field_content_int(i, "HouseQuality");
cache_get_field_content(i, "Owner", HouseInfo[houseid][Owner]);
}
HouseInfo[houseid][Owner] = cache_get_field_content(i, "Owner");
new HouseOwner[1024]; cache_get_field_content(i, "Owner", HouseOwner); HouseInfo[houseid][Owner] = HouseOwner;
Owner[MAX_PLAYER_NAME],
|
it's impossible to get an undefined symbol error of something between brackets and defined as a string, for me it seems that the error is from the houseinfo array, check its enum and make sure that you have defined "Owner" variable in that enum as a string, be cause you are using cache_get_field_content function which the strings get retrieved from the db by, so make sure it's:
Код:
Owner[MAX_PLAYER_NAME], plus, remember that variables' value gets edited by formatting it, '=' operator isn't the way to do that. |
