Quest adjustments for Antharas and above.

Contributed by Iris.
This commit is contained in:
MobiusDevelopment 2022-04-04 22:16:00 +00:00
parent abe607670c
commit f81a139ab2
31 changed files with 46 additions and 54 deletions

View File

@ -1,4 +1,4 @@
<html><body>Fishing Specialist Pierre:<br>
For me fishing is the best way to have a rest. It helps me to relax, to forget about mortal coil, gives you peace of mind. However, it might end soon. There are some gossips that dirty water from the northwestern part of the Alligator Island kills all the fish. I'm afraid that these gossips might be true... Will you help me to deal with this problem and allay my anxiety?<br>
(Only characters Lv. 20-75 can take this quest.)
(Only characters Lv. 20 or above can take this quest.)
</body></html>

View File

@ -41,14 +41,13 @@ public class Q00127_FishingSpecialistsRequest extends Quest
private static final Location TELEPORT_LOC = new Location(105276, 162500, -3600);
// Misc
private static final int MIN_LEVEL = 20;
private static final int MAX_LEVEL = 75;
public Q00127_FishingSpecialistsRequest()
{
super(127);
addStartNpc(PIERRE);
addTalkId(PIERRE, FERMA, BAIKAL);
addCondLevel(MIN_LEVEL, MAX_LEVEL, "30013-00.htm");
addCondMinLevel(MIN_LEVEL, "30013-00.htm");
registerQuestItems(PIERRE_LETTER, FISH_REPORT, SEALED_BOTTLE);
}

View File

