Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.ExGetBookMarkInfo


  public void runImpl()
  {
    L2Player activeChar = getClient().getActiveChar();
    if(activeChar != null && activeChar.bookmarks.add(name, acronym, icon))
    {
      activeChar.sendPacket(new ExGetBookMarkInfo(activeChar));
    }
  }
View Full Code Here


    L2Player activeChar = getClient().getActiveChar();
    if(activeChar != null)
    {
      //TODO Msg.THE_SAVED_TELEPORT_LOCATION_WILL_BE_DELETED_DO_YOU_WISH_TO_CONTINUE
      activeChar.bookmarks.remove(slot);
      activeChar.sendPacket(new ExGetBookMarkInfo(activeChar));
    }
  }
View Full Code Here

  @Override
  public void runImpl()
  {
    L2Player activeChar = getClient().getActiveChar();
    activeChar.sendPacket(new ExGetBookMarkInfo(activeChar));
  }
View Full Code Here

  {
    L2Player activeChar = getClient().getActiveChar();
    if(activeChar != null)
    {
      activeChar.bookmarks.get(slot).setName(name).setIcon(icon).setAcronym(acronym);
      activeChar.sendPacket(new ExGetBookMarkInfo(activeChar));
    }
  }
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.ExGetBookMarkInfo

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.