/* * 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 silentium.gameserver.model.actor.instance; import java.text.SimpleDateFormat; import java.util.StringTokenizer; import silentium.gameserver.configs.ClansConfig; import silentium.gameserver.data.html.StaticHtmPath; import silentium.gameserver.data.xml.TeleportLocationData; import silentium.gameserver.instancemanager.ClanHallManager; import silentium.gameserver.model.L2Clan; import silentium.gameserver.model.L2Skill; import silentium.gameserver.model.L2TeleportLocation; import silentium.gameserver.model.entity.ClanHall; import silentium.gameserver.network.SystemMessageId; import silentium.gameserver.network.serverpackets.ActionFailed; import silentium.gameserver.network.serverpackets.ClanHallDecoration; import silentium.gameserver.network.serverpackets.NpcHtmlMessage; import silentium.gameserver.network.serverpackets.WareHouseDepositList; import silentium.gameserver.network.serverpackets.WareHouseWithdrawalList; import silentium.gameserver.tables.SkillTable; import silentium.gameserver.templates.chars.L2NpcTemplate; import silentium.gameserver.templates.skills.L2SkillType; public class L2ClanHallManagerInstance extends L2MerchantInstance { protected static final int COND_OWNER_FALSE = 0; protected static final int COND_ALL_FALSE = 1; protected static final int COND_BUSY_BECAUSE_OF_SIEGE = 2; protected static final int COND_OWNER = 3; private int _clanHallId = -1; /** * @param objectId * @param template */ public L2ClanHallManagerInstance(int objectId, L2NpcTemplate template) { super(objectId, template); } @Override public boolean isWarehouse() { return true; } @Override public void onBypassFeedback(L2PcInstance player, String command) { int condition = validateCondition(player); if (condition <= COND_ALL_FALSE) return; else if (condition == COND_OWNER) { SimpleDateFormat format = new SimpleDateFormat("dd/MM/yyyy HH:mm"); StringTokenizer st = new StringTokenizer(command, " "); String actualCommand = st.nextToken(); // Get actual command String val = ""; if (st.countTokens() >= 1) val = st.nextToken(); if (actualCommand.equalsIgnoreCase("banish_foreigner")) { NpcHtmlMessage html = new NpcHtmlMessage(1); if ((player.getClanPrivileges() & L2Clan.CP_CH_DISMISS) == L2Clan.CP_CH_DISMISS) { if (val.equalsIgnoreCase("list")) html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "banish-list.htm", player); else if (val.equalsIgnoreCase("banish")) { getClanHall().banishForeigners(); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "banish.htm", player); } } else html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "not_authorized.htm", player); sendHtmlMessage(player, html); return; } else if (actualCommand.equalsIgnoreCase("manage_vault")) { NpcHtmlMessage html = new NpcHtmlMessage(1); if ((player.getClanPrivileges() & L2Clan.CP_CL_VIEW_WAREHOUSE) == L2Clan.CP_CL_VIEW_WAREHOUSE) { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "vault.htm", player); html.replace("%rent%", String.valueOf(getClanHall().getLease())); html.replace("%date%", format.format(getClanHall().getPaidUntil())); sendHtmlMessage(player, html); } else { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "not_authorized.htm", player); sendHtmlMessage(player, html); } return; } else if (actualCommand.equalsIgnoreCase("door")) { NpcHtmlMessage html = new NpcHtmlMessage(1); if ((player.getClanPrivileges() & L2Clan.CP_CH_OPEN_DOOR) == L2Clan.CP_CH_OPEN_DOOR) { if (val.equalsIgnoreCase("open")) { getClanHall().openCloseDoors(true); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "door-open.htm", player); } else if (val.equalsIgnoreCase("close")) { getClanHall().openCloseDoors(false); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "door-close.htm", player); } else html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "door.htm", player); sendHtmlMessage(player, html); } else { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "not_authorized.htm", player); sendHtmlMessage(player, html); } return; } else if (actualCommand.equalsIgnoreCase("functions")) { if (val.equalsIgnoreCase("tele")) { NpcHtmlMessage html = new NpcHtmlMessage(1); if (getClanHall().getFunction(ClanHall.FUNC_TELEPORT) == null) html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "chamberlain-nac.htm", player); else html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "tele" + getClanHall().getLocation() + getClanHall().getFunction(ClanHall.FUNC_TELEPORT).getLvl() + ".htm", player); sendHtmlMessage(player, html); } else if (val.equalsIgnoreCase("item_creation")) { if (getClanHall().getFunction(ClanHall.FUNC_ITEM_CREATE) == null) { NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "chamberlain-nac.htm", player); sendHtmlMessage(player, html); return; } if (st.countTokens() < 1) return; int valbuy = Integer.parseInt(st.nextToken()) + (getClanHall().getFunction(ClanHall.FUNC_ITEM_CREATE).getLvl() * 100000); showBuyWindow(player, valbuy); } else if (val.equalsIgnoreCase("support")) { NpcHtmlMessage html = new NpcHtmlMessage(1); if (getClanHall().getFunction(ClanHall.FUNC_SUPPORT) == null) html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "chamberlain-nac.htm", player); else { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "support" + getClanHall().getFunction(ClanHall.FUNC_SUPPORT).getLvl() + ".htm", player); html.replace("%mp%", String.valueOf((int) getCurrentMp())); } sendHtmlMessage(player, html); } else if (val.equalsIgnoreCase("back")) showChatWindow(player); else { NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions.htm", player); if (getClanHall().getFunction(ClanHall.FUNC_RESTORE_EXP) != null) html.replace("%xp_regen%", String.valueOf(getClanHall().getFunction(ClanHall.FUNC_RESTORE_EXP).getLvl())); else html.replace("%xp_regen%", "0"); if (getClanHall().getFunction(ClanHall.FUNC_RESTORE_HP) != null) html.replace("%hp_regen%", String.valueOf(getClanHall().getFunction(ClanHall.FUNC_RESTORE_HP).getLvl())); else html.replace("%hp_regen%", "0"); if (getClanHall().getFunction(ClanHall.FUNC_RESTORE_MP) != null) html.replace("%mp_regen%", String.valueOf(getClanHall().getFunction(ClanHall.FUNC_RESTORE_MP).getLvl())); else html.replace("%mp_regen%", "0"); sendHtmlMessage(player, html); } return; } else if (actualCommand.equalsIgnoreCase("manage")) { if ((player.getClanPrivileges() & L2Clan.CP_CH_SET_FUNCTIONS) == L2Clan.CP_CH_SET_FUNCTIONS) { if (val.equalsIgnoreCase("recovery")) { if (st.countTokens() >= 1) { if (getClanHall().getOwnerId() == 0) return; val = st.nextToken(); if (val.equalsIgnoreCase("hp_cancel")) { NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-cancel.htm", player); html.replace("%apply%", "recovery hp 0"); sendHtmlMessage(player, html); return; } else if (val.equalsIgnoreCase("mp_cancel")) { NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-cancel.htm", player); html.replace("%apply%", "recovery mp 0"); sendHtmlMessage(player, html); return; } else if (val.equalsIgnoreCase("exp_cancel")) { NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-cancel.htm", player); html.replace("%apply%", "recovery exp 0"); sendHtmlMessage(player, html); return; } else if (val.equalsIgnoreCase("edit_hp")) { val = st.nextToken(); NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-apply.htm", player); html.replace("%name%", "Fireplace (HP Recovery Device)"); int percent = Integer.parseInt(val); int cost; switch (percent) { case 20: cost = ClansConfig.CH_HPREG1_FEE; break; case 40: cost = ClansConfig.CH_HPREG2_FEE; break; case 80: cost = ClansConfig.CH_HPREG3_FEE; break; case 100: cost = ClansConfig.CH_HPREG4_FEE; break; case 120: cost = ClansConfig.CH_HPREG5_FEE; break; case 140: cost = ClansConfig.CH_HPREG6_FEE; break; case 160: cost = ClansConfig.CH_HPREG7_FEE; break; case 180: cost = ClansConfig.CH_HPREG8_FEE; break; case 200: cost = ClansConfig.CH_HPREG9_FEE; break; case 220: cost = ClansConfig.CH_HPREG10_FEE; break; case 240: cost = ClansConfig.CH_HPREG11_FEE; break; case 260: cost = ClansConfig.CH_HPREG12_FEE; break; default: cost = ClansConfig.CH_HPREG13_FEE; break; } html.replace("%cost%", String.valueOf(cost) + "</font> adenas / " + String.valueOf(ClansConfig.CH_HPREG_FEE_RATIO / 86400000) + " day</font>)"); html.replace("%use%", "Provides additional HP recovery for clan members in the clan hall.<font color=\"00FFFF\">" + String.valueOf(percent) + "%</font>"); html.replace("%apply%", "recovery hp " + String.valueOf(percent)); sendHtmlMessage(player, html); return; } else if (val.equalsIgnoreCase("edit_mp")) { val = st.nextToken(); NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-apply.htm", player); html.replace("%name%", "Carpet (MP Recovery)"); int percent = Integer.parseInt(val); int cost; switch (percent) { case 5: cost = ClansConfig.CH_MPREG1_FEE; break; case 10: cost = ClansConfig.CH_MPREG2_FEE; break; case 15: cost = ClansConfig.CH_MPREG3_FEE; break; case 30: cost = ClansConfig.CH_MPREG4_FEE; break; default: cost = ClansConfig.CH_MPREG5_FEE; break; } html.replace("%cost%", String.valueOf(cost) + "</font> adenas / " + String.valueOf(ClansConfig.CH_MPREG_FEE_RATIO / 86400000) + " day</font>)"); html.replace("%use%", "Provides additional MP recovery for clan members in the clan hall.<font color=\"00FFFF\">" + String.valueOf(percent) + "%</font>"); html.replace("%apply%", "recovery mp " + String.valueOf(percent)); sendHtmlMessage(player, html); return; } else if (val.equalsIgnoreCase("edit_exp")) { val = st.nextToken(); NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-apply.htm", player); html.replace("%name%", "Chandelier (EXP Recovery Device)"); int percent = Integer.parseInt(val); int cost; switch (percent) { case 5: cost = ClansConfig.CH_EXPREG1_FEE; break; case 10: cost = ClansConfig.CH_EXPREG2_FEE; break; case 15: cost = ClansConfig.CH_EXPREG3_FEE; break; case 25: cost = ClansConfig.CH_EXPREG4_FEE; break; case 35: cost = ClansConfig.CH_EXPREG5_FEE; break; case 40: cost = ClansConfig.CH_EXPREG6_FEE; break; default: cost = ClansConfig.CH_EXPREG7_FEE; break; } html.replace("%cost%", String.valueOf(cost) + "</font> adenas / " + String.valueOf(ClansConfig.CH_EXPREG_FEE_RATIO / 86400000) + " day</font>)"); html.replace("%use%", "Restores the Exp of any clan member who is resurrected in the clan hall.<font color=\"00FFFF\">" + String.valueOf(percent) + "%</font>"); html.replace("%apply%", "recovery exp " + String.valueOf(percent)); sendHtmlMessage(player, html); return; } else if (val.equalsIgnoreCase("hp")) { if (st.countTokens() >= 1) { int fee; _log.trace("Mp editing invoked"); val = st.nextToken(); NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-apply_confirmed.htm", player); if (getClanHall().getFunction(ClanHall.FUNC_RESTORE_HP) != null) { if (getClanHall().getFunction(ClanHall.FUNC_RESTORE_HP).getLvl() == Integer.parseInt(val)) { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-used.htm", player); html.replace("%val%", String.valueOf(val) + "%"); sendHtmlMessage(player, html); return; } } int percent = Integer.parseInt(val); switch (percent) { case 0: fee = 0; html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-cancel_confirmed.htm", player); break; case 20: fee = ClansConfig.CH_HPREG1_FEE; break; case 40: fee = ClansConfig.CH_HPREG2_FEE; break; case 80: fee = ClansConfig.CH_HPREG3_FEE; break; case 100: fee = ClansConfig.CH_HPREG4_FEE; break; case 120: fee = ClansConfig.CH_HPREG5_FEE; break; case 140: fee = ClansConfig.CH_HPREG6_FEE; break; case 160: fee = ClansConfig.CH_HPREG7_FEE; break; case 180: fee = ClansConfig.CH_HPREG8_FEE; break; case 200: fee = ClansConfig.CH_HPREG9_FEE; break; case 220: fee = ClansConfig.CH_HPREG10_FEE; break; case 240: fee = ClansConfig.CH_HPREG11_FEE; break; case 260: fee = ClansConfig.CH_HPREG12_FEE; break; default: fee = ClansConfig.CH_HPREG13_FEE; break; } if (!getClanHall().updateFunctions(player, ClanHall.FUNC_RESTORE_HP, percent, fee, ClansConfig.CH_HPREG_FEE_RATIO, (getClanHall().getFunction(ClanHall.FUNC_RESTORE_HP) == null))) { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "low_adena.htm", player); sendHtmlMessage(player, html); } else revalidateDeco(player); sendHtmlMessage(player, html); } return; } else if (val.equalsIgnoreCase("mp")) { if (st.countTokens() >= 1) { int fee; _log.trace("Mp editing invoked"); val = st.nextToken(); NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-apply_confirmed.htm", player); if (getClanHall().getFunction(ClanHall.FUNC_RESTORE_MP) != null) { if (getClanHall().getFunction(ClanHall.FUNC_RESTORE_MP).getLvl() == Integer.parseInt(val)) { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-used.htm", player); html.replace("%val%", String.valueOf(val) + "%"); sendHtmlMessage(player, html); return; } } int percent = Integer.parseInt(val); switch (percent) { case 0: fee = 0; html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-cancel_confirmed.htm", player); break; case 5: fee = ClansConfig.CH_MPREG1_FEE; break; case 10: fee = ClansConfig.CH_MPREG2_FEE; break; case 15: fee = ClansConfig.CH_MPREG3_FEE; break; case 30: fee = ClansConfig.CH_MPREG4_FEE; break; default: fee = ClansConfig.CH_MPREG5_FEE; break; } if (!getClanHall().updateFunctions(player, ClanHall.FUNC_RESTORE_MP, percent, fee, ClansConfig.CH_MPREG_FEE_RATIO, (getClanHall().getFunction(ClanHall.FUNC_RESTORE_MP) == null))) { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "low_adena.htm", player); sendHtmlMessage(player, html); } else revalidateDeco(player); sendHtmlMessage(player, html); } return; } else if (val.equalsIgnoreCase("exp")) { if (st.countTokens() >= 1) { int fee; _log.trace("Exp editing invoked"); val = st.nextToken(); NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-apply_confirmed.htm", player); if (getClanHall().getFunction(ClanHall.FUNC_RESTORE_EXP) != null) { if (getClanHall().getFunction(ClanHall.FUNC_RESTORE_EXP).getLvl() == Integer.parseInt(val)) { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-used.htm", player); html.replace("%val%", String.valueOf(val) + "%"); sendHtmlMessage(player, html); return; } } int percent = Integer.parseInt(val); switch (percent) { case 0: fee = 0; html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-cancel_confirmed.htm", player); break; case 5: fee = ClansConfig.CH_EXPREG1_FEE; break; case 10: fee = ClansConfig.CH_EXPREG2_FEE; break; case 15: fee = ClansConfig.CH_EXPREG3_FEE; break; case 25: fee = ClansConfig.CH_EXPREG4_FEE; break; case 35: fee = ClansConfig.CH_EXPREG5_FEE; break; case 40: fee = ClansConfig.CH_EXPREG6_FEE; break; default: fee = ClansConfig.CH_EXPREG7_FEE; break; } if (!getClanHall().updateFunctions(player, ClanHall.FUNC_RESTORE_EXP, percent, fee, ClansConfig.CH_EXPREG_FEE_RATIO, (getClanHall().getFunction(ClanHall.FUNC_RESTORE_EXP) == null))) { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "low_adena.htm", player); sendHtmlMessage(player, html); } else revalidateDeco(player); sendHtmlMessage(player, html); } return; } } NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "edit_recovery.htm", player); String hp_grade0 = "[<a action=\"bypass -h npc_%objectId%_manage recovery edit_hp 20\">20%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_hp 40\">40%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_hp 220\">220%</a>]"; String hp_grade1 = "[<a action=\"bypass -h npc_%objectId%_manage recovery edit_hp 40\">40%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_hp 100\">100%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_hp 160\">160%</a>]"; String hp_grade2 = "[<a action=\"bypass -h npc_%objectId%_manage recovery edit_hp 80\">80%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_hp 140\">140%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_hp 200\">200%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_hp 260\">260%</a>]"; String hp_grade3 = "[<a action=\"bypass -h npc_%objectId%_manage recovery edit_hp 80\">80%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_hp 120\">120%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_hp 180\">180%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_hp 240\">240%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_hp 300\">300%</a>]"; String exp_grade0 = "[<a action=\"bypass -h npc_%objectId%_manage recovery edit_exp 5\">5%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_exp 10\">10%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_exp 25\">25%</a>]"; String exp_grade1 = "[<a action=\"bypass -h npc_%objectId%_manage recovery edit_exp 5\">5%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_exp 15\">15%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_exp 30\">30%</a>]"; String exp_grade2 = "[<a action=\"bypass -h npc_%objectId%_manage recovery edit_exp 5\">5%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_exp 15\">15%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_exp 25\">25%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_exp 40\">40%</a>]"; String exp_grade3 = "[<a action=\"bypass -h npc_%objectId%_manage recovery edit_exp 15\">15%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_exp 25\">25%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_exp 35\">35%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_exp 50\">50%</a>]"; String mp_grade0 = "[<a action=\"bypass -h npc_%objectId%_manage recovery edit_mp 5\">5%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_mp 10\">10%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_mp 25\">25%</a>]"; String mp_grade1 = "[<a action=\"bypass -h npc_%objectId%_manage recovery edit_mp 5\">5%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_mp 15\">15%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_mp 25\">25%</a>]"; String mp_grade2 = "[<a action=\"bypass -h npc_%objectId%_manage recovery edit_mp 5\">5%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_mp 15\">15%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_mp 30\">30%</a>]"; String mp_grade3 = "[<a action=\"bypass -h npc_%objectId%_manage recovery edit_mp 5\">5%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_mp 15\">15%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_mp 30\">30%</a>][<a action=\"bypass -h npc_%objectId%_manage recovery edit_mp 40\">40%</a>]"; if (getClanHall().getFunction(ClanHall.FUNC_RESTORE_HP) != null) { html.replace("%hp_recovery%", String.valueOf(getClanHall().getFunction(ClanHall.FUNC_RESTORE_HP).getLvl()) + "%</font> (<font color=\"FFAABB\">" + String.valueOf(getClanHall().getFunction(ClanHall.FUNC_RESTORE_HP).getLease()) + "</font> adenas / " + String.valueOf(ClansConfig.CH_HPREG_FEE_RATIO / 86400000) + " day)"); html.replace("%hp_period%", "Next fee at " + format.format(getClanHall().getFunction(ClanHall.FUNC_RESTORE_HP).getEndTime())); int grade = getClanHall().getGrade(); switch (grade) { case 0: html.replace("%change_hp%", "[<a action=\"bypass -h npc_%objectId%_manage recovery hp_cancel\">Remove</a>]" + hp_grade0); break; case 1: html.replace("%change_hp%", "[<a action=\"bypass -h npc_%objectId%_manage recovery hp_cancel\">Remove</a>]" + hp_grade1); break; case 2: html.replace("%change_hp%", "[<a action=\"bypass -h npc_%objectId%_manage recovery hp_cancel\">Remove</a>]" + hp_grade2); break; case 3: html.replace("%change_hp%", "[<a action=\"bypass -h npc_%objectId%_manage recovery hp_cancel\">Remove</a>]" + hp_grade3); break; } } else { html.replace("%hp_recovery%", "none"); html.replace("%hp_period%", "none"); int grade = getClanHall().getGrade(); switch (grade) { case 0: html.replace("%change_hp%", hp_grade0); break; case 1: html.replace("%change_hp%", hp_grade1); break; case 2: html.replace("%change_hp%", hp_grade2); break; case 3: html.replace("%change_hp%", hp_grade3); break; } } if (getClanHall().getFunction(ClanHall.FUNC_RESTORE_EXP) != null) { html.replace("%exp_recovery%", String.valueOf(getClanHall().getFunction(ClanHall.FUNC_RESTORE_EXP).getLvl()) + "%</font> (<font color=\"FFAABB\">" + String.valueOf(getClanHall().getFunction(ClanHall.FUNC_RESTORE_EXP).getLease()) + "</font> adenas / " + String.valueOf(ClansConfig.CH_EXPREG_FEE_RATIO / 86400000) + " day)"); html.replace("%exp_period%", "Next fee at " + format.format(getClanHall().getFunction(ClanHall.FUNC_RESTORE_EXP).getEndTime())); int grade = getClanHall().getGrade(); switch (grade) { case 0: html.replace("%change_exp%", "[<a action=\"bypass -h npc_%objectId%_manage recovery exp_cancel\">Remove</a>]" + exp_grade0); break; case 1: html.replace("%change_exp%", "[<a action=\"bypass -h npc_%objectId%_manage recovery exp_cancel\">Remove</a>]" + exp_grade1); break; case 2: html.replace("%change_exp%", "[<a action=\"bypass -h npc_%objectId%_manage recovery exp_cancel\">Remove</a>]" + exp_grade2); break; case 3: html.replace("%change_exp%", "[<a action=\"bypass -h npc_%objectId%_manage recovery exp_cancel\">Remove</a>]" + exp_grade3); break; } } else { html.replace("%exp_recovery%", "none"); html.replace("%exp_period%", "none"); int grade = getClanHall().getGrade(); switch (grade) { case 0: html.replace("%change_exp%", exp_grade0); break; case 1: html.replace("%change_exp%", exp_grade1); break; case 2: html.replace("%change_exp%", exp_grade2); break; case 3: html.replace("%change_exp%", exp_grade3); break; } } if (getClanHall().getFunction(ClanHall.FUNC_RESTORE_MP) != null) { html.replace("%mp_recovery%", String.valueOf(getClanHall().getFunction(ClanHall.FUNC_RESTORE_MP).getLvl()) + "%</font> (<font color=\"FFAABB\">" + String.valueOf(getClanHall().getFunction(ClanHall.FUNC_RESTORE_MP).getLease()) + "</font> adenas / " + String.valueOf(ClansConfig.CH_MPREG_FEE_RATIO / 86400000) + " day)"); html.replace("%mp_period%", "Next fee at " + format.format(getClanHall().getFunction(ClanHall.FUNC_RESTORE_MP).getEndTime())); int grade = getClanHall().getGrade(); switch (grade) { case 0: html.replace("%change_mp%", "[<a action=\"bypass -h npc_%objectId%_manage recovery mp_cancel\">Remove</a>]" + mp_grade0); break; case 1: html.replace("%change_mp%", "[<a action=\"bypass -h npc_%objectId%_manage recovery mp_cancel\">Remove</a>]" + mp_grade1); break; case 2: html.replace("%change_mp%", "[<a action=\"bypass -h npc_%objectId%_manage recovery mp_cancel\">Remove</a>]" + mp_grade2); break; case 3: html.replace("%change_mp%", "[<a action=\"bypass -h npc_%objectId%_manage recovery mp_cancel\">Remove</a>]" + mp_grade3); break; } } else { html.replace("%mp_recovery%", "none"); html.replace("%mp_period%", "none"); int grade = getClanHall().getGrade(); switch (grade) { case 0: html.replace("%change_mp%", mp_grade0); break; case 1: html.replace("%change_mp%", mp_grade1); break; case 2: html.replace("%change_mp%", mp_grade2); break; case 3: html.replace("%change_mp%", mp_grade3); break; } } sendHtmlMessage(player, html); } else if (val.equalsIgnoreCase("other")) { if (st.countTokens() >= 1) { if (getClanHall().getOwnerId() == 0) { player.sendMessage("This clan Hall have no owner, you cannot change configuration"); return; } val = st.nextToken(); if (val.equalsIgnoreCase("item_cancel")) { NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-cancel.htm", player); html.replace("%apply%", "other item 0"); sendHtmlMessage(player, html); return; } else if (val.equalsIgnoreCase("tele_cancel")) { NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-cancel.htm", player); html.replace("%apply%", "other tele 0"); sendHtmlMessage(player, html); return; } else if (val.equalsIgnoreCase("support_cancel")) { NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-cancel.htm", player); html.replace("%apply%", "other support 0"); sendHtmlMessage(player, html); return; } else if (val.equalsIgnoreCase("edit_item")) { val = st.nextToken(); NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-apply.htm", player); html.replace("%name%", "Magic Equipment (Item Production Facilities)"); int stage = Integer.parseInt(val); int cost; switch (stage) { case 1: cost = ClansConfig.CH_ITEM1_FEE; break; case 2: cost = ClansConfig.CH_ITEM2_FEE; break; default: cost = ClansConfig.CH_ITEM3_FEE; break; } html.replace("%cost%", String.valueOf(cost) + "</font> adenas / " + String.valueOf(ClansConfig.CH_ITEM_FEE_RATIO / 86400000) + " day</font>)"); html.replace("%use%", "Allow the purchase of special items at fixed intervals."); html.replace("%apply%", "other item " + String.valueOf(stage)); sendHtmlMessage(player, html); return; } else if (val.equalsIgnoreCase("edit_support")) { val = st.nextToken(); NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-apply.htm", player); html.replace("%name%", "Insignia (Supplementary Magic)"); int stage = Integer.parseInt(val); int cost; switch (stage) { case 1: cost = ClansConfig.CH_SUPPORT1_FEE; break; case 2: cost = ClansConfig.CH_SUPPORT2_FEE; break; case 3: cost = ClansConfig.CH_SUPPORT3_FEE; break; case 4: cost = ClansConfig.CH_SUPPORT4_FEE; break; case 5: cost = ClansConfig.CH_SUPPORT5_FEE; break; case 6: cost = ClansConfig.CH_SUPPORT6_FEE; break; case 7: cost = ClansConfig.CH_SUPPORT7_FEE; break; default: cost = ClansConfig.CH_SUPPORT8_FEE; break; } html.replace("%cost%", String.valueOf(cost) + "</font> adenas / " + String.valueOf(ClansConfig.CH_SUPPORT_FEE_RATIO / 86400000) + " day</font>)"); html.replace("%use%", "Enables the use of supplementary magic."); html.replace("%apply%", "other support " + String.valueOf(stage)); sendHtmlMessage(player, html); return; } else if (val.equalsIgnoreCase("edit_tele")) { val = st.nextToken(); NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-apply.htm", player); html.replace("%name%", "Mirror (Teleportation Device)"); int stage = Integer.parseInt(val); int cost; switch (stage) { case 1: cost = ClansConfig.CH_TELE1_FEE; break; default: cost = ClansConfig.CH_TELE2_FEE; break; } html.replace("%cost%", String.valueOf(cost) + "</font> adenas / " + String.valueOf(ClansConfig.CH_TELE_FEE_RATIO / 86400000) + " day</font>)"); html.replace("%use%", "Teleports clan members in a clan hall to the target <font color=\"00FFFF\">Stage " + String.valueOf(stage) + "</font> staging area"); html.replace("%apply%", "other tele " + String.valueOf(stage)); sendHtmlMessage(player, html); return; } else if (val.equalsIgnoreCase("item")) { if (st.countTokens() >= 1) { if (getClanHall().getOwnerId() == 0) return; _log.trace("Item editing invoked"); val = st.nextToken(); NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-apply_confirmed.htm", player); if (getClanHall().getFunction(ClanHall.FUNC_ITEM_CREATE) != null) { if (getClanHall().getFunction(ClanHall.FUNC_ITEM_CREATE).getLvl() == Integer.parseInt(val)) { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-used.htm", player); html.replace("%val%", "Stage " + String.valueOf(val)); sendHtmlMessage(player, html); return; } } int fee; int lvl = Integer.parseInt(val); switch (lvl) { case 0: fee = 0; html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-cancel_confirmed.htm", player); break; case 1: fee = ClansConfig.CH_ITEM1_FEE; break; case 2: fee = ClansConfig.CH_ITEM2_FEE; break; default: fee = ClansConfig.CH_ITEM3_FEE; break; } if (!getClanHall().updateFunctions(player, ClanHall.FUNC_ITEM_CREATE, lvl, fee, ClansConfig.CH_ITEM_FEE_RATIO, (getClanHall().getFunction(ClanHall.FUNC_ITEM_CREATE) == null))) { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "low_adena.htm", player); sendHtmlMessage(player, html); } else revalidateDeco(player); sendHtmlMessage(player, html); } return; } else if (val.equalsIgnoreCase("tele")) { if (st.countTokens() >= 1) { int fee; _log.trace("Tele editing invoked"); val = st.nextToken(); NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-apply_confirmed.htm", player); if (getClanHall().getFunction(ClanHall.FUNC_TELEPORT) != null) { if (getClanHall().getFunction(ClanHall.FUNC_TELEPORT).getLvl() == Integer.parseInt(val)) { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-used.htm", player); html.replace("%val%", "Stage " + String.valueOf(val)); sendHtmlMessage(player, html); return; } } int lvl = Integer.parseInt(val); switch (lvl) { case 0: fee = 0; html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-cancel_confirmed.htm", player); break; case 1: fee = ClansConfig.CH_TELE1_FEE; break; default: fee = ClansConfig.CH_TELE2_FEE; break; } if (!getClanHall().updateFunctions(player, ClanHall.FUNC_TELEPORT, lvl, fee, ClansConfig.CH_TELE_FEE_RATIO, (getClanHall().getFunction(ClanHall.FUNC_TELEPORT) == null))) { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "low_adena.htm", player); sendHtmlMessage(player, html); } else revalidateDeco(player); sendHtmlMessage(player, html); } return; } else if (val.equalsIgnoreCase("support")) { if (st.countTokens() >= 1) { int fee; _log.trace("Support editing invoked"); val = st.nextToken(); NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-apply_confirmed.htm", player); if (getClanHall().getFunction(ClanHall.FUNC_SUPPORT) != null) { if (getClanHall().getFunction(ClanHall.FUNC_SUPPORT).getLvl() == Integer.parseInt(val)) { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-used.htm", player); html.replace("%val%", "Stage " + String.valueOf(val)); sendHtmlMessage(player, html); return; } } int lvl = Integer.parseInt(val); switch (lvl) { case 0: fee = 0; html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-cancel_confirmed.htm", player); break; case 1: fee = ClansConfig.CH_SUPPORT1_FEE; break; case 2: fee = ClansConfig.CH_SUPPORT2_FEE; break; case 3: fee = ClansConfig.CH_SUPPORT3_FEE; break; case 4: fee = ClansConfig.CH_SUPPORT4_FEE; break; case 5: fee = ClansConfig.CH_SUPPORT5_FEE; break; case 6: fee = ClansConfig.CH_SUPPORT6_FEE; break; case 7: fee = ClansConfig.CH_SUPPORT7_FEE; break; default: fee = ClansConfig.CH_SUPPORT8_FEE; break; } if (!getClanHall().updateFunctions(player, ClanHall.FUNC_SUPPORT, lvl, fee, ClansConfig.CH_SUPPORT_FEE_RATIO, (getClanHall().getFunction(ClanHall.FUNC_SUPPORT) == null))) { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "low_adena.htm", player); sendHtmlMessage(player, html); } else revalidateDeco(player); sendHtmlMessage(player, html); } return; } } NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "edit_other.htm", player); String tele = "[<a action=\"bypass -h npc_%objectId%_manage other edit_tele 1\">Level 1</a>][<a action=\"bypass -h npc_%objectId%_manage other edit_tele 2\">Level 2</a>]"; String support_grade0 = "[<a action=\"bypass -h npc_%objectId%_manage other edit_support 1\">Level 1</a>][<a action=\"bypass -h npc_%objectId%_manage other edit_support 2\">Level 2</a>]"; String support_grade1 = "[<a action=\"bypass -h npc_%objectId%_manage other edit_support 1\">Level 1</a>][<a action=\"bypass -h npc_%objectId%_manage other edit_support 2\">Level 2</a>][<a action=\"bypass -h npc_%objectId%_manage other edit_support 4\">Level 4</a>]"; String support_grade2 = "[<a action=\"bypass -h npc_%objectId%_manage other edit_support 3\">Level 3</a>][<a action=\"bypass -h npc_%objectId%_manage other edit_support 4\">Level 4</a>][<a action=\"bypass -h npc_%objectId%_manage other edit_support 5\">Level 5</a>]"; String support_grade3 = "[<a action=\"bypass -h npc_%objectId%_manage other edit_support 3\">Level 3</a>][<a action=\"bypass -h npc_%objectId%_manage other edit_support 5\">Level 5</a>][<a action=\"bypass -h npc_%objectId%_manage other edit_support 7\">Level 7</a>][<a action=\"bypass -h npc_%objectId%_manage other edit_support 8\">Level 8</a>]"; String item = "[<a action=\"bypass -h npc_%objectId%_manage other edit_item 1\">Level 1</a>][<a action=\"bypass -h npc_%objectId%_manage other edit_item 2\">Level 2</a>][<a action=\"bypass -h npc_%objectId%_manage other edit_item 3\">Level 3</a>]"; if (getClanHall().getFunction(ClanHall.FUNC_TELEPORT) != null) { html.replace("%tele%", "- Stage " + String.valueOf(getClanHall().getFunction(ClanHall.FUNC_TELEPORT).getLvl()) + "</font> (<font color=\"FFAABB\">" + String.valueOf(getClanHall().getFunction(ClanHall.FUNC_TELEPORT).getLease()) + "</font> adenas / " + String.valueOf(ClansConfig.CH_TELE_FEE_RATIO / 86400000) + " day)"); html.replace("%tele_period%", "Next fee at " + format.format(getClanHall().getFunction(ClanHall.FUNC_TELEPORT).getEndTime())); html.replace("%change_tele%", "[<a action=\"bypass -h npc_%objectId%_manage other tele_cancel\">Remove</a>]" + tele); } else { html.replace("%tele%", "none"); html.replace("%tele_period%", "none"); html.replace("%change_tele%", tele); } if (getClanHall().getFunction(ClanHall.FUNC_SUPPORT) != null) { html.replace("%support%", "- Stage " + String.valueOf(getClanHall().getFunction(ClanHall.FUNC_SUPPORT).getLvl()) + "</font> (<font color=\"FFAABB\">" + String.valueOf(getClanHall().getFunction(ClanHall.FUNC_SUPPORT).getLease()) + "</font> adenas / " + String.valueOf(ClansConfig.CH_SUPPORT_FEE_RATIO / 86400000) + " day)"); html.replace("%support_period%", "Next fee at " + format.format(getClanHall().getFunction(ClanHall.FUNC_SUPPORT).getEndTime())); int grade = getClanHall().getGrade(); switch (grade) { case 0: html.replace("%change_support%", "[<a action=\"bypass -h npc_%objectId%_manage other support_cancel\">Remove</a>]" + support_grade0); break; case 1: html.replace("%change_support%", "[<a action=\"bypass -h npc_%objectId%_manage other support_cancel\">Remove</a>]" + support_grade1); break; case 2: html.replace("%change_support%", "[<a action=\"bypass -h npc_%objectId%_manage other support_cancel\">Remove</a>]" + support_grade2); break; case 3: html.replace("%change_support%", "[<a action=\"bypass -h npc_%objectId%_manage other support_cancel\">Remove</a>]" + support_grade3); break; } } else { html.replace("%support%", "none"); html.replace("%support_period%", "none"); int grade = getClanHall().getGrade(); switch (grade) { case 0: html.replace("%change_support%", support_grade0); break; case 1: html.replace("%change_support%", support_grade1); break; case 2: html.replace("%change_support%", support_grade2); break; case 3: html.replace("%change_support%", support_grade3); break; } } if (getClanHall().getFunction(ClanHall.FUNC_ITEM_CREATE) != null) { html.replace("%item%", "- Stage " + String.valueOf(getClanHall().getFunction(ClanHall.FUNC_ITEM_CREATE).getLvl()) + "</font> (<font color=\"FFAABB\">" + String.valueOf(getClanHall().getFunction(ClanHall.FUNC_ITEM_CREATE).getLease()) + "</font> adenas / " + String.valueOf(ClansConfig.CH_ITEM_FEE_RATIO / 86400000) + " day)"); html.replace("%item_period%", "Next fee at " + format.format(getClanHall().getFunction(ClanHall.FUNC_ITEM_CREATE).getEndTime())); html.replace("%change_item%", "[<a action=\"bypass -h npc_%objectId%_manage other item_cancel\">Remove</a>]" + item); } else { html.replace("%item%", "none"); html.replace("%item_period%", "none"); html.replace("%change_item%", item); } sendHtmlMessage(player, html); } else if (val.equalsIgnoreCase("deco")) { if (st.countTokens() >= 1) { if (getClanHall().getOwnerId() == 0) return; val = st.nextToken(); if (val.equalsIgnoreCase("curtains_cancel")) { NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-cancel.htm", player); html.replace("%apply%", "deco curtains 0"); sendHtmlMessage(player, html); return; } else if (val.equalsIgnoreCase("fixtures_cancel")) { NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-cancel.htm", player); html.replace("%apply%", "deco fixtures 0"); sendHtmlMessage(player, html); return; } else if (val.equalsIgnoreCase("edit_curtains")) { val = st.nextToken(); NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-apply.htm", player); html.replace("%name%", "Curtains (Decoration)"); int stage = Integer.parseInt(val); int cost; switch (stage) { case 1: cost = ClansConfig.CH_CURTAIN1_FEE; break; default: cost = ClansConfig.CH_CURTAIN2_FEE; break; } html.replace("%cost%", String.valueOf(cost) + "</font> adenas / " + String.valueOf(ClansConfig.CH_CURTAIN_FEE_RATIO / 86400000) + " day</font>)"); html.replace("%use%", "These curtains can be used to decorate the clan hall."); html.replace("%apply%", "deco curtains " + String.valueOf(stage)); sendHtmlMessage(player, html); return; } else if (val.equalsIgnoreCase("edit_fixtures")) { val = st.nextToken(); NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-apply.htm", player); html.replace("%name%", "Front Platform (Decoration)"); int stage = Integer.parseInt(val); int cost; switch (stage) { case 1: cost = ClansConfig.CH_FRONT1_FEE; break; default: cost = ClansConfig.CH_FRONT2_FEE; break; } html.replace("%cost%", String.valueOf(cost) + "</font> adenas / " + String.valueOf(ClansConfig.CH_FRONT_FEE_RATIO / 86400000) + " day</font>)"); html.replace("%use%", "Used to decorate the clan hall."); html.replace("%apply%", "deco fixtures " + String.valueOf(stage)); sendHtmlMessage(player, html); return; } else if (val.equalsIgnoreCase("curtains")) { if (st.countTokens() >= 1) { int fee; _log.trace("Deco curtains editing invoked"); val = st.nextToken(); NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-apply_confirmed.htm", player); if (getClanHall().getFunction(ClanHall.FUNC_DECO_CURTAINS) != null) { if (getClanHall().getFunction(ClanHall.FUNC_DECO_CURTAINS).getLvl() == Integer.parseInt(val)) { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-used.htm", player); html.replace("%val%", "Stage " + String.valueOf(val)); sendHtmlMessage(player, html); return; } } int lvl = Integer.parseInt(val); switch (lvl) { case 0: fee = 0; html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-cancel_confirmed.htm", player); break; case 1: fee = ClansConfig.CH_CURTAIN1_FEE; break; default: fee = ClansConfig.CH_CURTAIN2_FEE; break; } if (!getClanHall().updateFunctions(player, ClanHall.FUNC_DECO_CURTAINS, lvl, fee, ClansConfig.CH_CURTAIN_FEE_RATIO, (getClanHall().getFunction(ClanHall.FUNC_DECO_CURTAINS) == null))) { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "low_adena.htm", player); sendHtmlMessage(player, html); } else revalidateDeco(player); sendHtmlMessage(player, html); } return; } else if (val.equalsIgnoreCase("fixtures")) { if (st.countTokens() >= 1) { int fee; _log.trace("Deco fixtures editing invoked"); val = st.nextToken(); NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-apply_confirmed.htm", player); if (getClanHall().getFunction(ClanHall.FUNC_DECO_FRONTPLATEFORM) != null) { if (getClanHall().getFunction(ClanHall.FUNC_DECO_FRONTPLATEFORM).getLvl() == Integer.parseInt(val)) { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-used.htm", player); html.replace("%val%", "Stage " + String.valueOf(val)); sendHtmlMessage(player, html); return; } } int lvl = Integer.parseInt(val); switch (lvl) { case 0: fee = 0; html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "functions-cancel_confirmed.htm", player); break; case 1: fee = ClansConfig.CH_FRONT1_FEE; break; default: fee = ClansConfig.CH_FRONT2_FEE; break; } if (!getClanHall().updateFunctions(player, ClanHall.FUNC_DECO_FRONTPLATEFORM, lvl, fee, ClansConfig.CH_FRONT_FEE_RATIO, (getClanHall().getFunction(ClanHall.FUNC_DECO_FRONTPLATEFORM) == null))) { html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "low_adena.htm", player); sendHtmlMessage(player, html); } else revalidateDeco(player); sendHtmlMessage(player, html); } return; } } NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "deco.htm", player); String curtains = "[<a action=\"bypass -h npc_%objectId%_manage deco edit_curtains 1\">Level 1</a>][<a action=\"bypass -h npc_%objectId%_manage deco edit_curtains 2\">Level 2</a>]"; String fixtures = "[<a action=\"bypass -h npc_%objectId%_manage deco edit_fixtures 1\">Level 1</a>][<a action=\"bypass -h npc_%objectId%_manage deco edit_fixtures 2\">Level 2</a>]"; if (getClanHall().getFunction(ClanHall.FUNC_DECO_CURTAINS) != null) { html.replace("%curtain%", "- Stage " + String.valueOf(getClanHall().getFunction(ClanHall.FUNC_DECO_CURTAINS).getLvl()) + "</font> (<font color=\"FFAABB\">" + String.valueOf(getClanHall().getFunction(ClanHall.FUNC_DECO_CURTAINS).getLease()) + "</font> adenas / " + String.valueOf(ClansConfig.CH_CURTAIN_FEE_RATIO / 86400000) + " day)"); html.replace("%curtain_period%", "Next fee at " + format.format(getClanHall().getFunction(ClanHall.FUNC_DECO_CURTAINS).getEndTime())); html.replace("%change_curtain%", "[<a action=\"bypass -h npc_%objectId%_manage deco curtains_cancel\">Remove</a>]" + curtains); } else { html.replace("%curtain%", "none"); html.replace("%curtain_period%", "none"); html.replace("%change_curtain%", curtains); } if (getClanHall().getFunction(ClanHall.FUNC_DECO_FRONTPLATEFORM) != null) { html.replace("%fixture%", "- Stage " + String.valueOf(getClanHall().getFunction(ClanHall.FUNC_DECO_FRONTPLATEFORM).getLvl()) + "</font> (<font color=\"FFAABB\">" + String.valueOf(getClanHall().getFunction(ClanHall.FUNC_DECO_FRONTPLATEFORM).getLease()) + "</font> adenas / " + String.valueOf(ClansConfig.CH_FRONT_FEE_RATIO / 86400000) + " day)"); html.replace("%fixture_period%", "Next fee at " + format.format(getClanHall().getFunction(ClanHall.FUNC_DECO_FRONTPLATEFORM).getEndTime())); html.replace("%change_fixture%", "[<a action=\"bypass -h npc_%objectId%_manage deco fixtures_cancel\">Remove</a>]" + fixtures); } else { html.replace("%fixture%", "none"); html.replace("%fixture_period%", "none"); html.replace("%change_fixture%", fixtures); } sendHtmlMessage(player, html); } else if (val.equalsIgnoreCase("back")) showChatWindow(player); else { NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "manage.htm", player); sendHtmlMessage(player, html); } } else player.sendMessage("You are not authorized to do this!"); return; } else if (actualCommand.equalsIgnoreCase("support")) { if (player.isCursedWeaponEquipped()) { // Custom system message player.sendMessage("The wielder of a cursed weapon cannot receive outside heals or buffs"); return; } setTarget(player); L2Skill skill; if (val.isEmpty()) return; try { int skill_id = Integer.parseInt(val); try { int skill_lvl = 0; if (st.countTokens() >= 1) skill_lvl = Integer.parseInt(st.nextToken()); skill = SkillTable.getInstance().getInfo(skill_id, skill_lvl); if (skill.getSkillType() == L2SkillType.SUMMON) player.doSimultaneousCast(skill); else { if (!((skill.getMpConsume() + skill.getMpInitialConsume()) > getCurrentMp())) doCast(skill); else { NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "support-no_mana.htm", player); html.replace("%mp%", String.valueOf((int) getCurrentMp())); sendHtmlMessage(player, html); return; } } if (getClanHall().getFunction(ClanHall.FUNC_SUPPORT) == null) return; NpcHtmlMessage html = new NpcHtmlMessage(1); if (getClanHall().getFunction(ClanHall.FUNC_SUPPORT).getLvl() == 0) return; html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "support-done.htm", player); html.replace("%mp%", String.valueOf((int) getCurrentMp())); sendHtmlMessage(player, html); } catch (Exception e) { player.sendMessage("Invalid skill level, contact your server support."); } } catch (Exception e) { player.sendMessage("Invalid skill, contact your server support."); } return; } else if (actualCommand.equalsIgnoreCase("list_back")) { NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "chamberlain.htm", player); html.replace("%objectId%", String.valueOf(getObjectId())); html.replace("%npcname%", getName()); sendHtmlMessage(player, html); return; } else if (actualCommand.equalsIgnoreCase("support_back")) { NpcHtmlMessage html = new NpcHtmlMessage(1); if (getClanHall().getFunction(ClanHall.FUNC_SUPPORT).getLvl() == 0) return; html.setFile(StaticHtmPath.ClanHallManagerHtmPath + "support" + getClanHall().getFunction(ClanHall.FUNC_SUPPORT).getLvl() + ".htm", player); html.replace("%mp%", String.valueOf((int) getStatus().getCurrentMp())); sendHtmlMessage(player, html); return; } else if (actualCommand.equalsIgnoreCase("goto")) { int whereTo = Integer.parseInt(val); doTeleport(player, whereTo); return; } else if (actualCommand.equalsIgnoreCase("WithdrawC")) showWithdrawWindowClan(player); else if (actualCommand.equalsIgnoreCase("DepositC")) showDepositWindowClan(player); } else super.onBypassFeedback(player, command); } private void sendHtmlMessage(L2PcInstance player, NpcHtmlMessage html) { html.replace("%objectId%", String.valueOf(getObjectId())); html.replace("%npcId%", String.valueOf(getNpcId())); player.sendPacket(html); } @Override public void showChatWindow(L2PcInstance player) { player.sendPacket(ActionFailed.STATIC_PACKET); String filename = StaticHtmPath.ClanHallManagerHtmPath + "chamberlain-no.htm"; int condition = validateCondition(player); if (condition == COND_OWNER) filename = StaticHtmPath.ClanHallManagerHtmPath + "chamberlain.htm"; NpcHtmlMessage html = new NpcHtmlMessage(1); html.setFile(filename, player); html.replace("%objectId%", String.valueOf(getObjectId())); html.replace("%npcId%", String.valueOf(getNpcId())); player.sendPacket(html); } protected int validateCondition(L2PcInstance player) { if (getClanHall() == null) return COND_ALL_FALSE; if (player.getClan() != null) { if (getClanHall().getOwnerId() == player.getClanId()) return COND_OWNER; return COND_OWNER_FALSE; } return COND_ALL_FALSE; } /** * @return the L2ClanHall this L2Npc belongs to. */ public final ClanHall getClanHall() { if (_clanHallId < 0) { ClanHall temp = ClanHallManager.getInstance().getNearbyClanHall(getX(), getY(), 500); if (temp != null) _clanHallId = temp.getId(); if (_clanHallId < 0) return null; } return ClanHallManager.getInstance().getClanHallById(_clanHallId); } private void doTeleport(L2PcInstance player, int val) { L2TeleportLocation list = TeleportLocationData.getInstance().getTemplate(val); if (list != null) { if (player.destroyItemByItemId("Teleport", 57, list.getPrice(), this, true)) player.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ()); } else _log.warn("No teleport destination with id:" + val); player.sendPacket(ActionFailed.STATIC_PACKET); } private static void revalidateDeco(L2PcInstance player) { ClanHall ch = ClanHallManager.getInstance().getClanHallByOwner(player.getClan()); if (ch == null) return; ClanHallDecoration bl = new ClanHallDecoration(ch); player.sendPacket(bl); } private static void showDepositWindowClan(L2PcInstance player) { player.sendPacket(ActionFailed.STATIC_PACKET); if (player.getClan() != null) { if (player.getClan().getLevel() == 0) player.sendPacket(SystemMessageId.ONLY_LEVEL_1_CLAN_OR_HIGHER_CAN_USE_WAREHOUSE); else { player.setActiveWarehouse(player.getClan().getWarehouse()); player.tempInventoryDisable(); player.sendPacket(new WareHouseDepositList(player, WareHouseDepositList.CLAN)); } } } private static void showWithdrawWindowClan(L2PcInstance player) { player.sendPacket(ActionFailed.STATIC_PACKET); if ((player.getClanPrivileges() & L2Clan.CP_CL_VIEW_WAREHOUSE) != L2Clan.CP_CL_VIEW_WAREHOUSE) { player.sendPacket(SystemMessageId.YOU_DO_NOT_HAVE_THE_RIGHT_TO_USE_CLAN_WAREHOUSE); return; } if (player.getClan().getLevel() == 0) player.sendPacket(SystemMessageId.ONLY_LEVEL_1_CLAN_OR_HIGHER_CAN_USE_WAREHOUSE); else { player.setActiveWarehouse(player.getClan().getWarehouse()); player.sendPacket(new WareHouseWithdrawalList(player, WareHouseWithdrawalList.CLAN)); } } }