123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- /*
- * Copyright (C) 2004-2015 L2J DataPack
- *
- * This file is part of L2J DataPack.
- *
- * L2J DataPack 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 DataPack 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.Collection;
- import java.util.logging.Logger;
- import com.l2jserver.Config;
- import com.l2jserver.gameserver.handler.IAdminCommandHandler;
- import com.l2jserver.gameserver.model.L2Object;
- import com.l2jserver.gameserver.model.L2World;
- import com.l2jserver.gameserver.model.actor.L2Character;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.network.SystemMessageId;
- /**
- * This class handles following admin commands: - heal = restores HP/MP/CP on target, name or radius
- * @version $Revision: 1.2.4.5 $ $Date: 2005/04/11 10:06:06 $ Small typo fix by Zoey76 24/02/2011
- */
- public class AdminHeal implements IAdminCommandHandler
- {
- private static Logger _log = Logger.getLogger(AdminRes.class.getName());
- private static final String[] ADMIN_COMMANDS =
- {
- "admin_heal"
- };
-
- @Override
- public boolean useAdminCommand(String command, L2PcInstance activeChar)
- {
-
- if (command.equals("admin_heal"))
- {
- handleHeal(activeChar);
- }
- else if (command.startsWith("admin_heal"))
- {
- try
- {
- String healTarget = command.substring(11);
- handleHeal(activeChar, healTarget);
- }
- catch (StringIndexOutOfBoundsException e)
- {
- if (Config.DEVELOPER)
- {
- _log.warning("Heal error: " + e);
- }
- activeChar.sendMessage("Incorrect target/radius specified.");
- }
- }
- return true;
- }
-
- @Override
- public String[] getAdminCommandList()
- {
- return ADMIN_COMMANDS;
- }
-
- private void handleHeal(L2PcInstance activeChar)
- {
- handleHeal(activeChar, null);
- }
-
- private void handleHeal(L2PcInstance activeChar, String player)
- {
-
- L2Object obj = activeChar.getTarget();
- if (player != null)
- {
- L2PcInstance plyr = L2World.getInstance().getPlayer(player);
-
- if (plyr != null)
- {
- obj = plyr;
- }
- else
- {
- try
- {
- int radius = Integer.parseInt(player);
- Collection<L2Object> objs = activeChar.getKnownList().getKnownObjects().values();
- for (L2Object object : objs)
- {
- if (object instanceof L2Character)
- {
- L2Character character = (L2Character) object;
- character.setCurrentHpMp(character.getMaxHp(), character.getMaxMp());
- if (object instanceof L2PcInstance)
- {
- character.setCurrentCp(character.getMaxCp());
- }
- }
- }
-
- activeChar.sendMessage("Healed within " + radius + " unit radius.");
- return;
- }
- catch (NumberFormatException nbe)
- {
- }
- }
- }
- if (obj == null)
- {
- obj = activeChar;
- }
- if (obj instanceof L2Character)
- {
- L2Character target = (L2Character) obj;
- target.setCurrentHpMp(target.getMaxHp(), target.getMaxMp());
- if (target instanceof L2PcInstance)
- {
- target.setCurrentCp(target.getMaxCp());
- }
- if (Config.DEBUG)
- {
- _log.fine("GM: " + activeChar.getName() + "(" + activeChar.getObjectId() + ") healed character " + target.getName());
- }
- }
- else
- {
- activeChar.sendPacket(SystemMessageId.INCORRECT_TARGET);
- }
- }
- }
|