Package l2p.gameserver.clientpackets

Source Code of l2p.gameserver.clientpackets.Appearing

package l2p.gameserver.clientpackets;

import l2p.gameserver.model.L2Player;

public class Appearing extends L2GameClientPacket
{
  @Override
  public void readImpl()
  {
  }

  @Override
  public void runImpl()
  {
    final L2Player activeChar = getClient().getActiveChar();
    if(activeChar == null)
    {
      return;
    }
    if(activeChar.isLogoutStarted())
    {
      activeChar.sendActionFailed();
      return;
    }
    if(activeChar.getObserverMode() == 1)
    {
      activeChar.appearObserverMode();
      return;
    }
    if(activeChar.getObserverMode() == 2)
    {
      activeChar.returnFromObserverMode();
      return;
    }
    if(!activeChar.isTeleporting())
    {
      activeChar.sendActionFailed();
      return;
    }
    activeChar.onTeleported();
  }
}
TOP

Related Classes of l2p.gameserver.clientpackets.Appearing

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.