summaryrefslogtreecommitdiff
path: root/world/map/npc/functions
diff options
context:
space:
mode:
authormekolat <mekolat@users.noreply.github.com>2015-05-12 07:35:32 -0400
committermekolat <mekolat@users.noreply.github.com>2015-05-12 07:35:32 -0400
commit5a2da4becdc11df9e6400218ed2a449611ad85af (patch)
treec0407a196fd095ef5c8bfa2e49420a9759243188 /world/map/npc/functions
parent1deaa280cb8e5252d0a01534bba5097d93c09064 (diff)
downloadserverdata-5a2da4becdc11df9e6400218ed2a449611ad85af.tar.gz
serverdata-5a2da4becdc11df9e6400218ed2a449611ad85af.tar.bz2
serverdata-5a2da4becdc11df9e6400218ed2a449611ad85af.tar.xz
serverdata-5a2da4becdc11df9e6400218ed2a449611ad85af.zip
request from @MadCamel
Diffstat (limited to 'world/map/npc/functions')
-rw-r--r--world/map/npc/functions/announcements.txt1
-rw-r--r--world/map/npc/functions/motdconfig.txt1
-rw-r--r--world/map/npc/functions/superdebug.txt3
3 files changed, 5 insertions, 0 deletions
diff --git a/world/map/npc/functions/announcements.txt b/world/map/npc/functions/announcements.txt
index ce3d79ef..dd56eadc 100644
--- a/world/map/npc/functions/announcements.txt
+++ b/world/map/npc/functions/announcements.txt
@@ -128,6 +128,7 @@ L_StartBroadcast:
set $@GMSA_CURRENT_TICK, 0;
initnpctimer "Stone Board";
mes "Done.";
+ gmlog strcharinfo(0) + " modified the scheduled broadcast.";
goto L_Close;
L_Abort:
diff --git a/world/map/npc/functions/motdconfig.txt b/world/map/npc/functions/motdconfig.txt
index f2541ea6..9ad2b43f 100644
--- a/world/map/npc/functions/motdconfig.txt
+++ b/world/map/npc/functions/motdconfig.txt
@@ -12,6 +12,7 @@ function|script|MOTDConfig
"toggle|Toggle MOTD", L_Toggle;
L_Toggle:
+ gmlog strcharinfo(0) + " enabled or disabled the MOTD.";
set $@MOTD_Disabled, !$@MOTD_Disabled;
close2;
return;
diff --git a/world/map/npc/functions/superdebug.txt b/world/map/npc/functions/superdebug.txt
index 6ca56b88..b9f067de 100644
--- a/world/map/npc/functions/superdebug.txt
+++ b/world/map/npc/functions/superdebug.txt
@@ -28,15 +28,18 @@ L_Holiday:
"Halloween.", L_HalloweenDebug;
L_XmasDebug:
+ gmlog strcharinfo(0) + " accessed the Xmas debug.";
callfunc "XmasDebug";
end;
L_HalloweenDebug:
+ gmlog strcharinfo(0) + " accessed the Halloween debug.";
callfunc "HalloweenDebug";
end;
L_Event:
if(getgmlevel() < 60) goto L_GM;
+ gmlog strcharinfo(0) + " accessed the GM event debug.";
callfunc "GmDebug";
close;