diff options
Diffstat (limited to 'npc/commands')
-rw-r--r-- | npc/commands/super-menu.txt | 35 |
1 files changed, 26 insertions, 9 deletions
diff --git a/npc/commands/super-menu.txt b/npc/commands/super-menu.txt index 02ef5d6fa..a8509f77a 100644 --- a/npc/commands/super-menu.txt +++ b/npc/commands/super-menu.txt @@ -83,18 +83,35 @@ OnGM: .@auth=true; // NOTE: Pihro and Pyndragon do not have player chars // FIXME: Use account ID over char name (multi-server stable) - if (strcharinfo(0) == "Jesusalva") { + + // Administration + if (strcharinfo(0) == "Jesusalva") { // 0005 setgroupid(99); - } else if (strcharinfo(0) == "Saulc") { + } else if (strcharinfo(0) == "Saulc") { // 0004 setgroupid(99); - } else if (strcharinfo(0) == "seeds") { - setgroupid(60); - } else if (strcharinfo(0) == "Hector") { - setgroupid(60); - } else if (strcharinfo(0) == "demure") { + // Game Masters + } else if (strcharinfo(0) == "demure") { // 0777 setgroupid(80); - } else if (strcharinfo(0) == "jak1") { + } else if (strcharinfo(0) == "jak1") { // 0002 setgroupid(80); + // Game Officers + } else if (strcharinfo(0) == "seeds") { // 0409 + setgroupid(60); + } else if (strcharinfo(0) == "kytty") { // 0606 + setgroupid(60); + } else if (strcharinfo(0) == "cuoco") { // 0620 + setgroupid(60); + // Support Staff + } else if (strcharinfo(0) == "ThinkSome") { // 0817 + setgroupid((debug ? 5 : 2)); + } else if (strcharinfo(0) == "Meway") { // 1078 + setgroupid((debug ? 5 : 2)); + } else if (strcharinfo(0) == "HoraK") { // 0008 + setgroupid((debug ? 5 : 2)); + } else if (strcharinfo(0) == "Ledmitz") { // 0585 + setgroupid((debug ? 5 : 2)); + } else if (strcharinfo(0) == "Reid") { // 0741 + setgroupid((debug ? 5 : 2)); // Test Server grants } else if (debug && getgroupid() == 1) { setgroupid(5); @@ -122,7 +139,7 @@ OnGMOff: OnInit: bindatcmd "super", "@super::OnCall", 80, 99, 0; - bindatcmd "gmoff", "@super::OnGMOff", 5, 100, 1; + bindatcmd "gmoff", "@super::OnGMOff", 2, 100, 1; bindatcmd "gm", "@super::OnGM", 0, 100, 1; // Special servers |