public LoadBizz()
{
new PropertyString[256];
bussines = cache_num_rows();
for(new i = 1; i <= bussines; i++)
{
new b = i - 1;
BizzInfo[i][bID] = cache_get_value_name_int(b, "ID");
BizzInfo[i][bOwned] = cache_get_value_name_int(b, "Owned");
cache_get_value_name(b, "Owner", BizzInfo[i][bOwner], SQL, 130);
cache_get_value_name(b, "Message", BizzInfo[i][bMessage], SQL, 130);
BizzInfo[i][bEntranceX] = cache_get_value_name_float(b, "EntranceX");
BizzInfo[i][bEntranceY] = cache_get_value_name_float(b, "EntranceY");
BizzInfo[i][bEntranceZ] = cache_get_value_name_float(b, "EntranceZ");
BizzInfo[i][bExitX] = cache_get_value_name_float(b, "ExitX");
BizzInfo[i][bExitY] = cache_get_value_name_float(b, "ExitY");
BizzInfo[i][bExitZ] = cache_get_value_name_float(b, "ExitZ");
BizzInfo[i][bLevelNeeded] = cache_get_value_name_int(b, "LevelNeeded");
BizzInfo[i][bBuyPrice] = cache_get_value_name_int(b, "BuyPrice");
BizzInfo[i][bEntranceCost] = cache_get_value_name_int(b, "EntranceCost");
BizzInfo[i][bTill] = cache_get_value_name_int(b, "Till");
BizzInfo[i][bLocked] = cache_get_value_name_int(b, "Locked");
BizzInfo[i][bInterior] = cache_get_value_name_int(b, "Interior");
BizzInfo[i][bVirtual] = cache_get_value_name_int(b, "Virtual");
BizzInfo[i][bSbiz] = cache_get_value_name_int(b, "Sbiz");
BizzInfo[i][bType] = cache_get_value_name_int(b, "Type");
else if(IsPlayerInRangeOfPoint(playerid,25.0,BizzInfo[49][bEntranceX],BizzInfo[49][bEntranceY],BizzInfo[49][bEntranceZ]))
{
BizzInfo[49][bTill] += FillUp;
mysql_format(SQL,str,sizeof(str),"UPDATE `bizz` SET `Till`='%d' WHERE `ID`='49'",BizzInfo[49][bTill]);
mysql_tquery(SQL,str,"","");
}
warning 213: tag mismatch: expected tag none ("_"), but found "MySQL"
|
The version of a_mysql.inc is not R40 or above. Update plugin and include files again.
https://github.com/pBlueG/SA-MP-MySQL/releases I also noticed the iteration variable `i` starting from value 1. Why? Array indexes start from 0. A player name can be up to 24 characters, 130 is overkill. |
warning 213: tag mismatch: expected tag none ("_"), but found "MySQL"
new SQL;
new MySQL: SQL;