Fix for quest Nowhere to Turn (10402).

Contributed by Edoo.
This commit is contained in:
MobiusDevelopment
2019-10-25 11:41:10 +00:00
parent f335439742
commit f2227cba9e
12 changed files with 18 additions and 18 deletions

View File

@@ -1,3 +1,3 @@
<html><body>Giant's Minion Eblune:<br> <html><body>Giant's Minion Eblune:<br>
Eliminate the <font color="LEVEL">Marsh Stalkers, Marsh Drakes, Fallen Orcs, Ancient Gargoyles, Fallen Orc Archers, Fallen Orc Shamans, Sharp Talon Tigers, and Fallen Orc Captains</font> in the area. <font color="LEVEL">40</font> should do it. Eliminate the <font color="LEVEL">Marsh Stalkers, Marsh Drakes, Fallen Orcs, Ancient Gargoyles, Fallen Orc Archers, Fallen Orc Shamans, Sharp Talon Tigers, and Fallen Orc Captains</font> in the area. <font color="LEVEL">100</font> should do it.
</body></html> </body></html>

View File

@@ -1,3 +1,3 @@
<html><body>Giant's Minion Eblune:<br> <html><body>Giant's Minion Eblune:<br>
Eliminate the <font color="LEVEL">Marsh Stalkers, Marsh Drakes, Fallen Orcs, Ancient Gargoyles, Fallen Orc Archers, Fallen Orc Shamans, Sharp Talon Tigers, and Fallen Orc Captains</font> in the area. <font color="LEVEL">40</font> should do it. Eliminate the <font color="LEVEL">Marsh Stalkers, Marsh Drakes, Fallen Orcs, Ancient Gargoyles, Fallen Orc Archers, Fallen Orc Shamans, Sharp Talon Tigers, and Fallen Orc Captains</font> in the area. <font color="LEVEL">100</font> should do it.
</body></html> </body></html>

View File

@@ -1,4 +1,4 @@
<html><body>Giant's Minion Eblune:<br> <html><body>Giant's Minion Eblune:<br>
How'd someone like you get out here? It's dangerous! Go back.<br> How'd someone like you get out here? It's dangerous! Go back.<br>
(Only characters level 58 or above may undertake this quest.) (Only characters level 56 or above may undertake this quest.)
</body></html> </body></html>

View File

