Jump to content
  • 0

How to change the blow success?


paparas21

Question

i am in the file formulas.java 29 with eclipse and i see this:

 

/** Calcul value of blow success */

public final boolean calcBlow(L2Character activeChar, L2Character target, int chance)

{

return activeChar.calcStat(Stats.BLOW_RATE, chance*(1.0+(activeChar.getDEX()-20)/100), target, null)>Rnd.get(100);

}

 

and i don't know how to change the blow success i mean how to change the dagger skill success plz i need help.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

 

      return activeChar.calcStat(Stats.BLOW_RATE, chance*(1.0+(activeChar.getDEX()-20)/100), target, null)>Rnd.get(100);

 

 

change the 1.0 multiplier to 2.0 or more and see if this helps...

Link to comment
Share on other sites

  • 0

gameserver.handler.skillhandler.blow.java there are private static final byte(or int idk now) value for front back and side blow land rate

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...