From d40e9ab167749ff8f388c90f67457b36c6216aa9 Mon Sep 17 00:00:00 2001 From: mekolat Date: Thu, 7 May 2015 14:08:51 -0400 Subject: death to the motd! --- world/map/npc/functions/announcements.txt | 14 ++++++++++++++ world/map/npc/functions/clear_vars.txt | 2 +- world/map/npc/functions/global_event_handler.txt | 2 ++ world/map/npc/functions/motd.txt.example | 11 +++++++++++ world/map/npc/scripts.conf | 2 ++ 5 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 world/map/npc/functions/announcements.txt create mode 100644 world/map/npc/functions/motd.txt.example (limited to 'world/map/npc') diff --git a/world/map/npc/functions/announcements.txt b/world/map/npc/functions/announcements.txt new file mode 100644 index 00000000..cd4e3b80 --- /dev/null +++ b/world/map/npc/functions/announcements.txt @@ -0,0 +1,14 @@ +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; +} diff --git a/world/map/npc/functions/clear_vars.txt b/world/map/npc/functions/clear_vars.txt index f26164df..76365f07 100644 --- a/world/map/npc/functions/clear_vars.txt +++ b/world/map/npc/functions/clear_vars.txt @@ -437,5 +437,5 @@ L_EventClear: // Variable was used in Voltain's script, was renamed and turned into a temporary variable set $state, 0; - end; + return; } diff --git a/world/map/npc/functions/global_event_handler.txt b/world/map/npc/functions/global_event_handler.txt index 92194086..04f89159 100644 --- a/world/map/npc/functions/global_event_handler.txt +++ b/world/map/npc/functions/global_event_handler.txt @@ -11,6 +11,7 @@ OnPCLoginEvent: set @login_event, 1; callfunc "getHeadStyles"; // converts class, color and hair callfunc "ClearVariables"; // removes / converts old variables + callfunc "DisplayMOTD"; // send the motd to the client, if enabled // add more here set @login_event, 2; end; @@ -30,5 +31,6 @@ OnPCDieEvent: OnInit: //fixme: change to OnInterIfInit callfunc "ClearGlobalVars"; + callfunc "MOTD"; // set the MOTD array end; } diff --git a/world/map/npc/functions/motd.txt.example b/world/map/npc/functions/motd.txt.example new file mode 100644 index 00000000..082d31d6 --- /dev/null +++ b/world/map/npc/functions/motd.txt.example @@ -0,0 +1,11 @@ +function|script|MOTD +{ + setarray $@MOTD$, + + "Welcome to The Mana World! (running on tmwAthena)", + "[@@http://ow.ly/MCesp|Website & Wiki@@] [@@http://ow.ly/MCeBR|Vote For GMs@@] [@@http://ow.ly/MCehc|Bug Reports@@] [@@http://ow.ly/MCe5W|Live Support@@]", + "Like us on [@@http://ow.ly/MCdZW|Facebook@@] [@@http://ow.ly/MCdTt|G+@@] [@@http://ow.ly/MCdJR|Youtube@@] [@@http://ow.ly/MCePp|Twitter@@]", + "You can report abuse by typing in chat: @wgm Player XYZ is abusing me"; + + return; +} diff --git a/world/map/npc/scripts.conf b/world/map/npc/scripts.conf index 1414f681..39ad7d92 100644 --- a/world/map/npc/scripts.conf +++ b/world/map/npc/scripts.conf @@ -28,6 +28,8 @@ npc: npc/functions/stat_reset.txt npc: npc/functions/quiz.txt npc: npc/functions/dynamic_menu.txt npc: npc/functions/DyeConfig.txt +npc: npc/functions/announcements.txt +npc: npc/functions/motd.txt // Item Functions npc: npc/items/magic_gm_top_hat.txt -- cgit v1.2.3-60-g2f50