Examples of unChargeShots()


Examples of l2p.gameserver.model.instances.L2NpcInstance.unChargeShots()

    {
      // Показываем анимацию зарядки шотов, если есть таковые.
      switch(actor.getTemplate().shots)
      {
        case SOUL:
          actor.unChargeShots(false);
          break;
        case SPIRIT:
        case BSPIRIT:
          actor.unChargeShots(true);
          break;
View Full Code Here

Examples of l2p.gameserver.model.instances.L2NpcInstance.unChargeShots()

        case SOUL:
          actor.unChargeShots(false);
          break;
        case SPIRIT:
        case BSPIRIT:
          actor.unChargeShots(true);
          break;
        case SOUL_SPIRIT:
        case SOUL_BSPIRIT:
          actor.unChargeShots(false);
          actor.unChargeShots(true);
View Full Code Here

Examples of l2p.gameserver.model.instances.L2NpcInstance.unChargeShots()

        case BSPIRIT:
          actor.unChargeShots(true);
          break;
        case SOUL_SPIRIT:
        case SOUL_BSPIRIT:
          actor.unChargeShots(false);
          actor.unChargeShots(true);
          break;
      }
      setIntention(CtrlIntention.AI_INTENTION_ATTACK, attacker);
    }
View Full Code Here

Examples of l2p.gameserver.model.instances.L2NpcInstance.unChargeShots()

          actor.unChargeShots(true);
          break;
        case SOUL_SPIRIT:
        case SOUL_BSPIRIT:
          actor.unChargeShots(false);
          actor.unChargeShots(true);
          break;
      }
      setIntention(CtrlIntention.AI_INTENTION_ATTACK, attacker);
    }
  }
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.