12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /*
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option) any later
- * version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.l2jserver.gameserver.network.clientpackets;
- import com.l2jserver.gameserver.model.L2World;
- import com.l2jserver.gameserver.model.PartyMatchRoom;
- import com.l2jserver.gameserver.model.PartyMatchRoomList;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.serverpackets.ExClosePartyRoom;
- import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
- /**
- * format (ch) d
- * @author -Wooden-
- *
- */
- public final class RequestOustFromPartyRoom extends L2GameClientPacket
- {
- private static final String _C__D0_09_REQUESTOUSTFROMPARTYROOM = "[C] D0:09 RequestOustFromPartyRoom";
-
- private int _charid;
-
- @Override
- protected void readImpl()
- {
- _charid = readD();
- }
-
- @Override
- protected void runImpl()
- {
- L2PcInstance activeChar = getClient().getActiveChar();
- if (activeChar == null)
- return;
-
- L2PcInstance member = L2World.getInstance().getPlayer(_charid);
- if (member == null)
- return;
- PartyMatchRoom _room = PartyMatchRoomList.getInstance().getPlayerRoom(member);
- if (_room == null)
- return;
-
- if (_room.getOwner() != activeChar)
- return;
- if (activeChar.isInParty() && member.isInParty() && activeChar.getParty().getPartyLeaderOID() == member.getParty().getPartyLeaderOID())
- {
- activeChar.sendPacket(new SystemMessage(SystemMessageId.CANNOT_DISMISS_PARTY_MEMBER));
- }
- else
- {
- _room.deleteMember(member);
- member.setPartyRoom(0);
- member.sendPacket(new ExClosePartyRoom());
- member.sendPacket(new SystemMessage(SystemMessageId.OUSTED_FROM_PARTY_ROOM));
- }
- }
-
- @Override
- public String getType()
- {
- return _C__D0_09_REQUESTOUSTFROMPARTYROOM;
- }
-
- }
|