@ -39,7 +39,7 @@ public class Q10993_FutureDwarves extends Quest
private static final int SILVERA = 30527;
// Items
private static final int SCROLL_OF_BLOOD_MELODY = 49772;
private static final int FIRST_CLASS_BUFF_SCROLL = 29654;
private static final int IMPROVED_SOE = 49087;
// Misc
@ -94,7 +94,7 @@ public class Q10993_FutureDwarves extends Quest
{
if (qs.getCond() > 1)
{
giveItems(player, SCROLL_OF_BLOOD_MELODY, 2);
giveItems(player, FIRST_CLASS_BUFF_SCROLL, 5);
giveItems(player, IMPROVED_SOE, 1);
qs.exitQuest(false, true);
htmltext = event;

View File

@ -39,7 +39,7 @@ public class Q10994_FutureOrcs extends Quest
private static final int GANTAKAI = 30587;
private static final int HESTUI = 30585;
// Items
private static final int SCROLL_OF_BLOOD_MELODY = 49772;
private static final int FIRST_CLASS_BUFF_SCROLL = 29654;
private static final int IMPROVED_SOE = 49087;
// Misc
private static final int MIN_LEVEL = 19;
@ -103,7 +103,7 @@ public class Q10994_FutureOrcs extends Quest
{
if (qs.getCond() > 1)
{
giveItems(player, SCROLL_OF_BLOOD_MELODY, 2);
giveItems(player, FIRST_CLASS_BUFF_SCROLL, 5);
giveItems(player, IMPROVED_SOE, 1);
qs.exitQuest(false, true);
htmltext = event;

View File

@ -43,7 +43,7 @@ public class Q11006_FuturePeople extends Quest
private static final int BEZIQUE = 30379;
// Items
private static final int SCROLL_OF_BLOOD_MELODY = 49772;
private static final int FIRST_CLASS_BUFF_SCROLL = 29654;
private static final int IMPROVED_SOE = 49087;
// Misc
@ -126,7 +126,7 @@ public class Q11006_FuturePeople extends Quest
{
if (qs.getCond() > 1)
{
giveItems(player, SCROLL_OF_BLOOD_MELODY, 2);
giveItems(player, FIRST_CLASS_BUFF_SCROLL, 5);
giveItems(player, IMPROVED_SOE, 1);
qs.exitQuest(false, true);
htmltext = event;

View File

@ -40,7 +40,7 @@ public class Q11012_FutureElves extends Quest
private static final int ROSELLA = 30414;
private static final int MANUEL = 30293;
// Items
private static final int SCROLL_OF_BLOOD_MELODY = 49772;
private static final int FIRST_CLASS_BUFF_SCROLL = 29654;
private static final int IMPROVED_SOE = 49087;
// Misc
private static final int MIN_LEVEL = 19;
@ -113,7 +113,7 @@ public class Q11012_FutureElves extends Quest
{
if (qs.getCond() > 1)
{
giveItems(player, SCROLL_OF_BLOOD_MELODY, 2);
giveItems(player, FIRST_CLASS_BUFF_SCROLL, 5);
giveItems(player, IMPROVED_SOE, 1);
qs.exitQuest(false, true);
htmltext = event;

View File

@ -41,7 +41,7 @@ public class Q11018_FutureDarkElves extends Quest
private static final int SIDRA = 30330;
// Items
private static final int SCROLL_OF_BLOOD_MELODY = 49772;
private static final int FIRST_CLASS_BUFF_SCROLL = 29654;
private static final int IMPROVED_SOE = 49087;
// Misc
@ -115,7 +115,7 @@ public class Q11018_FutureDarkElves extends Quest
{
if (qs.getCond() > 1)
{
giveItems(player, SCROLL_OF_BLOOD_MELODY, 2);
giveItems(player, FIRST_CLASS_BUFF_SCROLL, 5);
giveItems(player, IMPROVED_SOE, 1);
qs.exitQuest(false, true);
htmltext = event;

View File

@ -1,4 +1,4 @@
<html><body>Fishing Specialist Pierre:<br>
For me fishing is the best way to have a rest. It helps me to relax, to forget about mortal coil, gives you peace of mind. However, it might end soon. There are some gossips that dirty water from the northwestern part of the Alligator Island kills all the fish. I'm afraid that these gossips might be true... Will you help me to deal with this problem and allay my anxiety?<br>
(Only characters Lv. 20-75 can take this quest.)
(Only characters Lv. 20 or above can take this quest.)
</body></html>

View File

@ -41,14 +41,13 @@ public class Q00127_FishingSpecialistsRequest extends Quest
private static final Location TELEPORT_LOC = new Location(105276, 162500, -3600);
// Misc
private static final int MIN_LEVEL = 20;
private static final int MAX_LEVEL = 75;
public Q00127_FishingSpecialistsRequest()
{
super(127);
addStartNpc(PIERRE);
addTalkId(PIERRE, FERMA, BAIKAL);
addCondLevel(MIN_LEVEL, MAX_LEVEL, "30013-00.htm");
addCondMinLevel(MIN_LEVEL, "30013-00.htm");
registerQuestItems(PIERRE_LETTER, FISH_REPORT, SEALED_BOTTLE);
}

View File

@ -39,7 +39,7 @@ public class Q10993_FutureDwarves extends Quest
private static final int SILVERA = 30527;
// Items
private static final int SCROLL_OF_BLOOD_MELODY = 49772;
private static final int FIRST_CLASS_BUFF_SCROLL = 29654;
private static final int IMPROVED_SOE = 49087;
// Misc
@ -94,7 +94,7 @@ public class Q10993_FutureDwarves extends Quest
{
if (qs.getCond() > 1)
{
giveItems(player, SCROLL_OF_BLOOD_MELODY, 2);
giveItems(player, FIRST_CLASS_BUFF_SCROLL, 5);
giveItems(player, IMPROVED_SOE, 1);
qs.exitQuest(false, true);
htmltext = event;

View File

@ -39,7 +39,7 @@ public class Q10994_FutureOrcs extends Quest
private static final int GANTAKAI = 30587;
private static final int HESTUI = 30585;
// Items
private static final int SCROLL_OF_BLOOD_MELODY = 49772;
private static final int FIRST_CLASS_BUFF_SCROLL = 29654;
private static final int IMPROVED_SOE = 49087;
// Misc
private static final int MIN_LEVEL = 19;
@ -103,7 +103,7 @@ public class Q10994_FutureOrcs extends Quest
{
if (qs.getCond() > 1)
{
giveItems(player, SCROLL_OF_BLOOD_MELODY, 2);
giveItems(player, FIRST_CLASS_BUFF_SCROLL, 5);
giveItems(player, IMPROVED_SOE, 1);
qs.exitQuest(false, true);
htmltext = event;

View File

@ -43,7 +43,7 @@ public class Q11006_FuturePeople extends Quest
private static final int BEZIQUE = 30379;
// Items
private static final int SCROLL_OF_BLOOD_MELODY = 49772;
private static final int FIRST_CLASS_BUFF_SCROLL = 29654;
private static final int IMPROVED_SOE = 49087;
// Misc
@ -126,7 +126,7 @@ public class Q11006_FuturePeople extends Quest
{
if (qs.getCond() > 1)
{
giveItems(player, SCROLL_OF_BLOOD_MELODY, 2);
giveItems(player, FIRST_CLASS_BUFF_SCROLL, 5);
giveItems(player, IMPROVED_SOE, 1);
qs.exitQuest(false, true);
htmltext = event;

View File

@ -40,7 +40,7 @@ public class Q11012_FutureElves extends Quest
private static final int ROSELLA = 30414;
private static final int MANUEL = 30293;
// Items
private static final int SCROLL_OF_BLOOD_MELODY = 49772;
private static final int FIRST_CLASS_BUFF_SCROLL = 29654;
private static final int IMPROVED_SOE = 49087;
// Misc
private static final int MIN_LEVEL = 19;
@ -113,7 +113,7 @@ public class Q11012_FutureElves extends Quest
{
if (qs.getCond() > 1)
{
giveItems(player, SCROLL_OF_BLOOD_MELODY, 2);
giveItems(player, FIRST_CLASS_BUFF_SCROLL, 5);
giveItems(player, IMPROVED_SOE, 1);
qs.exitQuest(false, true);
htmltext = event;

View File

@ -41,7 +41,7 @@ public class Q11018_FutureDarkElves extends Quest
private static final int SIDRA = 30330;
// Items
private static final int SCROLL_OF_BLOOD_MELODY = 49772;
private static final int FIRST_CLASS_BUFF_SCROLL = 29654;
private static final int IMPROVED_SOE = 49087;
// Misc
@ -115,7 +115,7 @@ public class Q11018_FutureDarkElves extends Quest
{
if (qs.getCond() > 1)
{
giveItems(player, SCROLL_OF_BLOOD_MELODY, 2);
giveItems(player, FIRST_CLASS_BUFF_SCROLL, 5);
giveItems(player, IMPROVED_SOE, 1);
qs.exitQuest(false, true);
htmltext = event;

View File

@ -1,4 +1,4 @@
<html><body>Fishing Specialist Pierre:<br>
For me fishing is the best way to have a rest. It helps me to relax, to forget about mortal coil, gives you peace of mind. However, it might end soon. There are some gossips that dirty water from the northwestern part of the Alligator Island kills all the fish. I'm afraid that these gossips might be true... Will you help me to deal with this problem and allay my anxiety?<br>
(Only characters Lv. 20-75 can take this quest.)
(Only characters Lv. 20 or above can take this quest.)
</body></html>

View File

@ -41,14 +41,13 @@ public class Q00127_FishingSpecialistsRequest extends Quest
private static final Location TELEPORT_LOC = new Location(105276, 162500, -3600);
// Misc
private static final int MIN_LEVEL = 20;
private static final int MAX_LEVEL = 75;
public Q00127_FishingSpecialistsRequest()
{
super(127);
addStartNpc(PIERRE);
addTalkId(PIERRE, FERMA, BAIKAL);
addCondLevel(MIN_LEVEL, MAX_LEVEL, "30013-00.htm");
addCondMinLevel(MIN_LEVEL, "30013-00.htm");
registerQuestItems(PIERRE_LETTER, FISH_REPORT, SEALED_BOTTLE);
}

View File

@ -39,7 +39,7 @@ public class Q10993_FutureDwarves extends Quest
private static final int SILVERA = 30527;
// Items
private static final int SCROLL_OF_BLOOD_MELODY = 49772;
private static final int FIRST_CLASS_BUFF_SCROLL = 29654;
private static final int IMPROVED_SOE = 49087;
// Misc
@ -94,7 +94,7 @@ public class Q10993_FutureDwarves extends Quest
{
if (qs.getCond() > 1)
{
giveItems(player, SCROLL_OF_BLOOD_MELODY, 2);
giveItems(player, FIRST_CLASS_BUFF_SCROLL, 5);
giveItems(player, IMPROVED_SOE, 1);
qs.exitQuest(false, true);
htmltext = event;

View File

@ -39,7 +39,7 @@ public class Q10994_FutureOrcs extends Quest
private static final int GANTAKAI = 30587;
private static final int HESTUI = 30585;
// Items
private static final int SCROLL_OF_BLOOD_MELODY = 49772;
private static final int FIRST_CLASS_BUFF_SCROLL = 29654;
private static final int IMPROVED_SOE = 49087;
// Misc
private static final int MIN_LEVEL = 19;
@ -103,7 +103,7 @@ public class Q10994_FutureOrcs extends Quest
{
if (qs.getCond() > 1)
{
giveItems(player, SCROLL_OF_BLOOD_MELODY, 2);
giveItems(player, FIRST_CLASS_BUFF_SCROLL, 5);
giveItems(player, IMPROVED_SOE, 1);
qs.exitQuest(false, true);
htmltext = event;

View File

@ -43,7 +43,7 @@ public class Q11006_FuturePeople extends Quest
private static final int BEZIQUE = 30379;
// Items
private static final int SCROLL_OF_BLOOD_MELODY = 49772;
private static final int FIRST_CLASS_BUFF_SCROLL = 29654;
private static final int IMPROVED_SOE = 49087;
// Misc
@ -126,7 +126,7 @@ public class Q11006_FuturePeople extends Quest
{
if (qs.getCond() > 1)
{
giveItems(player, SCROLL_OF_BLOOD_MELODY, 2);
giveItems(player, FIRST_CLASS_BUFF_SCROLL, 5);
giveItems(player, IMPROVED_SOE, 1);
qs.exitQuest(false, true);
htmltext = event;

View File

@ -40,7 +40,7 @@ public class Q11012_FutureElves extends Quest
private static final int ROSELLA = 30414;
private static final int MANUEL = 30293;
// Items
private static final int SCROLL_OF_BLOOD_MELODY = 49772;
private static final int FIRST_CLASS_BUFF_SCROLL = 29654;
private static final int IMPROVED_SOE = 49087;
// Misc
private static final int MIN_LEVEL = 19;
@ -113,7 +113,7 @@ public class Q11012_FutureElves extends Quest
{
if (qs.getCond() > 1)
{
giveItems(player, SCROLL_OF_BLOOD_MELODY, 2);
giveItems(player, FIRST_CLASS_BUFF_SCROLL, 5);
giveItems(player, IMPROVED_SOE, 1);
qs.exitQuest(false, true);
htmltext = event;

View File

@ -41,7 +41,7 @@ public class Q11018_FutureDarkElves extends Quest
private static final int SIDRA = 30330;
// Items
private static final int SCROLL_OF_BLOOD_MELODY = 49772;
private static final int FIRST_CLASS_BUFF_SCROLL = 29654;
private static final int IMPROVED_SOE = 49087;
// Misc
@ -115,7 +115,7 @@ public class Q11018_FutureDarkElves extends Quest
{
if (qs.getCond() > 1)
{
giveItems(player, SCROLL_OF_BLOOD_MELODY, 2);
giveItems(player, FIRST_CLASS_BUFF_SCROLL, 5);
giveItems(player, IMPROVED_SOE, 1);
qs.exitQuest(false, true);
htmltext = event;

View File

@ -1,4 +1,4 @@
<html><body>Fishing Specialist Pierre:<br>
For me fishing is the best way to have a rest. It helps me to relax, to forget about mortal coil, gives you peace of mind. However, it might end soon. There are some gossips that dirty water from the northwestern part of the Alligator Island kills all the fish. I'm afraid that these gossips might be true... Will you help me to deal with this problem and allay my anxiety?<br>
(Only characters Lv. 20-75 can take this quest.)
(Only characters Lv. 20 or above can take this quest.)
</body></html>

View File

@ -41,14 +41,13 @@ public class Q00127_FishingSpecialistsRequest extends Quest
private static final Location TELEPORT_LOC = new Location(105276, 162500, -3600);
// Misc
private static final int MIN_LEVEL = 20;
private static final int MAX_LEVEL = 75;
public Q00127_FishingSpecialistsRequest()
{
super(127);
addStartNpc(PIERRE);
addTalkId(PIERRE, FERMA, BAIKAL);
addCondLevel(MIN_LEVEL, MAX_LEVEL, "30013-00.htm");
addCondMinLevel(MIN_LEVEL, "30013-00.htm");
registerQuestItems(PIERRE_LETTER, FISH_REPORT, SEALED_BOTTLE);
}

View File

@ -1,4 +1,4 @@
<html><body>Fishing Specialist Pierre:<br>
For me fishing is the best way to have a rest. It helps me to relax, to forget about mortal coil, gives you peace of mind. However, it might end soon. There are some gossips that dirty water from the northwestern part of the Alligator Island kills all the fish. I'm afraid that these gossips might be true... Will you help me to deal with this problem and allay my anxiety?<br>
(Only characters Lv. 20-75 can take this quest.)
(Only characters Lv. 20 or above can take this quest.)
</body></html>

View File

@ -41,14 +41,13 @@ public class Q00127_FishingSpecialistsRequest extends Quest
private static final Location TELEPORT_LOC = new Location(105276, 162500, -3600);
// Misc
private static final int MIN_LEVEL = 20;
private static final int MAX_LEVEL = 75;
public Q00127_FishingSpecialistsRequest()
{
super(127);
addStartNpc(PIERRE);
addTalkId(PIERRE, FERMA, BAIKAL);
addCondLevel(MIN_LEVEL, MAX_LEVEL, "30013-00.htm");
addCondMinLevel(MIN_LEVEL, "30013-00.htm");
registerQuestItems(PIERRE_LETTER, FISH_REPORT, SEALED_BOTTLE);
}

View File

@ -1,4 +1,4 @@
<html><body>Fishing Specialist Pierre:<br>
For me fishing is the best way to have a rest. It helps me to relax, to forget about mortal coil, gives you peace of mind. However, it might end soon. There are some gossips that dirty water from the northwestern part of the Alligator Island kills all the fish. I'm afraid that these gossips might be true... Will you help me to deal with this problem and allay my anxiety?<br>
(Only characters Lv. 20-75 can take this quest.)
(Only characters Lv. 20 or above can take this quest.)
</body></html>

View File

@ -41,14 +41,13 @@ public class Q00127_FishingSpecialistsRequest extends Quest
private static final Location TELEPORT_LOC = new Location(105276, 162500, -3600);
// Misc
private static final int MIN_LEVEL = 20;
private static final int MAX_LEVEL = 75;
public Q00127_FishingSpecialistsRequest()
{
super(127);
addStartNpc(PIERRE);
addTalkId(PIERRE, FERMA, BAIKAL);
addCondLevel(MIN_LEVEL, MAX_LEVEL, "30013-00.htm");
addCondMinLevel(MIN_LEVEL, "30013-00.htm");
registerQuestItems(PIERRE_LETTER, FISH_REPORT, SEALED_BOTTLE);
}

View File

@ -1,4 +1,4 @@
<html><body>Fishing Specialist Pierre:<br>
For me fishing is the best way to have a rest. It helps me to relax, to forget about mortal coil, gives you peace of mind. However, it might end soon. There are some gossips that dirty water from the northwestern part of the Alligator Island kills all the fish. I'm afraid that these gossips might be true... Will you help me to deal with this problem and allay my anxiety?<br>
(Only characters Lv. 20-75 can take this quest.)
(Only characters Lv. 20 or above can take this quest.)
</body></html>

View File

@ -41,14 +41,13 @@ public class Q00127_FishingSpecialistsRequest extends Quest
private static final Location TELEPORT_LOC = new Location(105276, 162500, -3600);
// Misc
private static final int MIN_LEVEL = 20;
private static final int MAX_LEVEL = 75;
public Q00127_FishingSpecialistsRequest()
{
super(127);
addStartNpc(PIERRE);
addTalkId(PIERRE, FERMA, BAIKAL);
addCondLevel(MIN_LEVEL, MAX_LEVEL, "30013-00.htm");
addCondMinLevel(MIN_LEVEL, "30013-00.htm");
registerQuestItems(PIERRE_LETTER, FISH_REPORT, SEALED_BOTTLE);
}

View File

@ -1,4 +1,4 @@
<html><body>Fishing Specialist Pierre:<br>
For me fishing is the best way to have a rest. It helps me to relax, to forget about mortal coil, gives you peace of mind. However, it might end soon. There are some gossips that dirty water from the northwestern part of the Alligator Island kills all the fish. I'm afraid that these gossips might be true... Will you help me to deal with this problem and allay my anxiety?<br>
(Only characters Lv. 20-75 can take this quest.)
(Only characters Lv. 20 or above can take this quest.)
</body></html>

View File

@ -41,14 +41,13 @@ public class Q00127_FishingSpecialistsRequest extends Quest
private static final Location TELEPORT_LOC = new Location(105276, 162500, -3600);
// Misc
private static final int MIN_LEVEL = 20;
private static final int MAX_LEVEL = 75;
public Q00127_FishingSpecialistsRequest()
{
super(127);
addStartNpc(PIERRE);
addTalkId(PIERRE, FERMA, BAIKAL);
addCondLevel(MIN_LEVEL, MAX_LEVEL, "30013-00.htm");
addCondMinLevel(MIN_LEVEL, "30013-00.htm");
registerQuestItems(PIERRE_LETTER, FISH_REPORT, SEALED_BOTTLE);
}