Jump to content
  • 0

Help To Limiting Stats


Mellion

Question

Hello i have problem whit this limiting stats on acis.

Like casting speed, Movements speed , Runspeed.

Can help me please?

 

# Maximum Run Speed
RunSpeedBoost = 0
# Maximum Base Run Speed
MaxRunSpeed = 250
( don't know those) 

 

 

 

Config/custom.properties

# Maximum Casting Speed
MaxMAtkSpeed = 1
 
 
net.sf.l2j. Config
 
public static int MAX_MATK_SPEED;
 
MAX_MATK_SPEED = Custom.getProperty("MaxMAtkSpeed", 1999);
 
 
net.sf.l2j.gameserver.model.actor.stat.CharStat;
 
public int getMAtkSpd()
{
return Math.min((int) calcStat(Stats.MAGIC_ATTACK_SPEED, 333.0 * ((_activeChar.isChampion()) ? Config.CHAMPION_SPD_ATK : 1), null, null), Config.MAX_MATK_SPEED);
}
 
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now


×
×
  • Create New...