02.02.2013, 20:50
Tag mismatch means you data type(s) are wrong. In your code, you are trying to assign a float to int.
Fix: convert your position integers to floats
Fix: convert your position integers to floats
pawn Код:
enum HouseStatus
{
HouseLevel,
Owner,
Interior,
VirtualWorld,
Float:PosX,
Float:PosY,
Float:PosZ,
Float:IntX,
Float:IntY,
Float:IntZ,
Price,
OnSale
};