diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-02-27 15:40:48 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-02-27 15:40:48 -0300 |
commit | ed215791bcecc57a4ab08ec396513664df7cc618 (patch) | |
tree | fd1262f2ea55329d775e9b5ccd00bc5d51440271 /npc/018-5 | |
parent | 2a3a6a987eaa570bab7b6befbb7137498ba2a269 (diff) | |
download | serverdata-ed215791bcecc57a4ab08ec396513664df7cc618.tar.gz serverdata-ed215791bcecc57a4ab08ec396513664df7cc618.tar.bz2 serverdata-ed215791bcecc57a4ab08ec396513664df7cc618.tar.xz serverdata-ed215791bcecc57a4ab08ec396513664df7cc618.zip |
Add a door for the Great Tree
Diffstat (limited to 'npc/018-5')
-rw-r--r-- | npc/018-5/_import.txt | 1 | ||||
-rw-r--r-- | npc/018-5/tree.txt | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/npc/018-5/_import.txt b/npc/018-5/_import.txt index c30754ade..f9fc6b3fc 100644 --- a/npc/018-5/_import.txt +++ b/npc/018-5/_import.txt @@ -6,3 +6,4 @@ "npc/018-5/storage.txt", "npc/018-5/teleporter.txt", "npc/018-5/town.txt", +"npc/018-5/tree.txt", diff --git a/npc/018-5/tree.txt b/npc/018-5/tree.txt new file mode 100644 index 000000000..c4991686b --- /dev/null +++ b/npc/018-5/tree.txt @@ -0,0 +1,17 @@ +// TMW2 scripts. +// Author: +// Jesusalva +// Description: +// Lilit's access + +018-5,100,52,0 script Great Tree NPC_NO_SPRITE,{ + mesn; + mesq l("The door is locked."); + close; + +OnInit: + .sex = G_OTHER; + .distance = 1; + end; +} + |