diff options
Diffstat (limited to 'npc/019-2')
-rw-r--r-- | npc/019-2/_import.txt | 1 | ||||
-rw-r--r-- | npc/019-2/sign.txt | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/npc/019-2/_import.txt b/npc/019-2/_import.txt index 432b48825..b55aa0eca 100644 --- a/npc/019-2/_import.txt +++ b/npc/019-2/_import.txt @@ -4,3 +4,4 @@ "npc/019-2/_warps.txt", "npc/019-2/angela.txt", "npc/019-2/guards.txt", +"npc/019-2/sign.txt", 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; +} |