mirror of
https://github.com/tbamud/tbamud.git
synced 2026-01-18 15:15:28 +01:00
New house system, ASCII hcontrol file and hsedit house OLC
This commit is contained in:
parent
74c3d208b6
commit
3fa8ebe048
16 changed files with 2647 additions and 681 deletions
|
|
@ -569,6 +569,31 @@ const char *container_bits[] = {
|
|||
"\n",
|
||||
};
|
||||
|
||||
/** Flag descriptions for HOUSE_ flags
|
||||
* @pre Must be in the same order as the defines.
|
||||
* Must end array with a single newline. */
|
||||
const char *house_bits[] = {
|
||||
"NO_GUEST",
|
||||
"FREE",
|
||||
"NO_IMM",
|
||||
"IMP_ONLY",
|
||||
"RENTFREE",
|
||||
"SAVE_!RENT",
|
||||
"NO_SAVE",
|
||||
"NO_SPEC",
|
||||
"\n"
|
||||
};
|
||||
|
||||
/** House mode types for HOUSE_ mode values
|
||||
* @pre Must be in the same order as the defines.
|
||||
* Must end array with a single newline. */
|
||||
const char *house_types[] = {
|
||||
"PLAYER_OWNED",
|
||||
"IMM_OWNED",
|
||||
"CLAN_OWNED",
|
||||
"\n"
|
||||
};
|
||||
|
||||
/** Describes the liquid description.
|
||||
* @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