--- deliantra/server/include/network.h 2007/07/01 05:00:18 1.14 +++ deliantra/server/include/network.h 2007/07/28 12:02:58 1.15 @@ -176,13 +176,17 @@ #define NDI_TAN 12 /* Khaki */ #define NDI_MAX_COLOR 12 /* Last value in */ -#define NDI_COLOR_MASK 0xff /* Gives lots of room for expansion - we are */ +#define NDI_COLOR_MASK 0x1f /* Gives lots of room for expansion - we are */ /* using an int anyways, so we have the space */ /* to still do all the flags */ +#define NDI_REPLY 0x20 // is a direct reply to a user command +#define NDI_NOCREATE 0x40 // do not create a tba if one doesn't exist +#define NDI_CLIENT_MASK 0x7f // what the client is allowed to see -#define NDI_UNIQUE 0x100 /* Print this out immediately, don't buffer */ -#define NDI_ALL 0x200 /* Inform all players of this message */ +#define NDI_UNIQUE 0x1000 /* Print this out immediately, don't buffer */ +#define NDI_ALL 0x2000 /* Inform all players of this message */ +#define NDI_DEF 0x4000 // ignore colour for channel protocol /* Flags for the item command */ enum {a_none, a_readied, a_wielded, a_worn, a_active, a_applied};