mirror of
https://github.com/tbamud/tbamud.git
synced 2026-01-17 22:55:28 +01:00
MAJOR UPDATE: Admin Levels split from Mortal Levels
This commit is contained in:
parent
2b30509371
commit
dcba9d6441
77 changed files with 2882 additions and 2067 deletions
|
|
@ -43,6 +43,82 @@ const char *dirs[] =
|
|||
"\n"
|
||||
};
|
||||
|
||||
/** Administrative level names
|
||||
* @pre Must be in the same order as the ADMLVL_ defines.
|
||||
* Must end array with a single newline. */
|
||||
const char *admin_level_names[ADMLVL_IMPL + 2] = {
|
||||
"Mortal", // ADMLVL_NONE
|
||||
"Immortal", // ADMLVL_IMMORTAL
|
||||
"God", // ADMLVL_GOD
|
||||
"Great God", // ADMLVL_GRGOD
|
||||
"Implementor", // ADMLVL_IMPL
|
||||
"\n",
|
||||
};
|
||||
|
||||
/** Administrative flag short names
|
||||
* @pre Must be in the same order as the ADMIN_ defines.
|
||||
* Must end array with a single newline. */
|
||||
const char *admin_flag_names[] = {
|
||||
"TellAll",
|
||||
"SeeInventory",
|
||||
"SeeSecret",
|
||||
"KnowWeather",
|
||||
"FullWhere",
|
||||
"Money",
|
||||
"EatAnything",
|
||||
"NoPoison",
|
||||
"WalkAnywhere",
|
||||
"NoKeys",
|
||||
"InstantKill",
|
||||
"NoSteal",
|
||||
"TransAll",
|
||||
"SwitchMortal",
|
||||
"ForceMass",
|
||||
"AllHouses",
|
||||
"NoDamage",
|
||||
"AllShops",
|
||||
"CEDIT",
|
||||
"Build",
|
||||
"AdvBuild",
|
||||
"Poof",
|
||||
"Admin",
|
||||
"SetQP",
|
||||
"AdvancedIBT",
|
||||
"\n"
|
||||
};
|
||||
|
||||
/** Administrative flag descriptions
|
||||
* @pre Must be in the same order as the ADMIN_ defines.
|
||||
* Must end array with a single newline. */
|
||||
const char *admin_flags[] = {
|
||||
"You may use 'page all'",
|
||||
"You can see other players inventories",
|
||||
"You may see secret doors",
|
||||
"You may know weather data",
|
||||
"You know fully where things are",
|
||||
"You do not require money",
|
||||
"You can eat anything",
|
||||
"You cannot be poisoned",
|
||||
"You can walk anywhere",
|
||||
"You do not require keys",
|
||||
"You have the touch of death",
|
||||
"You cannot be stolen from",
|
||||
"You may use 'trans all'",
|
||||
"You can use 'switch'",
|
||||
"You may use 'force all'",
|
||||
"You may enter any house",
|
||||
"You do not take damage",
|
||||
"You may use any shop",
|
||||
"You may use cedit",
|
||||
"You may use basic OLC tools",
|
||||
"You may use advanced OLC tools",
|
||||
"You may use goto and set poofs",
|
||||
"You may set admin privs",
|
||||
"You can give and remove qp",
|
||||
"You can use advanced IBT commands",
|
||||
"\n"
|
||||
};
|
||||
|
||||
/** Room flag descriptions.
|
||||
* @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