123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- /*
- * 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 com.l2jserver.gameserver.handler.IAdminCommandHandler;
- import com.l2jserver.gameserver.instancemanager.TransformationManager;
- import com.l2jserver.gameserver.model.L2Object;
- import com.l2jserver.gameserver.model.actor.L2Character;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.serverpackets.MagicSkillUse;
- import com.l2jserver.gameserver.network.serverpackets.SetupGauge;
- import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
- /**
- * This class handles following admin commands: polymorph
- *
- * @version $Revision: 1.2.2.1.2.4 $ $Date: 2007/07/31 10:05:56 $
- */
- public class AdminPolymorph implements IAdminCommandHandler
- {
- private static final String[] ADMIN_COMMANDS =
- {
- "admin_polymorph",
- "admin_unpolymorph",
- "admin_polymorph_menu",
- "admin_unpolymorph_menu",
- "admin_transform",
- "admin_untransform",
- "admin_transform_menu",
- "admin_untransform_menu",
- };
-
- public boolean useAdminCommand(String command, L2PcInstance activeChar)
- {
- if (activeChar.isMounted())
- {
- activeChar.sendMessage("You can't transform while mounted, please dismount and try again.");
- return false;
- }
-
- if (command.startsWith("admin_untransform"))
- {
- L2Object obj = activeChar.getTarget();
- if (obj instanceof L2Character)
- {
- ((L2Character) obj).stopTransformation(true);
- }
- else
- {
- activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.INCORRECT_TARGET));
- }
- }
- else if (command.startsWith("admin_transform"))
- {
- L2Object obj = activeChar.getTarget();
- if (obj instanceof L2PcInstance)
- {
- L2PcInstance cha = (L2PcInstance) obj;
-
- String[] parts = command.split(" ");
- if (parts.length >= 2)
- {
- try
- {
- int id = Integer.parseInt(parts[1]);
- if (!TransformationManager.getInstance().transformPlayer(id, cha))
- {
- cha.sendMessage("Unknow transformation id: " + id);
- }
- }
- catch (NumberFormatException e)
- {
- activeChar.sendMessage("Usage: //transform <id>");
- }
- }
- else if (parts.length == 1)
- cha.untransform();
- else
- {
- activeChar.sendMessage("Usage: //transform <id>");
- }
- }
- else
- {
- activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.INCORRECT_TARGET));
- }
- }
- if (command.startsWith("admin_polymorph"))
- {
- StringTokenizer st = new StringTokenizer(command);
- L2Object target = activeChar.getTarget();
- try
- {
- st.nextToken();
- String p1 = st.nextToken();
- if (st.hasMoreTokens())
- {
- String p2 = st.nextToken();
- doPolymorph(activeChar, target, p2, p1);
- }
- else
- doPolymorph(activeChar, target, p1, "npc");
- }
- catch (Exception e)
- {
- activeChar.sendMessage("Usage: //polymorph [type] <id>");
- }
- }
- else if (command.equals("admin_unpolymorph"))
- {
- doUnpoly(activeChar, activeChar.getTarget());
- }
- if (command.contains("_menu"))
- {
- showMainPage(activeChar, command);
- }
-
- return true;
- }
-
- public String[] getAdminCommandList()
- {
- return ADMIN_COMMANDS;
- }
-
- /**
- * @param activeChar
- * @param target
- * @param id
- * @param type
- */
- private void doPolymorph(L2PcInstance activeChar, L2Object obj, String id, String type)
- {
- if (obj != null)
- {
- obj.getPoly().setPolyInfo(type, id);
- //animation
- if (obj instanceof L2Character)
- {
- L2Character Char = (L2Character) obj;
- MagicSkillUse msk = new MagicSkillUse(Char, 1008, 1, 4000, 0);
- Char.broadcastPacket(msk);
- SetupGauge sg = new SetupGauge(0, 4000);
- Char.sendPacket(sg);
- }
- //end of animation
- obj.decayMe();
- obj.spawnMe(obj.getX(), obj.getY(), obj.getZ());
- activeChar.sendMessage("Polymorph succeed");
- }
- else
- activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.INCORRECT_TARGET));
- }
-
- /**
- * @param activeChar
- * @param target
- */
- private void doUnpoly(L2PcInstance activeChar, L2Object target)
- {
- if (target != null)
- {
- target.getPoly().setPolyInfo(null, "1");
- target.decayMe();
- target.spawnMe(target.getX(), target.getY(), target.getZ());
- activeChar.sendMessage("Unpolymorph succeed");
- }
- else
- activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.INCORRECT_TARGET));
- }
-
- private void showMainPage(L2PcInstance activeChar, String command)
- {
- if (command.contains("transform"))
- AdminHelpPage.showHelpPage(activeChar, "transform.htm");
- else if (command.contains("abnormal"))
- AdminHelpPage.showHelpPage(activeChar, "abnormal.htm");
- else
- AdminHelpPage.showHelpPage(activeChar, "effects_menu.htm");
- }
- }
|