Wear.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * Copyright (C) 2004-2015 L2J DataPack
  3. *
  4. * This file is part of L2J DataPack.
  5. *
  6. * L2J DataPack is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * L2J DataPack is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. package handlers.bypasshandlers;
  20. import java.util.StringTokenizer;
  21. import java.util.logging.Level;
  22. import com.l2jserver.Config;
  23. import com.l2jserver.gameserver.data.xml.impl.BuyListData;
  24. import com.l2jserver.gameserver.handler.IBypassHandler;
  25. import com.l2jserver.gameserver.model.actor.L2Character;
  26. import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
  27. import com.l2jserver.gameserver.model.buylist.L2BuyList;
  28. import com.l2jserver.gameserver.network.serverpackets.ActionFailed;
  29. import com.l2jserver.gameserver.network.serverpackets.ShopPreviewList;
  30. public class Wear implements IBypassHandler
  31. {
  32. private static final String[] COMMANDS =
  33. {
  34. "Wear"
  35. };
  36. @Override
  37. public boolean useBypass(String command, L2PcInstance activeChar, L2Character target)
  38. {
  39. if (!target.isNpc())
  40. {
  41. return false;
  42. }
  43. if (!Config.ALLOW_WEAR)
  44. {
  45. return false;
  46. }
  47. try
  48. {
  49. StringTokenizer st = new StringTokenizer(command, " ");
  50. st.nextToken();
  51. if (st.countTokens() < 1)
  52. {
  53. return false;
  54. }
  55. showWearWindow(activeChar, Integer.parseInt(st.nextToken()));
  56. return true;
  57. }
  58. catch (Exception e)
  59. {
  60. _log.log(Level.WARNING, "Exception in " + getClass().getSimpleName(), e);
  61. }
  62. return false;
  63. }
  64. private static final void showWearWindow(L2PcInstance player, int val)
  65. {
  66. final L2BuyList buyList = BuyListData.getInstance().getBuyList(val);
  67. if (buyList == null)
  68. {
  69. _log.warning("BuyList not found! BuyListId:" + val);
  70. player.sendPacket(ActionFailed.STATIC_PACKET);
  71. return;
  72. }
  73. player.setInventoryBlockingStatus(true);
  74. player.sendPacket(new ShopPreviewList(buyList, player.getAdena(), player.getExpertiseLevel()));
  75. }
  76. @Override
  77. public String[] getBypassList()
  78. {
  79. return COMMANDS;
  80. }
  81. }