summaryrefslogtreecommitdiff
path: root/npc/019-2/sign.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/019-2/sign.txt')
-rw-r--r--npc/019-2/sign.txt23
1 files changed, 23 insertions, 0 deletions
diff --git a/npc/019-2/sign.txt b/npc/019-2/sign.txt
new file mode 100644
index 000000000..eb663bf74
--- /dev/null
+++ b/npc/019-2/sign.txt
@@ -0,0 +1,23 @@
+// TMW2 Script.
+// Author:
+// Jesusalva
+// Description:
+// Random Sign nobody bothers reading.
+// I just got lazy. Maybe I'll sell these two houses for 1000000 GP each... :drolls:
+
+019-2,95,108,0 script Sign#019295108 NPC_NO_SPRITE,{
+ if (!$NIVALIS_LIBDATE) {
+ mesc l("WARNING: Nivalis is currently under siege from the Monster King himself."), 3;
+ next;
+ mesc l("The Alliance Advanced Outposts are closed for maintenance. Group in front of the town entrance!");
+ } else {
+ mesc l("Welcome to Nivalis, the frozen town.");
+ mesc l("The Alliance Advanced Outposts have been abandoned and locked after the Liberation day.");
+ }
+ close;
+
+OnInit:
+ .sex = G_OTHER;
+ .distance = 3;
+ end;
+}