123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /*
- * 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.Config;
- import net.sf.l2j.gameserver.handler.IAdminCommandHandler;
- import net.sf.l2j.gameserver.model.L2Object;
- import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
- import net.sf.l2j.gameserver.model.entity.TvTEvent;
- import net.sf.l2j.gameserver.model.entity.TvTEventTeleporter;
- import net.sf.l2j.gameserver.model.entity.TvTManager;
- /**
- * @author FBIagent
- */
- public class AdminTvTEvent implements IAdminCommandHandler
- {
- private static final String[] ADMIN_COMMANDS =
- {
- "admin_tvt_add",
- "admin_tvt_remove",
- "admin_tvt_advance"
- };
-
- public boolean useAdminCommand(String command, L2PcInstance activeChar)
- {
- if (command.equals("admin_tvt_add"))
- {
- L2Object target = activeChar.getTarget();
-
- if (!(target instanceof L2PcInstance))
- {
- activeChar.sendMessage("You should select a player!");
- return true;
- }
-
- add(activeChar, (L2PcInstance) target);
- }
- else if (command.equals("admin_tvt_remove"))
- {
- L2Object target = activeChar.getTarget();
-
- if (!(target instanceof L2PcInstance))
- {
- activeChar.sendMessage("You should select a player!");
- return true;
- }
-
- remove(activeChar, (L2PcInstance) target);
- }
- else if ( command.equals( "admin_tvt_advance" ) )
- {
- TvTManager.getInstance().skipDelay();
- }
-
- return true;
- }
-
- public String[] getAdminCommandList()
- {
- return ADMIN_COMMANDS;
- }
-
- private void add(L2PcInstance activeChar, L2PcInstance playerInstance)
- {
- if (TvTEvent.isPlayerParticipant(playerInstance.getObjectId()))
- {
- activeChar.sendMessage("Player already participated in the event!");
- return;
- }
-
- if (!TvTEvent.addParticipant(playerInstance))
- {
- activeChar.sendMessage("Player instance could not be added, it seems to be null!");
- return;
- }
-
- if (TvTEvent.isStarted())
- {
- new TvTEventTeleporter(playerInstance, TvTEvent.getParticipantTeamCoordinates(playerInstance.getObjectId()), true, false);
- }
- }
-
- private void remove(L2PcInstance activeChar, L2PcInstance playerInstance)
- {
- if (!TvTEvent.removeParticipant(playerInstance.getObjectId()))
- {
- activeChar.sendMessage("Player is not part of the event!");
- return;
- }
-
- new TvTEventTeleporter(playerInstance, Config.TVT_EVENT_PARTICIPATION_NPC_COORDINATES, true, true);
- }
- }
|