diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-04-25 01:00:50 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-04-25 01:00:50 -0300 |
commit | 7f5e0d3f0abccb14c785392f89f6e6de672f2a50 (patch) | |
tree | f23505c4af05541eae30fb1833a87ca17aad4ce7 /npc | |
parent | 34e57dfdd4c58620af6c2f2ea43bab4928bcebad (diff) | |
download | serverdata-7f5e0d3f0abccb14c785392f89f6e6de672f2a50.tar.gz serverdata-7f5e0d3f0abccb14c785392f89f6e6de672f2a50.tar.bz2 serverdata-7f5e0d3f0abccb14c785392f89f6e6de672f2a50.tar.xz serverdata-7f5e0d3f0abccb14c785392f89f6e6de672f2a50.zip |
Access to 042-1 Weapons Room conditional established.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/042-0/_warps.txt | 1 | ||||
-rw-r--r-- | npc/042-0/arthur.txt | 19 |
2 files changed, 19 insertions, 1 deletions
diff --git a/npc/042-0/_warps.txt b/npc/042-0/_warps.txt index 5992a3d11..064ab81df 100644 --- a/npc/042-0/_warps.txt +++ b/npc/042-0/_warps.txt @@ -1,4 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 042-0: Camelot - Throne Room warps 042-0,60,81,0 warp #042-0_60_81 3,0,014-4,67,27 -042-0,69,24,0 warp #042-0_69_24 0,0,042-1,55,99 diff --git a/npc/042-0/arthur.txt b/npc/042-0/arthur.txt index 65858487a..a6a283e74 100644 --- a/npc/042-0/arthur.txt +++ b/npc/042-0/arthur.txt @@ -164,3 +164,22 @@ OnInstanceInit: end; } + + + + + +042-0,69,24,0 script #K042-0_69_24 NPC_HIDDEN,0,0,{ + end; + +OnTouch: + .@g=getcharid(2); + if ($KAMELOT_QUEST[.@g] & 1) + warp "042-1@"+.@g, 55, 99; + else + dispbottom l("The door is locked."); + end; +} + + + |