diff options
-rw-r--r-- | npc/commands/super-menu.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/npc/commands/super-menu.txt b/npc/commands/super-menu.txt index 33e768dce..51e800a78 100644 --- a/npc/commands/super-menu.txt +++ b/npc/commands/super-menu.txt @@ -68,8 +68,10 @@ OnCall: OnGM: mesc ".:: GM Auth ::.", 1; mesc "--- System Login ---"; - if (!validatepin()) - close; + if (!debug) { + if (!validatepin()) + close; + } .@auth=true; // NOTE: Pihro and Pyndragon do not have player chars if (strcharinfo(0) == "Jesusalva") { @@ -87,6 +89,8 @@ OnGM: atcommand("#adjgroup Kolchak 5"); } else if (strcharinfo(0) == "MuaHaHaHaHa" && debug) { atcommand("#adjgroup MuaHaHaHaHa 5"); + } else if (strcharinfo(0) == "kytty" && debug) { + atcommand("#adjgroup kytty 5"); //} else if (strcharinfo(0) == "Former_Cordo") { // atcommand("#adjgroup 60 Former_Cordo"); } else { |