123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- /*
- * 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.StringTokenizer;
- 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.L2ControllableMobInstance;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.network.SystemMessageId;
- /**
- * This class handles following admin commands:
- * - kill = kills target L2Character
- * - kill_monster = kills target non-player
- *
- * - kill <radius> = If radius is specified, then ALL players only in that radius will be killed.
- * - kill_monster <radius> = If radius is specified, then ALL non-players only in that radius will be killed.
- *
- * @version $Revision: 1.2.4.5 $ $Date: 2007/07/31 10:06:06 $
- */
- public class AdminKill implements IAdminCommandHandler
- {
- private static Logger _log = Logger.getLogger(AdminKill.class.getName());
- private static final String[] ADMIN_COMMANDS =
- {
- "admin_kill",
- "admin_kill_monster"
- };
-
- @Override
- public boolean useAdminCommand(String command, L2PcInstance activeChar)
- {
- if (command.startsWith("admin_kill"))
- {
- StringTokenizer st = new StringTokenizer(command, " ");
- st.nextToken(); // skip command
-
- if (st.hasMoreTokens())
- {
- String firstParam = st.nextToken();
- L2PcInstance plyr = L2World.getInstance().getPlayer(firstParam);
- if (plyr != null)
- {
- if (st.hasMoreTokens())
- {
- try
- {
- int radius = Integer.parseInt(st.nextToken());
- for (L2Character knownChar : plyr.getKnownList().getKnownCharactersInRadius(radius))
- {
- if (knownChar instanceof L2ControllableMobInstance || knownChar == activeChar)
- continue;
-
- kill(activeChar, knownChar);
- }
-
- activeChar.sendMessage("Killed all characters within a " + radius + " unit radius.");
- return true;
- }
- catch (NumberFormatException e)
- {
- activeChar.sendMessage("Invalid radius.");
- return false;
- }
- }
- kill(activeChar, plyr);
- }
- else
- {
- try
- {
- int radius = Integer.parseInt(firstParam);
-
- for (L2Character knownChar : activeChar.getKnownList().getKnownCharactersInRadius(radius))
- {
- if (knownChar instanceof L2ControllableMobInstance || knownChar == activeChar)
- continue;
- kill(activeChar, knownChar);
- }
-
- activeChar.sendMessage("Killed all characters within a " + radius + " unit radius.");
- return true;
- }
- catch (NumberFormatException e)
- {
- activeChar.sendMessage("Usage: //kill <player_name | radius>");
- return false;
- }
- }
- }
- else
- {
- L2Object obj = activeChar.getTarget();
- if (obj instanceof L2ControllableMobInstance || !(obj instanceof L2Character))
- activeChar.sendPacket(SystemMessageId.INCORRECT_TARGET);
- else
- kill(activeChar, (L2Character) obj);
- }
- }
- return true;
- }
-
- private void kill(L2PcInstance activeChar, L2Character target)
- {
- if (target instanceof L2PcInstance)
- {
- if (!((L2PcInstance) target).isGM())
- target.stopAllEffects(); // e.g. invincibility effect
- target.reduceCurrentHp(target.getMaxHp() + target.getMaxCp() + 1, activeChar, null);
- }
- else if (Config.L2JMOD_CHAMPION_ENABLE && target.isChampion())
- target.reduceCurrentHp(target.getMaxHp() * Config.L2JMOD_CHAMPION_HP + 1, activeChar, null);
- else
- {
- boolean targetIsInvul = false;
- if (target.isInvul())
- {
- targetIsInvul = true;
- target.setIsInvul(false);
- }
-
- target.reduceCurrentHp(target.getMaxHp() + 1, activeChar, null);
-
- if (targetIsInvul)
- {
- target.setIsInvul(true);
- }
- }
- if (Config.DEBUG)
- _log.fine("GM: " + activeChar.getName() + "(" + activeChar.getObjectId() + ")" + " killed character " + target.getObjectId());
- }
-
- @Override
- public String[] getAdminCommandList()
- {
- return ADMIN_COMMANDS;
- }
- }
|