L2JMobius

The Source of Flame attack bug

the_coca_ · 7 · 538

Offline the_coca_

  • Knight
  • ***
    • Posts: 66
Hello, when I start attacking with the char it stops attacking after a few hits and I have to move the char so it can continue attacking. I also have a bug that sometimes the next target doesn't work. any ideas?


Online Jojo123

  • Elder
  • ****
    • Posts: 117
formulas.java
final double chance = target.getStat().getValue(Stat.VENGEANCE_SKILL_PHYSICAL_DAMAGE, 0);
      if (Rnd.get(100) < chance)

final double chance = target.getStat().getValue(Stat.VENGEANCE_SKILL_PHYSICAL_DAMAGE, 0);
      if (ThreadLocalRandom.current().nextInt(100) < chance)

After this my char only stop when targets are near objects / walls. Check it


Offline the_coca_

  • Knight
  • ***
    • Posts: 66
formulas.java
final double chance = target.getStat().getValue(Stat.VENGEANCE_SKILL_PHYSICAL_DAMAGE, 0);
      if (Rnd.get(100) < chance)

final double chance = target.getStat().getValue(Stat.VENGEANCE_SKILL_PHYSICAL_DAMAGE, 0);
      if (ThreadLocalRandom.current().nextInt(100) < chance)

After this my char only stop when targets are near objects / walls. Check it

what archive?


Online Jojo123

  • Elder
  • ****
    • Posts: 117
sorry this will change nothing actually


Offline Puppyrawr

  • Viscount
  • *****
    • Posts: 379
  • L2AquaSage
    • L2AquaSage
Hello, when I start attacking with the char it stops attacking after a few hits and I have to move the char so it can continue attacking. I also have a bug that sometimes the next target doesn't work. any ideas?

Download and Use Geodata



Offline the_coca_

  • Knight
  • ***
    • Posts: 66
Download and Use Geodata

yes i have geo, but the problem is only with the fighter autoplay... with mage working good, rare