L2JMobius

The Source of Flame The character does not reach level 85 after the initial quest chain

CondorUA · 4 · 637

Offline CondorUA

  • Black Sheep
  • Heir
  • **
    • Posts: 39
The character does not reach level 85 after the initial quest chain


Online nasseka

  • Distinguished King
  • *****
    • Posts: 1729
    • L2Unknown
If you are correct, on Q11027_PathOfDestinyOvercome.java should make the following change
+ removing the INSTANT_LEVEL_85 var?
Code: [Select]
case "34505-07.html":
{
if (qs.isCond(17))
{
qs.setCond(18, true);
htmltext = event;
if (!player.getVariables().getBoolean(REWARD_CHECK_VAR6, false))
{
player.getVariables().set(REWARD_CHECK_VAR6, true);
if (player.getLevel() < LEVEL_85)
{
addExpAndSp(player, (ExperienceData.getInstance().getExpForLevel(LEVEL_85) + 1) - player.getExp(), 38);
}
giveAdena(player, 420000, true);
}
}
break;
}


Offline CondorUA

  • Black Sheep
  • Heir
  • **
    • Posts: 39
If you are correct, on Q11027_PathOfDestinyOvercome.java should make the following change
+ removing the INSTANT_LEVEL_85 var?
Code: [Select]
case "34505-07.html":
{
if (qs.isCond(17))
{
qs.setCond(18, true);
htmltext = event;
if (!player.getVariables().getBoolean(REWARD_CHECK_VAR6, false))
{
player.getVariables().set(REWARD_CHECK_VAR6, true);
if (player.getLevel() < LEVEL_85)
{
addExpAndSp(player, (ExperienceData.getInstance().getExpForLevel(LEVEL_85) + 1) - player.getExp(), 38);
}
giveAdena(player, 420000, true);
}
}
break;
}
Everything worked out. Super. Thank you


Online Mobius

  • Distinguished King
  • *****
    • Posts: 16153
Again, retail behavior.
You report things that do not fit your taste without knowing how it works on retail for this client.