/* Flags: * 1 - obey immunity * 2 - allow yourself * 4 - must be alive * 8 - can't be bot */ #define CMDTARGET_OBEY_IMMUNITY (1<<0) #define CMDTARGET_ALLOW_SELF (1<<1) #define CMDTARGET_ONLY_ALIVE (1<<2) #define CMDTARGET_NO_BOTS (1<<3)