diff options
-rw-r--r-- | npc/042-0/arthur.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/npc/042-0/arthur.txt b/npc/042-0/arthur.txt index 745f6cefc..5a5ab5d45 100644 --- a/npc/042-0/arthur.txt +++ b/npc/042-0/arthur.txt @@ -436,13 +436,13 @@ L_Hint: mesn; switch ($KAMELOT_KEY[.@g]) { case 1: - .@path$=l("West"); break; + .@path$ = l("West"); break; case 2: - .@path$=l("North West"); break; + .@path$ = l("North West"); break; case 4: - .@path$=l("North East"); break; + .@path$ = l("North East"); break; case 8: - .@path$=l("East"); break; + .@path$ = l("East"); break; default: .@path$=l("ERROR, REPORT ME: Invalid: %d", $KAMELOT_KEY[.@g]); break; } @@ -457,6 +457,7 @@ L_Hint: guinevereSpawn(2); mesn; mesq l("Take this with you. And please bring Arthur back, the world needs him!"); + if ($KAMELOT_QUEST[.@g] & 2) close; // Someone else claimed it $KAMELOT_QUEST[.@g]=$KAMELOT_QUEST[.@g]|2; // Player Reward for completing this stage getitem any(SacredImmortalityPotion, SacredLifePotion, SacredManaPotion), 1; |