Examples of checkLandingState()


Examples of l2p.gameserver.model.L2Player.checkLandingState()

        }
        else if(pet == null || !pet.isMountable())
        {
          if(activeChar.isMounted())
          {
            if(activeChar.isFlying() && !activeChar.checkLandingState()) // Виверна
            {
              activeChar.sendPacket(Msg.YOU_ARE_NOT_ALLOWED_TO_DISMOUNT_AT_THIS_LOCATION, Msg.ActionFail);
              return;
            }
            activeChar.setMount(0, 0, 0);
View Full Code Here

Examples of lineage2.gameserver.model.Player.checkLandingState()

            {
              activeChar.sendPacket(SystemMsg.YOU_CANNOT_BOARD_BECAUSE_YOU_DO_NOT_MEET_THE_REQUIREMENTS);
            }
            else if (activeChar.isMounted())
            {
              if (activeChar.isFlying() && !activeChar.checkLandingState())
              {
                activeChar.sendPacket(Msg.YOU_ARE_NOT_ALLOWED_TO_DISMOUNT_AT_THIS_LOCATION, ActionFail.STATIC);
                activeChar.sendActionFailed();
                return;
              }
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.