Examples of ExGetBookMarkInfo


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

Examples of l2p.gameserver.serverpackets.ExGetBookMarkInfo

    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

Examples of l2p.gameserver.serverpackets.ExGetBookMarkInfo

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

Examples of l2p.gameserver.serverpackets.ExGetBookMarkInfo

  {
    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

Examples of lineage2.gameserver.network.serverpackets.ExGetBookMarkInfo

  {
    Player activeChar = getClient().getActiveChar();
    if (activeChar != null)
    {
      activeChar.bookmarks.remove(slot);
      activeChar.sendPacket(new ExGetBookMarkInfo(activeChar));
    }
  }
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExGetBookMarkInfo

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

Examples of lineage2.gameserver.network.serverpackets.ExGetBookMarkInfo

   */
  @Override
  protected void runImpl()
  {
    Player activeChar = getClient().getActiveChar();
    activeChar.sendPacket(new ExGetBookMarkInfo(activeChar));
  }
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExGetBookMarkInfo

      if (mark != null)
      {
        mark.setName(name);
        mark.setIcon(icon);
        mark.setAcronym(acronym);
        activeChar.sendPacket(new ExGetBookMarkInfo(activeChar));
      }
    }
  }
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.