Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.ExAskJoinPartyRoom


    {
      activeChar.sendPacket(Msg.ONLY_THE_LEADER_CAN_GIVE_OUT_INVITATIONS);
      return;
    }
    new Transaction(TransactionType.PARTY_ROOM, activeChar, targetChar, 10000);
    targetChar.sendPacket(new ExAskJoinPartyRoom(activeChar.getName()));
    activeChar.sendPacket(new SystemMessage(SystemMessage.S1_HAS_INVITED_YOU_TO_ENTER_THE_PARTY_ROOM).addString(targetChar.getName()));
  }
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.ExAskJoinPartyRoom

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.