@@ -49,7 +49,7 @@ public class Q10402_NowhereToTurn extends Quest
21022, // Fallen Orc Captain 21022, // Fallen Orc Captain
}; };
// Misc // Misc
private static final int MIN_LEVEL = 58; private static final int MIN_LEVEL = 56;
private static final int MAX_LEVEL = 61; private static final int MAX_LEVEL = 61;
public Q10402_NowhereToTurn() public Q10402_NowhereToTurn()
@@ -140,14 +140,14 @@ public class Q10402_NowhereToTurn extends Quest
{ {
int killCount = qs.getInt("KILLED_COUNT"); int killCount = qs.getInt("KILLED_COUNT");
if (killCount < 60) if (killCount < 100)
{ {
killCount++; killCount++;
qs.set("KILLED_COUNT", killCount); qs.set("KILLED_COUNT", killCount);
playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET);
} }
if (killCount == 60) if (killCount == 100)
{ {
qs.setCond(2, true); qs.setCond(2, true);
} }

View File

@@ -1,3 +1,3 @@
<html><body>Giant's Minion Eblune:<br> <html><body>Giant's Minion Eblune:<br>
Eliminate the <font color="LEVEL">Marsh Stalkers, Marsh Drakes, Fallen Orcs, Ancient Gargoyles, Fallen Orc Archers, Fallen Orc Shamans, Sharp Talon Tigers, and Fallen Orc Captains</font> in the area. <font color="LEVEL">40</font> should do it. Eliminate the <font color="LEVEL">Marsh Stalkers, Marsh Drakes, Fallen Orcs, Ancient Gargoyles, Fallen Orc Archers, Fallen Orc Shamans, Sharp Talon Tigers, and Fallen Orc Captains</font> in the area. <font color="LEVEL">100</font> should do it.
</body></html> </body></html>

View File

@@ -1,3 +1,3 @@
<html><body>Giant's Minion Eblune:<br> <html><body>Giant's Minion Eblune:<br>
Eliminate the <font color="LEVEL">Marsh Stalkers, Marsh Drakes, Fallen Orcs, Ancient Gargoyles, Fallen Orc Archers, Fallen Orc Shamans, Sharp Talon Tigers, and Fallen Orc Captains</font> in the area. <font color="LEVEL">40</font> should do it. Eliminate the <font color="LEVEL">Marsh Stalkers, Marsh Drakes, Fallen Orcs, Ancient Gargoyles, Fallen Orc Archers, Fallen Orc Shamans, Sharp Talon Tigers, and Fallen Orc Captains</font> in the area. <font color="LEVEL">100</font> should do it.
</body></html> </body></html>

View File

@@ -1,4 +1,4 @@
<html><body>Giant's Minion Eblune:<br> <html><body>Giant's Minion Eblune:<br>
How'd someone like you get out here? It's dangerous! Go back.<br> How'd someone like you get out here? It's dangerous! Go back.<br>
(Only characters level 58 or above may undertake this quest.) (Only characters level 56 or above may undertake this quest.)
</body></html> </body></html>

View File

@@ -49,7 +49,7 @@ public class Q10402_NowhereToTurn extends Quest
21022, // Fallen Orc Captain 21022, // Fallen Orc Captain
}; };
// Misc // Misc
private static final int MIN_LEVEL = 58; private static final int MIN_LEVEL = 56;
private static final int MAX_LEVEL = 61; private static final int MAX_LEVEL = 61;
public Q10402_NowhereToTurn() public Q10402_NowhereToTurn()
@@ -140,14 +140,14 @@ public class Q10402_NowhereToTurn extends Quest
{ {
int killCount = qs.getInt("KILLED_COUNT"); int killCount = qs.getInt("KILLED_COUNT");
if (killCount < 60) if (killCount < 100)
{ {
killCount++; killCount++;
qs.set("KILLED_COUNT", killCount); qs.set("KILLED_COUNT", killCount);
playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET);
} }
if (killCount == 60) if (killCount == 100)
{ {
qs.setCond(2, true); qs.setCond(2, true);
} }

View File

@@ -1,3 +1,3 @@
<html><body>Giant's Minion Eblune:<br> <html><body>Giant's Minion Eblune:<br>
Eliminate the <font color="LEVEL">Marsh Stalkers, Marsh Drakes, Fallen Orcs, Ancient Gargoyles, Fallen Orc Archers, Fallen Orc Shamans, Sharp Talon Tigers, and Fallen Orc Captains</font> in the area. <font color="LEVEL">40</font> should do it. Eliminate the <font color="LEVEL">Marsh Stalkers, Marsh Drakes, Fallen Orcs, Ancient Gargoyles, Fallen Orc Archers, Fallen Orc Shamans, Sharp Talon Tigers, and Fallen Orc Captains</font> in the area. <font color="LEVEL">100</font> should do it.
</body></html> </body></html>

View File

@@ -1,3 +1,3 @@
<html><body>Giant's Minion Eblune:<br> <html><body>Giant's Minion Eblune:<br>
Eliminate the <font color="LEVEL">Marsh Stalkers, Marsh Drakes, Fallen Orcs, Ancient Gargoyles, Fallen Orc Archers, Fallen Orc Shamans, Sharp Talon Tigers, and Fallen Orc Captains</font> in the area. <font color="LEVEL">40</font> should do it. Eliminate the <font color="LEVEL">Marsh Stalkers, Marsh Drakes, Fallen Orcs, Ancient Gargoyles, Fallen Orc Archers, Fallen Orc Shamans, Sharp Talon Tigers, and Fallen Orc Captains</font> in the area. <font color="LEVEL">100</font> should do it.
</body></html> </body></html>

View File

@@ -1,4 +1,4 @@
<html><body>Giant's Minion Eblune:<br> <html><body>Giant's Minion Eblune:<br>
How'd someone like you get out here? It's dangerous! Go back.<br> How'd someone like you get out here? It's dangerous! Go back.<br>
(Only characters level 58 or above may undertake this quest.) (Only characters level 56 or above may undertake this quest.)
</body></html> </body></html>

View File

@@ -49,7 +49,7 @@ public class Q10402_NowhereToTurn extends Quest
21022, // Fallen Orc Captain 21022, // Fallen Orc Captain
}; };
// Misc // Misc
private static final int MIN_LEVEL = 58; private static final int MIN_LEVEL = 56;
private static final int MAX_LEVEL = 61; private static final int MAX_LEVEL = 61;
public Q10402_NowhereToTurn() public Q10402_NowhereToTurn()
@@ -140,14 +140,14 @@ public class Q10402_NowhereToTurn extends Quest
{ {
int killCount = qs.getInt("KILLED_COUNT"); int killCount = qs.getInt("KILLED_COUNT");
if (killCount < 60) if (killCount < 100)
{ {
killCount++; killCount++;
qs.set("KILLED_COUNT", killCount); qs.set("KILLED_COUNT", killCount);
playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET); playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET);
} }
if (killCount == 60) if (killCount == 100)
{ {
qs.setCond(2, true); qs.setCond(2, true);
} }