L2JMobius

Classic Seven Signs hi about Chain Heal how to change code ?

Arcteryx · 1 · 1304

Offline Arcteryx

  • Knight
  • ***
    • Posts: 61
<skill id="1553" toLevel="1" name="Chain Heal">

This skill can Heal all the players nearby.

When I want to give Heal to the target in the city,
sometimes very hard to Heal target. how to change java code must Heal selected target

this is original code
RangeSortByHp.java

result.stream()
.sorted(Comparator.comparingInt(L2Character::getCurrentHpPercent))
.limit(affectLimit > 0 ? affectLimit : Long.MAX_VALUE)
.forEach(action);

I want to set it on my server like this how to change code ?