| 110 | | #define Floating(x) (IS(x, TYPE_ROOM, "FLOATING")) /* 0x8 */ |
|---|
| 111 | | #define Abode(x) (IS(x, TYPE_ROOM, "ABODE")) /* 0x10 */ |
|---|
| 112 | | #define JumpOk(x) (IS(x, TYPE_ROOM, "JUMP_OK")) /* 0x20 */ |
|---|
| 113 | | #define NoTel(x) (IS(x, TYPE_ROOM, "NO_TEL")) /* 0x40 */ |
|---|
| 114 | | #define RoomListen(x) (IS(x, TYPE_ROOM, "LISTENER")) /* 0x100 */ |
|---|
| 115 | | #define RoomZTel(x) (IS(x, TYPE_ROOM, "Z_TEL")) /* 0x200 */ |
|---|
| 116 | | #define RoomInhearit(x) (IS(x, TYPE_ROOM, "LISTEN_PARENT")) /* 0x400 */ |
|---|
| 117 | | |
|---|
| 118 | | #define Uninspected(x) (IS(x, TYPE_ROOM, "UNINSPECTED")) /* 0x1000 */ |
|---|
| | 110 | #define Floating(x) (IS(x, TYPE_ROOM, "FLOATING")) /* 0x8 */ |
|---|
| | 111 | #define Abode(x) (IS(x, TYPE_ROOM, "ABODE")) /* 0x10 */ |
|---|
| | 112 | #define JumpOk(x) (IS(x, TYPE_ROOM, "JUMP_OK")) /* 0x20 */ |
|---|
| | 113 | #define NoTel(x) (IS(x, TYPE_ROOM, "NO_TEL")) /* 0x40 */ |
|---|
| | 114 | #define RoomListen(x) (IS(x, TYPE_ROOM, "LISTENER")) /* 0x100 */ |
|---|
| | 115 | #define RoomZTel(x) (IS(x, TYPE_ROOM, "Z_TEL")) /* 0x200 */ |
|---|
| | 116 | #define RoomInhearit(x) (IS(x, TYPE_ROOM, "LISTEN_PARENT")) /* 0x400 */ |
|---|
| | 117 | |
|---|
| | 118 | #define Uninspected(x) (IS(x, TYPE_ROOM, "UNINSPECTED")) /* 0x1000 */ |
|---|
| 245 | | dbref next; /**< pointer to next in contents/exits chain */ |
|---|
| 246 | | dbref parent; /**< pointer to parent object */ |
|---|
| 247 | | struct lock_list *locks; /**< list of locks set on the object */ |
|---|
| 248 | | dbref owner; /**< who controls this object */ |
|---|
| 249 | | dbref zone; /**< zone master object number */ |
|---|
| 250 | | int penn; /**< number of pennies object contains */ |
|---|
| 251 | | int warnings; /**< bitflags of warning types */ |
|---|
| 252 | | time_t creation_time; /**< Time/date of object creation */ |
|---|
| | 245 | dbref next; /**< pointer to next in contents/exits chain */ |
|---|
| | 246 | dbref parent; /**< pointer to parent object */ |
|---|
| | 247 | struct lock_list *locks; /**< list of locks set on the object */ |
|---|
| | 248 | dbref owner; /**< who controls this object */ |
|---|
| | 249 | dbref zone; /**< zone master object number */ |
|---|
| | 250 | int penn; /**< number of pennies object contains */ |
|---|
| | 251 | warn_type warnings; /**< bitflags of warning types */ |
|---|
| | 252 | time_t creation_time; /**< Time/date of object creation */ |
|---|
| 258 | | int attrcount; /**< Number of attribs on the object */ |
|---|
| 259 | | int type; /**< Object's type */ |
|---|
| 260 | | object_flag_type flags; /**< Pointer to flag bit array */ |
|---|
| 261 | | object_flag_type powers; /**< Pointer to power bit array */ |
|---|
| 262 | | ALIST *list; /**< list of attributes on the object */ |
|---|
| | 258 | int attrcount; /**< Number of attribs on the object */ |
|---|
| | 259 | int type; /**< Object's type */ |
|---|
| | 260 | object_flag_type flags; /**< Pointer to flag bit array */ |
|---|
| | 261 | object_flag_type powers; /**< Pointer to power bit array */ |
|---|
| | 262 | ALIST *list; /**< list of attributes on the object */ |
|---|
| 270 | | int total; /**< Total count */ |
|---|
| 271 | | int players; /**< Player count */ |
|---|
| 272 | | int rooms; /**< Room count */ |
|---|
| 273 | | int exits; /**< Exit count */ |
|---|
| 274 | | int things; /**< Thing count */ |
|---|
| 275 | | int garbage; /**< Garbage count */ |
|---|
| | 270 | int total; /**< Total count */ |
|---|
| | 271 | int players; /**< Player count */ |
|---|
| | 272 | int rooms; /**< Room count */ |
|---|
| | 273 | int exits; /**< Exit count */ |
|---|
| | 274 | int things; /**< Thing count */ |
|---|
| | 275 | int garbage; /**< Garbage count */ |
|---|
| 300 | | struct mail *next; /**< Pointer to next message */ |
|---|
| 301 | | struct mail *prev; /**< Pointer to previous message */ |
|---|
| 302 | | dbref to; /**< Recipient dbref */ |
|---|
| 303 | | dbref from; /**< Sender's dbref */ |
|---|
| 304 | | time_t from_ctime; /**< Sender's creation time */ |
|---|
| 305 | | chunk_reference_t msgid; /**< Message text, compressed */ |
|---|
| 306 | | time_t time; /**< Message date/time */ |
|---|
| 307 | | unsigned char *subject; /**< Message subject, compressed */ |
|---|
| 308 | | int read; /**< Bitflags of message status */ |
|---|
| | 302 | struct mail *next; /**< Pointer to next message */ |
|---|
| | 303 | struct mail *prev; /**< Pointer to previous message */ |
|---|
| | 304 | dbref to; /**< Recipient dbref */ |
|---|
| | 305 | dbref from; /**< Sender's dbref */ |
|---|
| | 306 | time_t from_ctime; /**< Sender's creation time */ |
|---|
| | 307 | chunk_reference_t msgid; /**< Message text, compressed */ |
|---|
| | 308 | time_t time; /**< Message date/time */ |
|---|
| | 309 | unsigned char *subject; /**< Message subject, compressed */ |
|---|
| | 310 | mail_flag read; /**< Bitflags of message status */ |
|---|