Package com.l2jfrozen.gameserver.model.actor.instance

Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.checkWaterState()


    if (activeChar.isAlikeDead())
      sendPacket(new Die(activeChar)); // No broadcast needed since the player will already spawn dead to others

    if (Config.ALLOW_WATER)
      activeChar.checkWaterState();

    if (Hero.getInstance().getHeroes() != null && Hero.getInstance().getHeroes().containsKey(activeChar.getObjectId()))
      activeChar.setHero(true);

    setPledgeClass(activeChar);
View Full Code Here


     
    }
   
    //check water
    if(Config.ALLOW_WATER)
      activeChar.checkWaterState();

    //check falling if previous client Z is less then
    if(Config.FALL_DAMAGE)
    {
      activeChar.isFalling(finalZ);
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.