diff --git a/L2J_Mobius_4.0_GrandCrusade/dist/game/data/scripts/quests/Q00493_KickingOutUnwelcomeGuests/33515-04.htm b/L2J_Mobius_4.0_GrandCrusade/dist/game/data/scripts/quests/Q00493_KickingOutUnwelcomeGuests/33515-04.htm index 46e6128f11..8a5f3b2b35 100644 --- a/L2J_Mobius_4.0_GrandCrusade/dist/game/data/scripts/quests/Q00493_KickingOutUnwelcomeGuests/33515-04.htm +++ b/L2J_Mobius_4.0_GrandCrusade/dist/game/data/scripts/quests/Q00493_KickingOutUnwelcomeGuests/33515-04.htm @@ -1,4 +1,4 @@ Agent Georgio:
-You must defeat 20 each of Resurrected Creations, Lunatic Creatures, Undead Creatures, Hellish Creatures, and Shilen's Messengers in the Forbidden Gateway.
+You must defeat 50 each of Resurrected Creations, Lunatic Creatures, Undead Creatures, Hellish Creatures, and Shilen's Messengers in the Forbidden Gateway.
\ No newline at end of file diff --git a/L2J_Mobius_4.0_GrandCrusade/dist/game/data/scripts/quests/Q00493_KickingOutUnwelcomeGuests/33515-05.htm b/L2J_Mobius_4.0_GrandCrusade/dist/game/data/scripts/quests/Q00493_KickingOutUnwelcomeGuests/33515-05.htm index 14a9218820..f303cc16ed 100644 --- a/L2J_Mobius_4.0_GrandCrusade/dist/game/data/scripts/quests/Q00493_KickingOutUnwelcomeGuests/33515-05.htm +++ b/L2J_Mobius_4.0_GrandCrusade/dist/game/data/scripts/quests/Q00493_KickingOutUnwelcomeGuests/33515-05.htm @@ -1,4 +1,4 @@ Agent Georgio:
Good, then I will await here for your return. -You must defeat 20 each of Resurrected Creations, Insane Creations, Undead Creatures, Hellish Creatures, and Shilen's Messengers. +You must defeat 50 each of Resurrected Creations, Insane Creations, Undead Creatures, Hellish Creatures, and Shilen's Messengers. \ No newline at end of file diff --git a/L2J_Mobius_4.0_GrandCrusade/dist/game/data/scripts/quests/Q00493_KickingOutUnwelcomeGuests/33515-06.html b/L2J_Mobius_4.0_GrandCrusade/dist/game/data/scripts/quests/Q00493_KickingOutUnwelcomeGuests/33515-06.html index 14a9218820..f303cc16ed 100644 --- a/L2J_Mobius_4.0_GrandCrusade/dist/game/data/scripts/quests/Q00493_KickingOutUnwelcomeGuests/33515-06.html +++ b/L2J_Mobius_4.0_GrandCrusade/dist/game/data/scripts/quests/Q00493_KickingOutUnwelcomeGuests/33515-06.html @@ -1,4 +1,4 @@ Agent Georgio:
Good, then I will await here for your return. -You must defeat 20 each of Resurrected Creations, Insane Creations, Undead Creatures, Hellish Creatures, and Shilen's Messengers. +You must defeat 50 each of Resurrected Creations, Insane Creations, Undead Creatures, Hellish Creatures, and Shilen's Messengers. \ No newline at end of file diff --git a/L2J_Mobius_4.0_GrandCrusade/dist/game/data/scripts/quests/Q00493_KickingOutUnwelcomeGuests/Q00493_KickingOutUnwelcomeGuests.java b/L2J_Mobius_4.0_GrandCrusade/dist/game/data/scripts/quests/Q00493_KickingOutUnwelcomeGuests/Q00493_KickingOutUnwelcomeGuests.java index c250f77aaa..95fca2f6c4 100644 --- a/L2J_Mobius_4.0_GrandCrusade/dist/game/data/scripts/quests/Q00493_KickingOutUnwelcomeGuests/Q00493_KickingOutUnwelcomeGuests.java +++ b/L2J_Mobius_4.0_GrandCrusade/dist/game/data/scripts/quests/Q00493_KickingOutUnwelcomeGuests/Q00493_KickingOutUnwelcomeGuests.java @@ -143,7 +143,7 @@ public final class Q00493_KickingOutUnwelcomeGuests extends Quest if ((st != null) && st.isCond(1)) { final int killedCount = st.getInt(Integer.toString(npc.getId())); - if (killedCount < 20) + if (killedCount < 50) { st.set(Integer.toString(npc.getId()), killedCount + 1); } @@ -154,7 +154,7 @@ public final class Q00493_KickingOutUnwelcomeGuests extends Quest final int killedMessenger = st.getInt(Integer.toString(SHILEN_MESSENGER)); final int killedHellish = st.getInt(Integer.toString(HELLISH_CREATURE)); - if ((killedLunatic == 20) && (killedRessurected == 20) && (killedUndead == 20) && (killedMessenger == 20) && (killedHellish == 20)) + if ((killedLunatic == 50) && (killedRessurected == 50) && (killedUndead == 50) && (killedMessenger == 50) && (killedHellish == 50)) { st.setCond(2, true); }