Examples of ExRegenMax


Examples of l2p.gameserver.serverpackets.ExRegenMax

  public void onStart()
  {
    super.onStart();
    if(getEffected().isPlayer() && getCount() > 0 && getPeriod() > 0)
    {
      getEffected().sendPacket(new ExRegenMax(calc(), (int) (getCount() * getPeriod() / 1000), Math.round(getPeriod() / 1000)));
    }
    /**
     switch(getSkill().getId().intValue())
     {
     case 2031: // Lesser Healing Potion
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExRegenMax

  public void onStart()
  {
    super.onStart();
    if (getEffected().isPlayer() && (getCount() > 0) && (getPeriod() > 0))
    {
      getEffected().sendPacket(new ExRegenMax(calc(), (int) ((getCount() * getPeriod()) / 1000), Math.round(getPeriod() / 1000)));
    }
  }
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExRegenMax

  public void onStart()
  {
    super.onStart();
    if (getEffected().isPlayer() && (getCount() > 0) && (getPeriod() > 0))
    {
      getEffected().sendPacket(new ExRegenMax(calc(), (int) ((getCount() * getPeriod()) / 1000), Math.round(getPeriod() / 1000)));
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.