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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...