Updated quest Kicking Out Unwelcome Guests (493).
Contributed by gamelike85.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<html><body>Agent Georgio:<br>
|
||||
You must defeat 20 each of Resurrected Creations, Lunatic Creatures, Undead Creatures, Hellish Creatures, and Shilen's Messengers in the Forbidden Gateway.<br>
|
||||
You must defeat 50 each of Resurrected Creations, Lunatic Creatures, Undead Creatures, Hellish Creatures, and Shilen's Messengers in the Forbidden Gateway.<br>
|
||||
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q00493_KickingOutUnwelcomeGuests 33515-05.htm">"Sounds like a challenge. I accept."</Button>
|
||||
</body></html>
|
@@ -1,4 +1,4 @@
|
||||
<html><body>Agent Georgio:<br>
|
||||
Good, then I will await here for your return.<br1>
|
||||
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.
|
||||
</body></html>
|
@@ -1,4 +1,4 @@
|
||||
<html><body>Agent Georgio:<br>
|
||||
Good, then I will await here for your return.<br1>
|
||||
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.
|
||||
</body></html>
|
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user