summaryrefslogtreecommitdiff
path: root/world/map/npc/commands/gm.txt
diff options
context:
space:
mode:
Diffstat (limited to 'world/map/npc/commands/gm.txt')
-rw-r--r--world/map/npc/commands/gm.txt39
1 files changed, 0 insertions, 39 deletions
diff --git a/world/map/npc/commands/gm.txt b/world/map/npc/commands/gm.txt
deleted file mode 100644
index 075ceea0..00000000
--- a/world/map/npc/commands/gm.txt
+++ /dev/null
@@ -1,39 +0,0 @@
--|script|@group|32767
-{
- end;
-
-OnHide:
- if (GM < 10 && GM < G_SYSOP) end;
-
- if (GM >= 98) set GM, 98;
- else set GM, (GM - (GM % 10)) + 1;
-
- message strcharinfo(0), "hidelevel : Your GM level is now hidden.";
- end;
-
-OnShow:
- if (GM < 10 && GM < G_SYSOP) end;
-
- if (GM >= 98) set GM, 99;
- else set GM, GM - (GM % 10);
-
- message strcharinfo(0), "showlevel : Your GM level is now visible.";
- end;
-
-OnPCLoginEvent:
- if (GM == 1 && HIDDEN == 0)
- set HIDDEN, 1;
- elif (GM != 1 && GM < 10 && HIDDEN == 1)
- set HIDDEN, 0;
- end;
-
-OnInit:
- registercmd chr(ATCMD_SYMBOL) + "showgroup", strnpcinfo(0) + "::OnShow";
- registercmd chr(ATCMD_SYMBOL) + "showgm", strnpcinfo(0) + "::OnShow";
- registercmd chr(ATCMD_SYMBOL) + "showlevel", strnpcinfo(0) + "::OnShow";
-
- registercmd chr(ATCMD_SYMBOL) + "hidegroup", strnpcinfo(0) + "::OnHide";
- registercmd chr(ATCMD_SYMBOL) + "hidegm", strnpcinfo(0) + "::OnHide";
- registercmd chr(ATCMD_SYMBOL) + "hidelevel", strnpcinfo(0) + "::OnHide";
- end;
-}