diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-11 00:54:47 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-11 00:54:47 -0300 |
commit | 4c9e147df00cf45520c599652f57b185d073c825 (patch) | |
tree | 561b4a82070109bcc3bf727f57cab52fc3be5479 /npc/017-1/signs.txt | |
parent | 1974c351830bb3e1907fe75b615ad43af1db2794 (diff) | |
download | serverdata-4c9e147df00cf45520c599652f57b185d073c825.tar.gz serverdata-4c9e147df00cf45520c599652f57b185d073c825.tar.bz2 serverdata-4c9e147df00cf45520c599652f57b185d073c825.tar.xz serverdata-4c9e147df00cf45520c599652f57b185d073c825.zip |
Guards and Signs to LoF Village.
Diffstat (limited to 'npc/017-1/signs.txt')
-rw-r--r-- | npc/017-1/signs.txt | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/npc/017-1/signs.txt b/npc/017-1/signs.txt new file mode 100644 index 000000000..d6d13c8c4 --- /dev/null +++ b/npc/017-1/signs.txt @@ -0,0 +1,65 @@ +// TMW2 scripts. +// Authors: +// Jesusalva +// Description: +// Easier navigation on LoF Village + +017-1,71,96,0 script Northwest Avenue#lof NPC_NO_SPRITE,{ + mesn; + mesc l("↑ Unused House"); + mesc l("→ Northeast Avenue"); + mesc l("↓ Inn, Dimond's Cove"); + end; + +OnInit: + .sex = G_OTHER; + .distance = 3; + end; +} + + +017-1,114,96,0 script Northeast Avenue#lof NPC_NO_SPRITE,{ + mesn; + mesc l("↑ Houses, Exit"); + mesc l("← Northwest Avenue"); + mesc l("→ Unused House"); + mesc l("↓ Unused House, Market"); + end; + +OnInit: + .sex = G_OTHER; + .distance = 3; + end; +} + + +017-1,114,147,0 script Southeast Avenue#lof NPC_NO_SPRITE,{ + mesn; + mesc l("↑ Houses, Soul Menhir"); + mesc l("← Dimond's Cove"); + mesc l("→ Market Place"); + mesc l("↓ Houses, Lake Of Tears"); + end; + +OnInit: + .sex = G_OTHER; + .distance = 3; + end; +} + + + + +017-1,71,147,0 script Southwest Avenue#lof NPC_NO_SPRITE,{ + mesn; + mesc l("↑ Inn, Houses, Northwest Avenue"); + mesc l("← Dimond's Cove, Potion Maker"); + mesc l("→ Market Place"); + end; + +OnInit: + .sex = G_OTHER; + .distance = 3; + end; +} + |