30.12.2012, 10:06
PHP код:
enum hInfo//Naming the enum
{
hOwner[24],//This will be where it will store the house owner name, in a 24 bit size array.
hOwned,//To store if the house is owned or not.
hLevel,
hLocked,
hPrice,//How much the house will cost.
Float:XPos,//Float X position of the checkpoint
Float:YPos,//Self explanatory.
Float:ZPos,//Self explanatory.
VirtualWorld,//The checkpoints virtual world.
Float:hEntranceX,
Float:hEntranceY,
Float:hEntranceZ,
Float:hEntranceA,
Float:hExitX,
Float:hExitY,
Float:hExitZ,
Float:hExitA,
hInt,
hWorld,
hInsideInt,
hInsideWorld,
hInsideIcon,
hOutsideIcon
}
new HouseInfo[MAX_HOUSES][hInfo];//This is the var where we will read the house info.