Index problem
#1

Okay so Im getting this error. I probably overlooked something...
PHP код:
[03:01:41] [debugRun time error 4"Array index out of bounds"
[03:01:41] [debug]  Accessing element at index 4996 past array upper bound 999
[03:01:41] [debugAMX backtrace:
[
03:01:41] [debug#0 001280b8 in ?? (0, 9015868, 0) from LeetHackz.amx
[03:01:41] [debug#1 00044d30 in ?? (0, 9015812, 0) from LeetHackz.amx
[03:01:41] [debug#2 00046bec in ?? (0, 9015812, 0, 0, 0, 8, 0, 9015812, 0, 0, ... <1073741813 arguments>) from LeetHackz.amx
[03:01:41] [debug#3 000096c0 in public OnPlayerCommandText (0, 9015812) from LeetHackz.amx 
PHP код:
CMD:buyfurniture(playerid,params[]) {
    
#pragma unused params
    
new fid;
    if(
sscanf(params,"i",fid)) return SendClientMessage(playerid,COLOR_RED,"Usage: /buyfurniture [ID]");
    if(
GetPlayerCash(playerid) < GetFurniturePrice(fid)) return SendClientMessage(playerid,COLOR_RED,"Not enough money");
    if(
AccInfo[playerid][HouseOwner] == 0) return SendClientMessage(playerid,COLOR_RED,"You dont own a house");
    for(new 
0MAX_HOUSES;x++) {
        if(
HouseInfo[x][Owned] == 1) {
            if(
AccInfo[playerid][HouseOwner] == HouseInfo[x][HID]) {
                
                
HouseInfo[x][HouseFurniture] += 1;
                
                new 
furnitureid CreateDynamicObject(fidHouseInfo[x][ExitX],HouseInfo[x][ExitY],HouseInfo[x][ExitZ], 0,0,0HouseInfo[x][VirtualWorld],HouseInfo[x][Interior]);
                
FurnitureData[furnitureid][FurnitureSlot] = HouseInfo[x][HouseFurniture];
                
FurnitureData[furnitureid][FurnitureMaster] = x;
                
FurnitureData[furnitureid][FurnitureModel] = fid;
                
FurnitureData[furnitureid][FurnitureX] = HouseInfo[x][ExitX];
                
FurnitureData[furnitureid][FurnitureY] = HouseInfo[x][ExitY];
                
FurnitureData[furnitureid][FurnitureZ] = HouseInfo[x][ExitZ];
                
FurnitureData[furnitureid][FurnitureInterior] = HouseInfo[x][Interior];
                
FurnitureData[furnitureid][FurnitureWorld] = HouseInfo[x][VirtualWorld];
                
                new 
query[512];
                
mysql_format(mysqlquerysizeof(query),"INSERT INTO `furniture` (`Master`,`Slot`,`Model`,`X`,`Y`,`Z`,`RX`,`RY`,`RZ`,`Interior`,`World`) VALUES ('%i','%i','%i','%f','%f','%f','%f','%f','%f','%i','%i')",\
                
HouseInfo[x][HID],HouseInfo[x][HouseFurniture],fid,HouseInfo[x][ExitX],HouseInfo[x][ExitY],HouseInfo[x][ExitZ],0.0,0.0,0.0,HouseInfo[x][Interior],HouseInfo[x][VirtualWorld]);
                
mysql_tquery(mysqlquery"OnFurnitureCreation""i"furnitureid);
                print(
query);
                
            }
        }
    }
    return 
true;

Reply


Messages In This Thread
Index problem - by TwinkiDaBoss - 18.12.2015, 01:03
Re: Index problem - by zPain - 18.12.2015, 01:42
Re: Index problem - by TwinkiDaBoss - 18.12.2015, 01:46
Re: Index problem - by zPain - 18.12.2015, 02:21
Re: Index problem - by TwinkiDaBoss - 18.12.2015, 03:17
Re: Index problem - by zPain - 18.12.2015, 04:17
Re: Index problem - by vassilis - 18.12.2015, 07:46
Re: Index problem - by TwinkiDaBoss - 18.12.2015, 08:00

Forum Jump:


Users browsing this thread: 4 Guest(s)