From 5210587241a36cf714dacce5f00443a8e73defa7 Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Fri, 16 Dec 2016 11:11:22 +0000 Subject: [PATCH] Finish condition check for quest 10377. Contributed by gigilo1968. --- .../Q10377_TheInvadedExecutionGrounds.java | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q10377_TheInvadedExecutionGrounds/Q10377_TheInvadedExecutionGrounds.java b/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q10377_TheInvadedExecutionGrounds/Q10377_TheInvadedExecutionGrounds.java index cf8cea56c8..2837717ad9 100644 --- a/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q10377_TheInvadedExecutionGrounds/Q10377_TheInvadedExecutionGrounds.java +++ b/L2J_Mobius_Underground/dist/game/data/scripts/quests/Q10377_TheInvadedExecutionGrounds/Q10377_TheInvadedExecutionGrounds.java @@ -104,11 +104,14 @@ public final class Q10377_TheInvadedExecutionGrounds extends Quest } case "warden_endrigo_q10377_02.html": { - giveItems(player, ADENA, 2970560); - giveItems(player, SOE_GUILLOTINE_FORTRESS, 2); - addExpAndSp(player, 756106110, 181465); - qs.exitQuest(false, true); - htmltext = event; + if (qs.isCond(6)) + { + giveItems(player, ADENA, 2970560); + giveItems(player, SOE_GUILLOTINE_FORTRESS, 2); + addExpAndSp(player, 756106110, 181465); + qs.exitQuest(false, true); + htmltext = event; + } break; } }