MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | // MorgenGrauen MUDlib |
| 2 | // |
| 3 | // player/can.h -- various abitlities |
| 4 | // |
| 5 | // $Id: can.h 7924 2011-09-26 10:02:26Z Zesstra $ |
| 6 | |
| 7 | #ifndef __CAN_H__ |
| 8 | #define __CAN_H__ |
| 9 | |
| 10 | // properties |
| 11 | #define P_CAN_FLAGS "can_flags" |
| 12 | |
| 13 | // bitmasks |
| 14 | #define CAN_EMOTE 0x01 |
| 15 | #define CAN_ECHO 0x02 |
| 16 | #define CAN_REMOTE 0x04 |
| 17 | #define CAN_PRESAY 0x08 |
| 18 | #define CAN_REPORT_SP 0x10 // Statusupdates fuer KP |
| 19 | #define CAN_REPORT_POISON 0x20 // Statusupdates fuer Gift |
| 20 | #define CAN_REPORT_WIMPY 0x40 // Statusupdates fuer Vorsicht |
| 21 | #define CAN_REPORT_WIMPY_DIR 0x80 // Statusupdates fuer Vorsichtrichtung |
| 22 | |
| 23 | #endif // __CAN_H__ |
| 24 | |
| 25 | #ifdef NEED_PROTOTYPES |
| 26 | |
| 27 | #ifndef __CAN_H_PROTO__ |
| 28 | #define __CAN_H_PROTO__ |
| 29 | |
| 30 | // no prototypes |
| 31 | |
| 32 | #endif // __CAN_H_PROTO__ |
| 33 | |
| 34 | #endif // NEED_PROTOYPES |