diff options
-rw-r--r-- | npc/009-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/009-1/soul-menhir.txt | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/npc/009-1/_import.txt b/npc/009-1/_import.txt index 48ea0cf15..ef571ea53 100644 --- a/npc/009-1/_import.txt +++ b/npc/009-1/_import.txt @@ -2,3 +2,4 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/009-1/_mobs.txt", "npc/009-1/_warps.txt", +"npc/009-1/soul-menhir.txt", diff --git a/npc/009-1/soul-menhir.txt b/npc/009-1/soul-menhir.txt new file mode 100644 index 000000000..172f9338a --- /dev/null +++ b/npc/009-1/soul-menhir.txt @@ -0,0 +1,20 @@ +// TMW2 scripts. +// Author: +// Jesusalva +// Description: +// Soul Menhir + +009-1,28,29,0 script Soul Menhir#hali NPC_SOUL_MOSS,{ + @map$ = "009-1"; + setarray @Xs, 26, 27, 28, 28, 29, 30; + setarray @Ys, 30, 31, 30, 31, 30, 30; + @x = 0; + @y = 0; + callfunc "SoulMenhir"; + @map$ = ""; + cleararray @Xs[0], 0, getarraysize(@Xs); + cleararray @Ys[0], 0, getarraysize(@Ys); + @x = 0; + @y = 0; + close; +} |