diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-11 02:11:51 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-11 02:11:51 -0300 |
commit | a72f47b8cc07c49ebea89c6535cd53754bca96cf (patch) | |
tree | 53190e0a5018e6a2157b4a3f393860df818ac628 | |
parent | c6094019ef774ced4ef2ba50e6cf6a0aead03857 (diff) | |
download | serverdata-a72f47b8cc07c49ebea89c6535cd53754bca96cf.tar.gz serverdata-a72f47b8cc07c49ebea89c6535cd53754bca96cf.tar.bz2 serverdata-a72f47b8cc07c49ebea89c6535cd53754bca96cf.tar.xz serverdata-a72f47b8cc07c49ebea89c6535cd53754bca96cf.zip |
Additional signs to 017-1 + typo fix
-rw-r--r-- | maps/re/017-1.mcache | bin | 4292 -> 4292 bytes | |||
-rw-r--r-- | npc/017-1/guards.txt | 2 | ||||
-rw-r--r-- | npc/017-1/signs.txt | 41 |
3 files changed, 42 insertions, 1 deletions
diff --git a/maps/re/017-1.mcache b/maps/re/017-1.mcache Binary files differindex 7300b8eaf..2839a3d3c 100644 --- a/maps/re/017-1.mcache +++ b/maps/re/017-1.mcache diff --git a/npc/017-1/guards.txt b/npc/017-1/guards.txt index 110d896e6..b5606c5fe 100644 --- a/npc/017-1/guards.txt +++ b/npc/017-1/guards.txt @@ -10,7 +10,7 @@ function script LofGuard { mesq l("I am stationed here to protect Land Of Fire from monsters."); next; mesn; - mesq l("I mean, there even an Monster King? What sort of world is this?!"); + mesq l("I mean, there's even an Monster King? What sort of world is this?!"); close; return; } diff --git a/npc/017-1/signs.txt b/npc/017-1/signs.txt index d418003e4..2f3f5a644 100644 --- a/npc/017-1/signs.txt +++ b/npc/017-1/signs.txt @@ -4,6 +4,7 @@ // Description: // Easier navigation on LoF Village +// Main Signs 017-1,71,96,0 script Northwest Avenue#lof NPC_NO_SPRITE,{ mesn; mesc l("↑ Unused House"); @@ -63,3 +64,43 @@ OnInit: end; } + +// Misc signs +017-1,71,110,0 script West Avenue#lof NPC_NO_SPRITE,{ + mesn; + mesc l("↑ Northwest Avenue"); + mesc l("← Fire Breath Inn"); + mesc l("↓ Southwest Avenue"); + close; + +OnInit: + .sex = G_OTHER; + .distance = 3; + end; +} + +017-1,114,63,0 script North Avenue#lof NPC_NO_SPRITE,{ + mesn; + mesc l("→ Transcendence Gate"); + mesc l("↓ Northeast Avenue"); + close; + +OnInit: + .sex = G_OTHER; + .distance = 3; + end; +} + +017-1,212,67,0 script Signpost#lof NPC_NO_SPRITE,{ + mesn; + mesc l("↑ Town Hall, Noble District"); + mesc l("← Land Of Fire Village"); + mesc l("↓ Transcendence Gate"); + close; + +OnInit: + .sex = G_OTHER; + .distance = 3; + end; +} + |