diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-26 16:04:24 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-26 16:04:24 -0200 |
commit | 6ceb89991d4ace8b4545092803b640e88c58dcfa (patch) | |
tree | 6b69eb4a66b3eb940ea49a8dd81514eba68c4d5b /npc | |
parent | 97ffd48df5ec6701fdd25b79897003ffde8d02e5 (diff) | |
download | serverdata-6ceb89991d4ace8b4545092803b640e88c58dcfa.tar.gz serverdata-6ceb89991d4ace8b4545092803b640e88c58dcfa.tar.bz2 serverdata-6ceb89991d4ace8b4545092803b640e88c58dcfa.tar.xz serverdata-6ceb89991d4ace8b4545092803b640e88c58dcfa.zip |
I give up in adding the houses on Nivalis Port.
Diffstat (limited to 'npc')
-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; +} |