summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--db/constants.conf6
-rw-r--r--npc/003-0-1/statues.txt23
-rw-r--r--npc/functions/scoreboards.txt32
3 files changed, 58 insertions, 3 deletions
diff --git a/db/constants.conf b/db/constants.conf
index dae846015..6b017886a 100644
--- a/db/constants.conf
+++ b/db/constants.conf
@@ -3965,9 +3965,9 @@ constants_db: {
NPC_STATUE_GUARD: 169
NPC_STATUE_WIZARD: 170
NPC_STATUE_CONTRIBUTOR: 171
- NPC_STATUE_R172: 172
- NPC_STATUE_R173: 173
- NPC_STATUE_R174: 174
+ NPC_STATUE_2018: 172
+ NPC_STATUE_2019: 173
+ NPC_STATUE_2020: 174
NPC_STATUE_R175: 175
NPC_STATUE_R176: 176
NPC_STATUE_R177: 177
diff --git a/npc/003-0-1/statues.txt b/npc/003-0-1/statues.txt
index 19c81eb3c..c6db093e5 100644
--- a/npc/003-0-1/statues.txt
+++ b/npc/003-0-1/statues.txt
@@ -77,3 +77,26 @@ OnInit:
end;
}
+
+003-0-1,67,26,0 script #Statue2018 NPC_STATUE_2018,{
+
+ HallOf2018();
+ close;
+
+OnInit:
+ .sex = G_OTHER;
+ .distance = 4;
+ end;
+}
+
+003-0-1,68,25,0 script #Statue2019 NPC_STATUE_2019,{
+
+ HallOf2019();
+ close;
+
+OnInit:
+ .sex = G_OTHER;
+ .distance = 4;
+ end;
+}
+
diff --git a/npc/functions/scoreboards.txt b/npc/functions/scoreboards.txt
index 5ae709a76..3b82ebb25 100644
--- a/npc/functions/scoreboards.txt
+++ b/npc/functions/scoreboards.txt
@@ -191,3 +191,35 @@ function script HallOf2018 {
return;
}
+function script HallOf2019 {
+ mesc l("This schedule is subject to change without prior notice."), 1;
+ mesc l("Changes include but are not limited to festive events and dates."), 1;
+ next;
+ mes l(".:: TMW-2 Anniversary ::.");
+ mesc l("Scheduled: January 13rd");
+ mesc l("Anniversary marks the project birthdate. Do not mistake with TMW2 Day.");
+ next;
+ mes l(".:: Valentine Day ::.");
+ mesc l("Scheduled: February 12th - 15th");
+ mes "";
+ mes l(".:: TMW2 Day ::.");
+ mesc l("Scheduled: March 2nd");
+ mesc l("TMW2 Day marks the server birthdate. Do not mistake with TMW2 Anniversary.");
+ mes "";
+ mes l(".:: Easter 2019 ::.");
+ mesc l("Scheduled: April 17th - 24th");
+ mes "";
+ mes l(".:: Worker Day ::.");
+ mesc l("Scheduled: April 27th - May 3rd");
+ next;
+ mes l(".:: Chocolate Day ::.");
+ mesc l("Scheduled: July 7th");
+ mes "";
+ mes l(".:: Free Software Day ::.");
+ mesc l("Scheduled: September 9th");
+ mes "";
+ mes l(".:: Christmas 2019 ::.");
+ mesc l("Scheduled: December 19th - January 2nd");
+ return;
+}
+