diff options
Diffstat (limited to 'npc/017-1/signs.txt')
-rw-r--r-- | npc/017-1/signs.txt | 41 |
1 files changed, 41 insertions, 0 deletions
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; +} + |