Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.PetStatusShow


      // The color to display in the select window is White
      player.sendPacket(new MyTargetSelected(getObjectId(), 0), makeStatusUpdate(StatusUpdate.CUR_HP, StatusUpdate.MAX_HP));
    }
    else if(player == owner)
    {
      player.sendPacket(new PetInfo(this), new PetStatusShow(this), Msg.ActionFail);
    }
    else if(isAutoAttackable(player))
    {
      // Player with lvl < 21 can't attack a cursed weapon holder
      // And a cursed weapon holder  can't attack players with lvl < 21
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.PetStatusShow

Copyright © 2018 www.massapicom. 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.