123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- /*
- * Copyright (C) 2004-2015 L2J Server
- *
- * This file is part of L2J Server.
- *
- * L2J Server 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.
- *
- * L2J Server 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.serverpackets;
- import com.l2jserver.gameserver.model.entity.ClanHall;
- import com.l2jserver.gameserver.model.entity.ClanHall.ClanHallFunction;
- import com.l2jserver.gameserver.model.entity.clanhall.AuctionableHall;
- /**
- * @author Steuf
- */
- public class AgitDecoInfo extends L2GameServerPacket
- {
- private final AuctionableHall _clanHall;
-
- public AgitDecoInfo(AuctionableHall ClanHall)
- {
- _clanHall = ClanHall;
- }
-
- //@formatter:off
- /*
- * Packet send, must be confirmed
- writeC(0xf7);
- writeD(0); // clanhall id
- writeC(0); // FUNC_RESTORE_HP (Fireplace)
- writeC(0); // FUNC_RESTORE_MP (Carpet)
- writeC(0); // FUNC_RESTORE_MP (Statue)
- writeC(0); // FUNC_RESTORE_EXP (Chandelier)
- writeC(0); // FUNC_TELEPORT (Mirror)
- writeC(0); // Crytal
- writeC(0); // Curtain
- writeC(0); // FUNC_ITEM_CREATE (Magic Curtain)
- writeC(0); // FUNC_SUPPORT
- writeC(0); // FUNC_SUPPORT (Flag)
- writeC(0); // Front Platform
- writeC(0); // FUNC_ITEM_CREATE
- writeD(0);
- writeD(0);
- */
- //@formatter:on
- @Override
- protected final void writeImpl()
- {
- writeC(0xfd);
- writeD(_clanHall.getId()); // clanhall id
- // FUNC_RESTORE_HP
- ClanHallFunction function = _clanHall.getFunction(ClanHall.FUNC_RESTORE_HP);
- if ((function == null) || (function.getLvl() == 0))
- {
- writeC(0);
- }
- else if (((_clanHall.getGrade() == 0) && (function.getLvl() < 220)) || ((_clanHall.getGrade() == 1) && (function.getLvl() < 160)) || ((_clanHall.getGrade() == 2) && (function.getLvl() < 260)) || ((_clanHall.getGrade() == 3) && (function.getLvl() < 300)))
- {
- writeC(1);
- }
- else
- {
- writeC(2);
- }
- // FUNC_RESTORE_MP
- function = _clanHall.getFunction(ClanHall.FUNC_RESTORE_MP);
- if ((function == null) || (function.getLvl() == 0))
- {
- writeC(0);
- writeC(0);
- }
- else if ((((_clanHall.getGrade() == 0) || (_clanHall.getGrade() == 1)) && (function.getLvl() < 25)) || ((_clanHall.getGrade() == 2) && (function.getLvl() < 30)) || ((_clanHall.getGrade() == 3) && (function.getLvl() < 40)))
- {
- writeC(1);
- writeC(1);
- }
- else
- {
- writeC(2);
- writeC(2);
- }
- // FUNC_RESTORE_EXP
- function = _clanHall.getFunction(ClanHall.FUNC_RESTORE_EXP);
- if ((function == null) || (function.getLvl() == 0))
- {
- writeC(0);
- }
- else if (((_clanHall.getGrade() == 0) && (function.getLvl() < 25)) || ((_clanHall.getGrade() == 1) && (function.getLvl() < 30)) || ((_clanHall.getGrade() == 2) && (function.getLvl() < 40)) || ((_clanHall.getGrade() == 3) && (function.getLvl() < 50)))
- {
- writeC(1);
- }
- else
- {
- writeC(2);
- }
- // FUNC_TELEPORT
- function = _clanHall.getFunction(ClanHall.FUNC_TELEPORT);
- if ((function == null) || (function.getLvl() == 0))
- {
- writeC(0);
- }
- else if (function.getLvl() < 2)
- {
- writeC(1);
- }
- else
- {
- writeC(2);
- }
- writeC(0);
- // CURTAINS
- function = _clanHall.getFunction(ClanHall.FUNC_DECO_CURTAINS);
- if ((function == null) || (function.getLvl() == 0))
- {
- writeC(0);
- }
- else if (function.getLvl() <= 1)
- {
- writeC(1);
- }
- else
- {
- writeC(2);
- }
- // FUNC_ITEM_CREATE
- function = _clanHall.getFunction(ClanHall.FUNC_ITEM_CREATE);
- if ((function == null) || (function.getLvl() == 0))
- {
- writeC(0);
- }
- else if (((_clanHall.getGrade() == 0) && (function.getLvl() < 2)) || (function.getLvl() < 3))
- {
- writeC(1);
- }
- else
- {
- writeC(2);
- }
- // FUNC_SUPPORT
- function = _clanHall.getFunction(ClanHall.FUNC_SUPPORT);
- if ((function == null) || (function.getLvl() == 0))
- {
- writeC(0);
- writeC(0);
- }
- else if (((_clanHall.getGrade() == 0) && (function.getLvl() < 2)) || ((_clanHall.getGrade() == 1) && (function.getLvl() < 4)) || ((_clanHall.getGrade() == 2) && (function.getLvl() < 5)) || ((_clanHall.getGrade() == 3) && (function.getLvl() < 8)))
- {
- writeC(1);
- writeC(1);
- }
- else
- {
- writeC(2);
- writeC(2);
- }
- // Front Plateform
- function = _clanHall.getFunction(ClanHall.FUNC_DECO_FRONTPLATEFORM);
- if ((function == null) || (function.getLvl() == 0))
- {
- writeC(0);
- }
- else if (function.getLvl() <= 1)
- {
- writeC(1);
- }
- else
- {
- writeC(2);
- }
- // FUNC_ITEM_CREATE
- function = _clanHall.getFunction(ClanHall.FUNC_ITEM_CREATE);
- if ((function == null) || (function.getLvl() == 0))
- {
- writeC(0);
- }
- else if (((_clanHall.getGrade() == 0) && (function.getLvl() < 2)) || (function.getLvl() < 3))
- {
- writeC(1);
- }
- else
- {
- writeC(2);
- }
- writeD(0);
- writeD(0);
- }
- }
|