86 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| /*
 | |
|  * This file is part of the L2J Mobius project.
 | |
|  * 
 | |
|  * 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 handlers.admincommandhandlers;
 | |
| 
 | |
| import java.util.Calendar;
 | |
| import java.util.StringTokenizer;
 | |
| 
 | |
| import com.l2jmobius.gameserver.handler.IAdminCommandHandler;
 | |
| import com.l2jmobius.gameserver.instancemanager.GraciaSeedsManager;
 | |
| import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
 | |
| import com.l2jmobius.gameserver.network.serverpackets.NpcHtmlMessage;
 | |
| 
 | |
| public class AdminGraciaSeeds implements IAdminCommandHandler
 | |
| {
 | |
| 	private static final String[] ADMIN_COMMANDS =
 | |
| 	{
 | |
| 		"admin_gracia_seeds",
 | |
| 		"admin_kill_tiat",
 | |
| 		"admin_set_sodstate"
 | |
| 	};
 | |
| 	
 | |
| 	@Override
 | |
| 	public boolean useAdminCommand(String command, L2PcInstance activeChar)
 | |
| 	{
 | |
| 		final StringTokenizer st = new StringTokenizer(command, " ");
 | |
| 		final String actualCommand = st.nextToken(); // Get actual command
 | |
| 		
 | |
| 		String val = "";
 | |
| 		if (st.countTokens() >= 1)
 | |
| 		{
 | |
| 			val = st.nextToken();
 | |
| 		}
 | |
| 		
 | |
| 		if (actualCommand.equalsIgnoreCase("admin_kill_tiat"))
 | |
| 		{
 | |
| 			GraciaSeedsManager.getInstance().increaseSoDTiatKilled();
 | |
| 		}
 | |
| 		else if (actualCommand.equalsIgnoreCase("admin_set_sodstate"))
 | |
| 		{
 | |
| 			GraciaSeedsManager.getInstance().setSoDState(Integer.parseInt(val), true);
 | |
| 		}
 | |
| 		
 | |
| 		showMenu(activeChar);
 | |
| 		return true;
 | |
| 	}
 | |
| 	
 | |
| 	private void showMenu(L2PcInstance activeChar)
 | |
| 	{
 | |
| 		final NpcHtmlMessage html = new NpcHtmlMessage(0, 1);
 | |
| 		html.setFile(activeChar.getHtmlPrefix(), "data/html/admin/graciaseeds.htm");
 | |
| 		html.replace("%sodstate%", String.valueOf(GraciaSeedsManager.getInstance().getSoDState()));
 | |
| 		html.replace("%sodtiatkill%", String.valueOf(GraciaSeedsManager.getInstance().getSoDTiatKilled()));
 | |
| 		if (GraciaSeedsManager.getInstance().getSoDTimeForNextStateChange() > 0)
 | |
| 		{
 | |
| 			final Calendar nextChangeDate = Calendar.getInstance();
 | |
| 			nextChangeDate.setTimeInMillis(System.currentTimeMillis() + GraciaSeedsManager.getInstance().getSoDTimeForNextStateChange());
 | |
| 			html.replace("%sodtime%", nextChangeDate.getTime().toString());
 | |
| 		}
 | |
| 		else
 | |
| 		{
 | |
| 			html.replace("%sodtime%", "-1");
 | |
| 		}
 | |
| 		activeChar.sendPacket(html);
 | |
| 	}
 | |
| 	
 | |
| 	@Override
 | |
| 	public String[] getAdminCommandList()
 | |
| 	{
 | |
| 		return ADMIN_COMMANDS;
 | |
| 	}
 | |
| }
 | 
