L2JMobius

High Five Fix AOE skills on white players

vert · 2 · 6733

Offline vert

  • Knight
  • ***
    • Posts: 70
Hi, the title say what is this fix;

Your code:
Quote
// attack of the own pet does not flag player
// triggering trap not flag trap owner
if ((player.getSummon() != target) && !isTrap() && !((skill.getEffectPoint() == 0) && (skill.getAffectRange() > 0)))
{
   player.updatePvPStatus((L2Character) target);
}

Fixed:
Quote
// attack of the own pet does not flag player
// triggering trap not flag trap owner
if ((player.getSummon() != target) && !isTrap() && !((skill.getEffectPoint() == 0) && (skill.getAffectRange() > 0)) && skill.isBad())
{
   player.updatePvPStatus((L2Character) target);
}


Online Mobius

  • Distinguished King
  • *****
    • Posts: 16041