diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-11-02 10:25:37 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-11-02 10:25:37 -0300 |
commit | 91da2fbb32c5e8aa7a531620de5a89427c7d50bd (patch) | |
tree | 3cc46a9744860f957f648c97a229df1716ab8105 /npc/019-1/sign.txt | |
parent | 1f81b1a964e89a81a27d06f8722026b3498ceeee (diff) | |
download | serverdata-91da2fbb32c5e8aa7a531620de5a89427c7d50bd.tar.gz serverdata-91da2fbb32c5e8aa7a531620de5a89427c7d50bd.tar.bz2 serverdata-91da2fbb32c5e8aa7a531620de5a89427c7d50bd.tar.xz serverdata-91da2fbb32c5e8aa7a531620de5a89427c7d50bd.zip |
Crossover
Diffstat (limited to 'npc/019-1/sign.txt')
-rw-r--r-- | npc/019-1/sign.txt | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/npc/019-1/sign.txt b/npc/019-1/sign.txt index b4a494204..3503acf5e 100644 --- a/npc/019-1/sign.txt +++ b/npc/019-1/sign.txt @@ -5,9 +5,17 @@ // Random Sign nobody bothers reading. 019-1,67,30,0 script Sign#01916730 NPC_SWORDS_SIGN,{ - mesc l("WARNING: Nivalis is currently under siege from the Monster King himself."), 3; - next; - mesc l("We've built this blockade to prevent this area from being overrun with monsters, but who knows for how long this will last."); + if (!$NIVALIS_LIBDATE) { + mesc l("WARNING: Nivalis is currently under siege from the Monster King himself."), 3; + next; + mesc l("We've built this blockade to prevent this area from being overrun with monsters, but who knows for how long this will last."); + } else { + mesc l("Do you want to cross Nivalis city to the other side?"); + if (askyesno() == ASK_YES) { + warp "019-2", 43, 55; + closedialog; + } + } close; OnInit: |