Package l2p.gameserver.clientpackets

Source Code of l2p.gameserver.clientpackets.RequestBookMarkSlotInfo

package l2p.gameserver.clientpackets;

import l2p.gameserver.model.L2Player;
import l2p.gameserver.serverpackets.ExGetBookMarkInfo;

public class RequestBookMarkSlotInfo extends L2GameClientPacket
{
  @Override
  public void readImpl()
  {
    //just trigger
  }

  @Override
  public void runImpl()
  {
    L2Player activeChar = getClient().getActiveChar();
    activeChar.sendPacket(new ExGetBookMarkInfo(activeChar));
  }
}
TOP

Related Classes of l2p.gameserver.clientpackets.RequestBookMarkSlotInfo

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.