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/guards.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/guards.txt')
-rw-r--r-- | npc/017-1/guards.txt | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/npc/017-1/guards.txt b/npc/017-1/guards.txt new file mode 100644 index 000000000..110d896e6 --- /dev/null +++ b/npc/017-1/guards.txt @@ -0,0 +1,80 @@ +// TMW2 scripts. +// Authors: +// Jesusalva +// Description: +// Protect LoF + +// Handle Guard's logic +function script LofGuard { + mesn; + 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?!"); + close; + return; +} + +017-1,79,43,0 script Guard#lof-1 NPC_GUARD2,{ + LofGuard(); + end; + +OnInit: + .sex = G_FEMALE; + .distance = 5; + end; +} + + +017-1,220,44,0 script Guard#lof-2 NPC_GUARD1,{ + LofGuard(); + end; + +OnInit: + .sex = G_MALE; + .distance = 5; + end; +} + +017-1,193,69,0 script Guard#lof-3 NPC_GUARD2,{ + LofGuard(); + end; + +OnInit: + .sex = G_FEMALE; + .distance = 5; + end; +} + + +017-1,69,108,0 script Guard#lof-4 NPC_GUARD1,{ + LofGuard(); + end; + +OnInit: + .sex = G_MALE; + .distance = 5; + end; +} + +017-1,90,149,0 script Guard#lof-5 NPC_GUARD1,{ + LofGuard(); + end; + +OnInit: + .sex = G_MALE; + .distance = 5; + end; +} + + +017-1,85,223,0 script Guard#lof-6 NPC_GUARD2,{ + LofGuard(); + end; + +OnInit: + .sex = G_FEMALE; + .distance = 5; + end; +} + |