Examples of ExNoticePostArrived


Examples of l2p.gameserver.serverpackets.ExNoticePostArrived

    // цель существует и не против принять почту
    MailParcelController.getInstance().sendLetter(letter, _attItems, _attItemsQ, cha);
    cha.sendPacket(new ExReplyWritePost(1));
    if(target != null)
    {
      target.sendPacket(new ExNoticePostArrived(1));
    }
  }
View Full Code Here

Examples of l2p.gameserver.serverpackets.ExNoticePostArrived

  private void checkNewMail(L2Player activeChar)
  {
    if(mysql.simple_get_int("messageId", "mail", "unread AND receiver=" + activeChar.getObjectId()) > 0)
    {
      sendPacket(new ExNoticePostArrived(0));
    }
  }
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.