Examples of ExBR_PresentBuyProductPacket


Examples of lineage2.gameserver.network.serverpackets.ExBR_PresentBuyProductPacket

      return;
    }
    ProductItem product = ProductHolder.getInstance().getProduct(productId);
    if (product == null)
    {
      activeChar.sendPacket(new ExBR_PresentBuyProductPacket(ExBR_PresentBuyProductPacket.RESULT_WRONG_PRODUCT));
      return;
    }
    if ((System.currentTimeMillis() < product.getStartTimeSale()) || (System.currentTimeMillis() > product.getEndTimeSale()))
    {
      activeChar.sendPacket(new ExBR_PresentBuyProductPacket(ExBR_PresentBuyProductPacket.RESULT_SALE_PERIOD_ENDED));
      return;
    }
    int totalPoints = product.getPoints() * count;
    if (totalPoints < 0)
    {
      activeChar.sendPacket(new ExBR_PresentBuyProductPacket(ExBR_PresentBuyProductPacket.RESULT_WRONG_PRODUCT));
      return;
    }
    final long gamePointSize = activeChar.getPremiumPoints();
    if (totalPoints > gamePointSize)
    {
      activeChar.sendPacket(new ExBR_PresentBuyProductPacket(ExBR_PresentBuyProductPacket.RESULT_NOT_ENOUGH_POINTS));
      return;
    }
    int recieverId;
    Player target = World.getPlayer(receiverName);
    if (target != null)
    {
      recieverId = target.getObjectId();
      receiverName = target.getName();
      if (target.isInBlockList(activeChar))
      {
        activeChar.sendPacket(new SystemMessage(SystemMessage.S1_HAS_BLOCKED_YOU_YOU_CANNOT_SEND_MAIL_TO_S1_).addString(receiverName));
        return;
      }
    }
    else
    {
      recieverId = CharacterDAO.getInstance().getObjectIdByName(receiverName);
      if (recieverId > 0)
      {
        if (mysql.simple_get_int("target_Id", "character_blocklist", "obj_Id=" + recieverId + " AND target_Id=" + activeChar.getObjectId()) > 0)
        {
          activeChar.sendPacket(new SystemMessage(SystemMessage.S1_HAS_BLOCKED_YOU_YOU_CANNOT_SEND_MAIL_TO_S1_).addString(receiverName));
          return;
        }
      }
    }
    if (recieverId == 0)
    {
      activeChar.sendPacket(Msg.WHEN_THE_RECIPIENT_DOESN_T_EXIST_OR_THE_CHARACTER_HAS_BEEN_DELETED_SENDING_MAIL_IS_NOT_POSSIBLE);
      return;
    }
    activeChar.reducePremiumPoints(totalPoints);
    List<ItemInstance> attachments = new ArrayList<>();
    for (ProductItemComponent comp : product.getComponents())
    {
      ItemInstance item = ItemFunctions.createItem(comp.getItemId());
      item.setCount(comp.getCount());
      item.setOwnerId(activeChar.getObjectId());
      item.setLocation(ItemInstance.ItemLocation.MAIL);
      if (item.getJdbcState().isSavable())
      {
        item.save();
      }
      else
      {
        item.setJdbcState(JdbcEntityState.UPDATED);
        item.update();
      }
      attachments.add(item);
    }
    Mail mail = new Mail();
    mail.setSenderId(activeChar.getObjectId());
    mail.setSenderName(activeChar.getName());
    mail.setReceiverId(recieverId);
    mail.setReceiverName(receiverName);
    mail.setTopic(topic);
    mail.setBody(message);
    mail.setPrice(0);
    mail.setUnread(true);
    mail.setType(Mail.SenderType.PRESENT);
    mail.setExpireTime((720 * 3600) + (int) (System.currentTimeMillis() / 1000L));
    for (ItemInstance item : attachments)
    {
      mail.addAttachment(item);
    }
    mail.save();
    activeChar.sendPacket(new ExBR_GamePoint(activeChar));
    activeChar.sendPacket(new ExBR_PresentBuyProductPacket(ExBR_PresentBuyProductPacket.RESULT_OK));
    activeChar.sendChanges();
    if (target != null)
    {
      target.sendPacket(ExNoticePostArrived.STATIC_TRUE);
      target.sendPacket(Msg.THE_MAIL_HAS_ARRIVED);
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.