diff options
-rw-r--r-- | npc/014-4/kamelot.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/npc/014-4/kamelot.txt b/npc/014-4/kamelot.txt index c549741f9..305e7de92 100644 --- a/npc/014-4/kamelot.txt +++ b/npc/014-4/kamelot.txt @@ -127,7 +127,7 @@ OnDebug: l("Reset & Destroy"), l("Quest - Skip Weapons Room"), l("Quest - Skip Krukan fight"), - "", + l("Quest - Find all Keys"), "", "", "", @@ -135,7 +135,8 @@ OnDebug: l("Warp - Jump to Weapon Room"), l("Warp - Jump to Basement"), l("Warp - Jump to Jail"), - l("Warp - Jump to Sewer Entrance"); + l("Warp - Jump to Sewer Entrance"), + l("Warp - Jump to Cave Exit"); mes ""; switch (@menu) { case 2: @@ -146,6 +147,12 @@ OnDebug: KamelotCleanup(.@g); break; // We now order from bottom-up + case 6: + $KAMELOT_KEYMASK[.@g]=$KAMELOT_KEYMASK[.@g]|1; + $KAMELOT_KEYMASK[.@g]=$KAMELOT_KEYMASK[.@g]|2; + $KAMELOT_KEYMASK[.@g]=$KAMELOT_KEYMASK[.@g]|4; + $KAMELOT_KEYMASK[.@g]=$KAMELOT_KEYMASK[.@g]|8; + mes "WARNING: Kamelot Basement Chests skipped (not lootable)."; case 5: $KAMELOT_QUEST[.@g]=$KAMELOT_QUEST[.@g]|4; mes "WARNING: Krukan Fight and jail skipped."; @@ -164,6 +171,8 @@ OnDebug: warp "042-3@"+.@g, 60, 130; break; case 14: warp "042-4@"+.@g, 60, 67; break; + case 15: + warp "042-10@"+.@g, 95, 52; break; } close; |