mirror of
https://github.com/tbamud/tbamud.git
synced 2025-12-21 17:50:13 +01:00
Added Zone Flags, Zone Levels Restrictions, and zlock, zunlock and areas commands
This commit is contained in:
parent
44f59ceff2
commit
40d89ca26b
20 changed files with 1037 additions and 389 deletions
|
|
@ -67,6 +67,19 @@ const char *room_bits[] = {
|
|||
"\n"
|
||||
};
|
||||
|
||||
/** Room flag descriptions. (ZONE_x)
|
||||
* @pre Must be in the same order as the defines in structs.h.
|
||||
* Must end array with a single newline. */
|
||||
const char *zone_bits[] = {
|
||||
"CLOSED",
|
||||
"NO_IMMORT",
|
||||
"QUEST",
|
||||
"GRID",
|
||||
"NOBUILD",
|
||||
"!ASTRAL",
|
||||
"\n"
|
||||
};
|
||||
|
||||
/** Exit bits for doors.
|
||||
* @pre Must be in the same order as the defines.
|
||||
* Must end array with a single newline. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue