diff options
-rw-r--r-- | npc/018-5/_import.txt | 1 | ||||
-rw-r--r-- | npc/018-5/storage.txt | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/npc/018-5/_import.txt b/npc/018-5/_import.txt index 5cfa0f52f..c30754ade 100644 --- a/npc/018-5/_import.txt +++ b/npc/018-5/_import.txt @@ -3,5 +3,6 @@ "npc/018-5/_mobs.txt", "npc/018-5/_warps.txt", "npc/018-5/soul_menhir.txt", +"npc/018-5/storage.txt", "npc/018-5/teleporter.txt", "npc/018-5/town.txt", diff --git a/npc/018-5/storage.txt b/npc/018-5/storage.txt new file mode 100644 index 000000000..c6d1a62e6 --- /dev/null +++ b/npc/018-5/storage.txt @@ -0,0 +1,13 @@ +// TMW-2 Script. +// Author: +// Jesusalva + +018-5,108,44,0 script Storage Fairy NPC_FAIRY_C,{ + Banker(.name$, "Lilit", 50000); + close; + +OnInit: + .sex = G_OTHER; + .distance = 5; + end; +} |