Package com.l2jfrozen.gameserver.model

Examples of com.l2jfrozen.gameserver.model.L2Character.stopSkillEffects()


          {
            // activate attacked effects, if any
            if(Formulas.getInstance().calcSkillSuccess(activeChar, target, skill,false,sps,bss))
            {
              // Like L2OFF must remove the first effect only if the second effect is successful
              target.stopSkillEffects(skill.getId());
              skill.getEffects(activeChar, target,false,sps,bss);
            }
            else
            {
              SystemMessage sm = new SystemMessage(SystemMessageId.S1_WAS_UNAFFECTED_BY_S2);
View Full Code Here


        activeChar.sendDamageMessage(target, damage, false, false, false);

      }

      // activate attacked effects, if any
      target.stopSkillEffects(getId());
      getEffects(activeChar, target,false,sps,bss);
    }
   
    if (bss){
      activeChar.removeBss();
View Full Code Here

            activeChar.sendPacket(sm);
          }
          else
          {
            // activate attacked effects, if any
            target.stopSkillEffects(getId());
            if (Formulas.getInstance().calcSkillSuccess(activeChar, target, this, false, sps, bss))
            {
              getEffects(activeChar, target, false, sps, bss);
            }
            else
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.