diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-16 20:13:10 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-16 20:13:10 -0300 |
commit | e59cb9caac5198a5417c28e7e56fc985dd52dda8 (patch) | |
tree | ed56f0a109af5a57ea6f32063aca41900e5b160d /npc | |
parent | 8e09b9aa093c6caec7d4fa998f56aa65b4f2fad3 (diff) | |
download | serverdata-e59cb9caac5198a5417c28e7e56fc985dd52dda8.tar.gz serverdata-e59cb9caac5198a5417c28e7e56fc985dd52dda8.tar.bz2 serverdata-e59cb9caac5198a5417c28e7e56fc985dd52dda8.tar.xz serverdata-e59cb9caac5198a5417c28e7e56fc985dd52dda8.zip |
Add the script to disallow passage to Bandit Lord's Den.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/015-2/_import.txt | 1 | ||||
-rw-r--r-- | npc/015-2/lordcave.txt | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/npc/015-2/_import.txt b/npc/015-2/_import.txt index e7f8ad2b8..fce140ddf 100644 --- a/npc/015-2/_import.txt +++ b/npc/015-2/_import.txt @@ -2,3 +2,4 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/015-2/_mobs.txt", "npc/015-2/_warps.txt", +"npc/015-2/lordcave.txt", diff --git a/npc/015-2/lordcave.txt b/npc/015-2/lordcave.txt new file mode 100644 index 000000000..517944f6a --- /dev/null +++ b/npc/015-2/lordcave.txt @@ -0,0 +1,11 @@ +// TMW2 Script +// Author: +// Jesusalva + +015-2,94,255,0 script #BanditLordDen NPC_HIDDEN,0,0,{ + end; + +OnTouch: + npctalk l("This passage seems sealed. If I only had a @@...", getitemlink(SilverKey)); + end; +} |