123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /*
- * 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 net.sf.l2j.gameserver.handler.admincommandhandlers;
- import net.sf.l2j.gameserver.ThreadPoolManager;
- import net.sf.l2j.gameserver.handler.IAdminCommandHandler;
- import net.sf.l2j.gameserver.model.L2Object;
- import net.sf.l2j.gameserver.model.L2World;
- import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
- /**
- * This class handles following admin commands:
- * - admin_banchat = Imposes a chat ban on the specified player/target.
- * - admin_unbanchat = Removes any chat ban on the specified player/target.
- *
- * Uses:
- * admin_banchat [<player_name>] [<ban_duration>]
- * admin_unbanchat [<player_name>]
- *
- * If <player_name> is not specified, the current target player is used.
- *
- * @version $Revision: 1.1.6.3 $ $Date: 2005/04/11 10:06:06 $
- */
- public class AdminBanChat implements IAdminCommandHandler {
- private static final String[] ADMIN_COMMANDS = {"admin_banchat", "admin_unbanchat"};
- public boolean useAdminCommand(String command, L2PcInstance activeChar)
- {
- String[] cmdParams = command.split(" ");
- long banLength = -1;
- L2Object targetObject = null;
- L2PcInstance targetPlayer = null;
- if (cmdParams.length > 1)
- {
- targetPlayer = L2World.getInstance().getPlayer(cmdParams[1]);
- if (cmdParams.length > 2)
- {
- try
- {
- banLength = Integer.parseInt(cmdParams[2]) * 60000L;
- } catch (NumberFormatException nfe) {}
- }
- } else
- {
- if (activeChar.getTarget() != null)
- {
- targetObject = activeChar.getTarget();
- if (targetObject instanceof L2PcInstance)
- targetPlayer = (L2PcInstance)targetObject;
- }
- }
- if (targetPlayer == null)
- {
- activeChar.sendMessage("Incorrect parameter or target.");
- return false;
- }
- if (command.startsWith("admin_banchat"))
- {
- String banLengthStr = "";
- if (banLength > -1)
- {
- targetPlayer.setChatUnbanTask(ThreadPoolManager.getInstance().scheduleGeneral(new SchedChatUnban(targetPlayer, activeChar), banLength));
- banLengthStr = " for " + banLength + " seconds.";
- }
- activeChar.sendMessage(targetPlayer.getName() + " is now chat banned" + banLengthStr + ".");
- targetPlayer.setChatBanned(true);
- }
- else if (command.startsWith("admin_unbanchat"))
- {
- activeChar.sendMessage(targetPlayer.getName() + "'s chat ban has now been lifted.");
- targetPlayer.setChatBanned(false);
- }
- return true;
- }
- public String[] getAdminCommandList() {
- return ADMIN_COMMANDS;
- }
- private class SchedChatUnban implements Runnable
- {
- L2PcInstance _player;
- L2PcInstance _banner;
- protected SchedChatUnban(L2PcInstance player, L2PcInstance banner)
- {
- _player = player;
- _banner = banner;
- }
- public void run()
- {
- _player.setChatBanned(false);
- }
- }
- }
|