Start of Fate fixes.

Contributed by Stayway.
This commit is contained in:
MobiusDev
2017-08-12 21:48:47 +00:00
parent 052029531f
commit 475df4f0d7
2 changed files with 21 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
<html><body>High Prefect Took:<br>
I knew you'd say yes! Well well, let's work on that class transfer of yours, shall we? <font color="LEVEL">Orc Shaman</font>, was it?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10331_StartOfFate classChange;47">Orc Monk</Button>Orc Shaman</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10331_StartOfFate classChange;50">Orc Shaman</Button>
</body></html>

View File

@@ -179,63 +179,83 @@ public final class Q10331_StartOfFate extends Quest
{
case WARRIOR:
htmltext = "32153-15.htm";
qs.exitQuest(false, true);
break;
case KNIGHT:
htmltext = "32153-16.htm";
qs.exitQuest(false, true);
break;
case ROGUE:
htmltext = "32153-17.htm";
qs.exitQuest(false, true);
break;
case WIZARD:
htmltext = "32153-18.htm";
qs.exitQuest(false, true);
break;
case CLERIC:
htmltext = "32153-19.htm";
qs.exitQuest(false, true);
break;
case ELVEN_KNIGHT:
htmltext = "32147-14.htm";
qs.exitQuest(false, true);
break;
case ELVEN_SCOUT:
htmltext = "32147-15.htm";
qs.exitQuest(false, true);
break;
case ELVEN_WIZARD:
htmltext = "32147-16.htm";
qs.exitQuest(false, true);
break;
case ORACLE:
htmltext = "32147-17.htm";
qs.exitQuest(false, true);
break;
case PALUS_KNIGHT:
htmltext = "32160-14.htm";
qs.exitQuest(false, true);
break;
case ASSASSIN:
htmltext = "32160-15.htm";
qs.exitQuest(false, true);
break;
case DARK_WIZARD:
htmltext = "32160-16.htm";
qs.exitQuest(false, true);
break;
case SHILLIEN_ORACLE:
htmltext = "32160-17.htm";
qs.exitQuest(false, true);
break;
case ORC_RAIDER:
htmltext = "32150-14.htm";
qs.exitQuest(false, true);
break;
case ORC_MONK:
htmltext = "32150-15.htm";
qs.exitQuest(false, true);
break;
case ORC_SHAMAN:
htmltext = "32150-16.htm";
qs.exitQuest(false, true);
break;
case SCAVENGER:
htmltext = "32157-11.htm";
qs.exitQuest(false, true);
break;
case ARTISAN:
htmltext = "32157-12.htm";
qs.exitQuest(false, true);
break;
case TROOPER:
htmltext = "32146-12.htm";
qs.exitQuest(false, true);
break;
case WARDER:
htmltext = "32146-13.htm";
qs.exitQuest(false, true);
break;
}
player.setBaseClass(newClassId);
@@ -250,7 +270,6 @@ public final class Q10331_StartOfFate extends Quest
giveItems(player, PAULINAS_SET_D_GRADE, 1);
giveItems(player, PROOF_OF_COURAGE, 40);
addExpAndSp(player, 296000, 15);
qs.exitQuest(false, true);
}
}
}