diff options
author | Fate <fate-tmw@googlemail.com> | 2008-11-22 21:16:18 -0700 |
---|---|---|
committer | Fate <fate-tmw@googlemail.com> | 2008-11-22 21:16:18 -0700 |
commit | 60a35323982cd1fa660903092bef2b36899b3fcb (patch) | |
tree | d04fb6ded771a025facabcbc644f52fb6f0b8f7c /npc/013-3_Cave/barrier.txt | |
parent | 13b743e2d48fcf45b7d394826b1bfe875e039b36 (diff) | |
parent | 7d0a7521690fa9837ec0e35724b7f8a2ae591737 (diff) | |
download | serverdata-60a35323982cd1fa660903092bef2b36899b3fcb.tar.gz serverdata-60a35323982cd1fa660903092bef2b36899b3fcb.tar.bz2 serverdata-60a35323982cd1fa660903092bef2b36899b3fcb.tar.xz serverdata-60a35323982cd1fa660903092bef2b36899b3fcb.zip |
Merge branch 'master' of git@gitorious.org:tmw-eathena-data/map-renaming
Conflicts:
npc/_import.txt
Diffstat (limited to 'npc/013-3_Cave/barrier.txt')
-rw-r--r-- | npc/013-3_Cave/barrier.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/npc/013-3_Cave/barrier.txt b/npc/013-3_Cave/barrier.txt new file mode 100644 index 00000000..07f7a12b --- /dev/null +++ b/npc/013-3_Cave/barrier.txt @@ -0,0 +1,17 @@ +// + +013-3.gat,71,21 script #DemonMineBarrier1 127,1,1,{ + if (QUEST_demon_mines >= 2) quit; + + if (QUEST_demon_mines == 1 && countitem(1198) >= 1) goto L_Has_Jack_O_Soul; + + mes "The barrier around the opening pushes you bach as you approach."; + + warp "013-3.gat", 71, 38; + quit; + +L_Has_Jack_O_Soul: + mes "The barrier around the opening allows you passage."; + set QUEST_demon_mines, 2; + delitem 1198, 1; +} |