/* * 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 . */ package handlers.usercommandhandlers; import java.text.SimpleDateFormat; import com.l2jserver.gameserver.handler.IUserCommandHandler; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage; import com.l2jserver.util.StringUtil; /** * Support for clan penalty user command. * @author Tempy */ public class ClanPenalty implements IUserCommandHandler { private static final int[] COMMAND_IDS = { 100 }; /** * * @see com.l2jserver.gameserver.handler.IUserCommandHandler#useUserCommand(int, com.l2jserver.gameserver.model.actor.instance.L2PcInstance) */ public boolean useUserCommand(int id, L2PcInstance activeChar) { if (id != COMMAND_IDS[0]) return false; boolean penalty = false; SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); final StringBuilder htmlContent = StringUtil.startAppend(500, "" + "
" + "" + "" + "
PenaltyExpiration Date
" ); if (activeChar.getClanJoinExpiryTime() > System.currentTimeMillis()) { StringUtil.append(htmlContent, "" + "" ); penalty = true; } if (activeChar.getClanCreateExpiryTime() > System.currentTimeMillis()) { StringUtil.append(htmlContent, "" + "" ); penalty = true; } if (activeChar.getClan() != null && activeChar.getClan().getCharPenaltyExpiryTime() > System.currentTimeMillis()) { StringUtil.append(htmlContent, "" + "" ); penalty = true; } if (!penalty) { htmlContent.append( "" + ""); } htmlContent.append( "
Unable to join a clan.", format.format(activeChar.getClanJoinExpiryTime()), "Unable to create a clan.", format.format(activeChar.getClanCreateExpiryTime()), "Unable to invite a clan member.", format.format(activeChar.getClan().getCharPenaltyExpiryTime()), "No penalty is imposed.
" + "
"); NpcHtmlMessage penaltyHtml = new NpcHtmlMessage(0); penaltyHtml.setHtml(htmlContent.toString()); activeChar.sendPacket(penaltyHtml); return true; } /** * * @see com.l2jserver.gameserver.handler.IUserCommandHandler#getUserCommandList() */ public int[] getUserCommandList() { return COMMAND_IDS; } }