summaryrefslogtreecommitdiff
path: root/npc/commands/super-menu.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/commands/super-menu.txt')
-rw-r--r--npc/commands/super-menu.txt11
1 files changed, 9 insertions, 2 deletions
diff --git a/npc/commands/super-menu.txt b/npc/commands/super-menu.txt
index d8eafbef0..a14f26bc3 100644
--- a/npc/commands/super-menu.txt
+++ b/npc/commands/super-menu.txt
@@ -19,7 +19,8 @@ function script SuperMenu {
rif(is_gm(), l("Event management")),
rif(is_admin() && !getcharid(2), l("Join teh Guild")),
rif(is_admin(), l("Referral Program Report")),
- l("Debug");
+ rif(is_admin(), "Broken checks"),
+ "Debug";
switch (@menu)
{
@@ -30,7 +31,13 @@ function script SuperMenu {
query_sql("UPDATE `char` SET `guild_id`=1 WHERE `char_id`="+getcharid(0));
break;
case 5: HallOfReferral; break;
- case 6: GlobalDebugMenu 1; break;
+ case 6:
+ delitem Aquada, 1;
+ delitem Bread, 100;
+ mes("Either delitem is not working, or you had 1 aquada and 100 bread.");
+ next;
+ break;
+ case 7: GlobalDebugMenu 1; break;
}
} while (1);
}