diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-01-26 02:49:21 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-01-26 02:49:21 -0300 |
commit | b5e3ca971ad667832780a0aa69f3bbd6c2ab7773 (patch) | |
tree | 17d1e6461b0d00db6783b97a5beab3f5c7cbc666 /npc/commands | |
parent | e9d7ca8b27bce15975677d7219814954b994b932 (diff) | |
download | serverdata-b5e3ca971ad667832780a0aa69f3bbd6c2ab7773.tar.gz serverdata-b5e3ca971ad667832780a0aa69f3bbd6c2ab7773.tar.bz2 serverdata-b5e3ca971ad667832780a0aa69f3bbd6c2ab7773.tar.xz serverdata-b5e3ca971ad667832780a0aa69f3bbd6c2ab7773.zip |
Start moving all non-debug functionality from Game Admin (99) to Game Master (80)
- Aeros Strange Coin Drop Rate
- Aeros Portals (Without Event Master)
- Quirin Arena: Waves (GM 80) & Autostart (GM 60 Officer)
- Candor Siege
- Kage Flag Game Manual Controls
- Hurnscald Liberation Day Control Panel
- Message Of The Day
Game Master is the one to whom the whole game was entrusted to.
In all ML years, only Demure, Saulc and Crazyfefe ever attained this position.
Therefore: It is fine to have them with full event control.
Diffstat (limited to 'npc/commands')
-rw-r--r-- | npc/commands/motd.txt | 2 | ||||
-rw-r--r-- | npc/commands/super-menu.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/commands/motd.txt b/npc/commands/motd.txt index b150b798e..dcdb01460 100644 --- a/npc/commands/motd.txt +++ b/npc/commands/motd.txt @@ -147,7 +147,7 @@ function script MOTDConfig { end; OnCall: - if (!is_admin()) { + if (!is_master()) { end; } diff --git a/npc/commands/super-menu.txt b/npc/commands/super-menu.txt index 824ce5384..8a9cb2dd2 100644 --- a/npc/commands/super-menu.txt +++ b/npc/commands/super-menu.txt @@ -10,7 +10,7 @@ function script SuperMenu { next; select rif(is_gm(), l("Scheduled broadcasts")), - rif(is_admin(), l("MOTD")), + rif(is_master(), l("MOTD")), rif(is_gm(), l("Event management")), rif(is_admin() && !getcharid(2), l("Join teh Guild")), rif(is_staff(), l("Referral Program Report")), |