Array out of bounds?
#1

../filterscripts/HouseDialogs.pwn(149) : error 032: array index out of bounds (variable "HouseInfo")

anyhelp code.
Код:
#define MAX_FURNITURE 300 //Change this if you want to allow players to have more furniture

enum hInfo
{
	Owned,
	OwnerName[124],
	Rented,
	Type,
	RenterName[124],
	Price,
	RentPrice,
	Locked,
	Int,
	Vw,
	Float:HouseEnterPos[3],
	Float:HouseIntPos[3],
	//Garage will add this in when the vehicle ownership system is done.
	//Furniture
	ObjectID[MAX_FURNITURE],
	Float:ObjectPosX[MAX_FURNITURE],
	Float:ObjectPosZ[MAX_FURNITURE],
	Float:ObjectPosY[MAX_FURNITURE],
	Float:ObjectPosRX[MAX_FURNITURE],
	Float:ObjectPosRY[MAX_FURNITURE],
	Float:ObjectPosRZ[MAX_FURNITURE],
	ObjectVW[MAX_FURNITURE],
	ObjectInt[MAX_FURNITURE]
}
new HouseInfo[MAX_HOUSES][hInfo];

//line error is on
if(HouseInfo[i][ObjectID][MAX_FURNITURE] != 0) return SendClientMessage(playerid, COLOR_RED, "Maxed Furniture Objects planted please remove some!");
Reply
#2

fixed
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)