diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-08-31 14:34:25 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-08-31 14:34:25 -0300 |
commit | ebaa1c0043cf3f99aa701a5274c2090c91626298 (patch) | |
tree | 3f010f299f6fbb84c95eb8c235ae6050f02688e3 /npc/018-6-0 | |
parent | cd4c31c62f3fa6e1ebb11984734260e55cef66d6 (diff) | |
download | serverdata-ebaa1c0043cf3f99aa701a5274c2090c91626298.tar.gz serverdata-ebaa1c0043cf3f99aa701a5274c2090c91626298.tar.bz2 serverdata-ebaa1c0043cf3f99aa701a5274c2090c91626298.tar.xz serverdata-ebaa1c0043cf3f99aa701a5274c2090c91626298.zip |
018-6-0 FORGOTTEN CHAMBER should be complete
Diffstat (limited to 'npc/018-6-0')
-rw-r--r-- | npc/018-6-0/main.txt | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/npc/018-6-0/main.txt b/npc/018-6-0/main.txt index 4020fe0c1..40827f383 100644 --- a/npc/018-6-0/main.txt +++ b/npc/018-6-0/main.txt @@ -74,4 +74,49 @@ OnInstanceInit: end; } +///////////////////////////// +018-6-0,67,90,0 script #ToWestHall NPC_SUMMONING_CIRC,0,0,{ + dispbottom l("It looks dangerous."); + end; + +OnTouch: + .@q=getq(LoFQuest_Barbara); + .@q2=getq2(LoFQuest_Barbara); + .@q3=getq3(LoFQuest_Barbara); + if (.@q == 2 && !(.@q3 & 1)) { + warp BarbaraInstCheck(2), 70, 150; + } else { + dispbottom l("I already visited this warp."); + } + end; + + +OnInit: + disablenpc .name$; + end; +} + + +///////////////////////////// +018-6-0,113,90,0 script #ToEastHall NPC_SUMMONING_CIRC,0,0,{ + dispbottom l("It looks dangerous."); + end; + +OnTouch: + .@q=getq(LoFQuest_Barbara); + .@q2=getq2(LoFQuest_Barbara); + .@q3=getq3(LoFQuest_Barbara); + if (.@q == 2 && !(.@q3 & 2)) { + warp BarbaraInstCheck(2), 103, 156; + } else { + dispbottom l("I already visited this warp."); + } + end; + + +OnInit: + disablenpc .name$; + end; +} + |