18.08.2017, 09:34
Cough up the fact that you're using retarded macros. It's reccomended that you use enums.#
EQUALS
For the hInfo enum, you're missing the House Interior X, Y and Z, along with the house ID, as a bare minimum.
PHP код:
#define HOUSE_MENU 2013
#define HOUSE_LEVEL 2014
#define HOUSE_INTERIOR 2015
PHP код:
enum
{
HOUSE_MENU,
HOUSE_LEVEL,
HOUSE_INTERIOR
}
PHP код:
enum hInfo {
hID, //house id
hLevel,
Float:hEX, //house exterior X
Float:hEY,
Float:hEZ,
Float:hIX, //house interior x
Float:hIY,
Float:hIZ,
hInterior
};