diff options
author | mekolat <mekolat@users.noreply.github.com> | 2015-05-12 07:23:10 -0400 |
---|---|---|
committer | mekolat <mekolat@users.noreply.github.com> | 2015-05-12 07:23:10 -0400 |
commit | 1deaa280cb8e5252d0a01534bba5097d93c09064 (patch) | |
tree | cb0f6eb12f5d8434870a693f54e0bbca83c8f68d /world/map/npc/functions/announcements.txt | |
parent | e0834f290b1225bc3090e3d43f18ec1047868cf9 (diff) | |
download | serverdata-1deaa280cb8e5252d0a01534bba5097d93c09064.tar.gz serverdata-1deaa280cb8e5252d0a01534bba5097d93c09064.tar.bz2 serverdata-1deaa280cb8e5252d0a01534bba5097d93c09064.tar.xz serverdata-1deaa280cb8e5252d0a01534bba5097d93c09064.zip |
add motd config
Diffstat (limited to 'world/map/npc/functions/announcements.txt')
-rw-r--r-- | world/map/npc/functions/announcements.txt | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/world/map/npc/functions/announcements.txt b/world/map/npc/functions/announcements.txt index 35bd3e78..ce3d79ef 100644 --- a/world/map/npc/functions/announcements.txt +++ b/world/map/npc/functions/announcements.txt @@ -171,21 +171,6 @@ OnTimer3600000: goto L_Stop; } -function|script|DisplayMOTD -{ - if($@MOTD_Disabled || $@MOTD$[0] == "") goto L_Return; - goto L_MOTD; - -L_MOTD: - message strcharinfo(0), "##7Server : " + $@MOTD$[@motd_index]; - set @motd_index, @motd_index + 1; - if($@MOTD$[@motd_index] == "") goto L_Return; - goto L_MOTD; - -L_Return: - return; -} - function|script|getBroadcast { if (getmap() == "029-2" && getx() == 22 && gety() == 24) goto L_NewPlayer; |