diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-02-10 01:10:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-02-10 01:10:36 -0300 |
commit | fc509be76736d39f82fe578b4f4ba5fd231b006b (patch) | |
tree | 794734f1d72432690ac053760b3ee77276ae90a9 /npc/commands | |
parent | c377b59526849491085bc544d1e79154c5fef930 (diff) | |
download | serverdata-fc509be76736d39f82fe578b4f4ba5fd231b006b.tar.gz serverdata-fc509be76736d39f82fe578b4f4ba5fd231b006b.tar.bz2 serverdata-fc509be76736d39f82fe578b4f4ba5fd231b006b.tar.xz serverdata-fc509be76736d39f82fe578b4f4ba5fd231b006b.zip |
Now that staff badges are in, update @gm credentials and document Account ID
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 |