summaryrefslogtreecommitdiff
path: root/npc/commands
diff options
context:
space:
mode:
Diffstat (limited to 'npc/commands')
-rw-r--r--npc/commands/super-menu.txt14
1 files changed, 6 insertions, 8 deletions
diff --git a/npc/commands/super-menu.txt b/npc/commands/super-menu.txt
index 9bb3b9365..cc82a6ad1 100644
--- a/npc/commands/super-menu.txt
+++ b/npc/commands/super-menu.txt
@@ -1,12 +1,6 @@
function script SuperMenu {
do
{
- if (debug && !is_gm())
- {
- GlobalDebugMenu;
- return;
- }
-
clear;
setnpcdialogtitle l("Super Menu");
mes l("This menu contains all options available to you, based on your access privileges.");
@@ -20,7 +14,9 @@ function script SuperMenu {
rif(is_admin() && !getcharid(2), l("Join teh Guild")),
rif(is_admin(), l("Referral Program Report")),
rif(is_admin(), "Broken checks"),
- "Debug";
+ rif(is_gm(), l("Seasonal Drop Control")),
+ "Debug",
+ "Quit";
switch (@menu)
{
@@ -37,7 +33,9 @@ function script SuperMenu {
mes("Either delitem is not working, or you had 1 aquada and 100 bread.");
next;
break;
- case 7: GlobalDebugMenu 1; break;
+ case 7: SeasonControl; break;
+ case 8: GlobalDebugMenu 1; break;
+ default: close; break;
}
} while (1);
}