diff options
Diffstat (limited to 'npc/004-2')
-rw-r--r-- | npc/004-2/_import.txt | 2 | ||||
-rw-r--r-- | npc/004-2/mirio.txt | 16 | ||||
-rw-r--r-- | npc/004-2/pachua.txt | 16 |
3 files changed, 34 insertions, 0 deletions
diff --git a/npc/004-2/_import.txt b/npc/004-2/_import.txt index b1ae519fa..3ff901475 100644 --- a/npc/004-2/_import.txt +++ b/npc/004-2/_import.txt @@ -3,3 +3,5 @@ "npc/004-2/_mobs.txt", "npc/004-2/_warps.txt", "npc/004-2/bug.txt", +"npc/004-2/mirio.txt", +"npc/004-2/pachua.txt", diff --git a/npc/004-2/mirio.txt b/npc/004-2/mirio.txt new file mode 100644 index 000000000..cd0cf100c --- /dev/null +++ b/npc/004-2/mirio.txt @@ -0,0 +1,16 @@ +// TMW2 scripts. +// Authors: +// Jesusalva +// Description: +// - + +004-2,146,115,0 script Mirio NPC_INDIGENOUS_YOUNG,{ + mesn; + mesq l("Howdy!"); + close; + +OnInit: + .distance = 4; + end; +} + diff --git a/npc/004-2/pachua.txt b/npc/004-2/pachua.txt new file mode 100644 index 000000000..9bb5f6573 --- /dev/null +++ b/npc/004-2/pachua.txt @@ -0,0 +1,16 @@ +// TMW2 scripts. +// Authors: +// Jesusalva +// Description: +// - + +004-2,61,118,0 script Pachua NPC_INDIGENOUS_OLD,{ + mesn; + mesq l("Howdy!"); + close; + +OnInit: + .distance = 4; + end; +} + |