Wear.java 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * Copyright (C) 2004-2013 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.TradeController;
  24. import com.l2jserver.gameserver.handler.IBypassHandler;
  25. import com.l2jserver.gameserver.model.L2TradeList;
  26. import com.l2jserver.gameserver.model.actor.L2Character;
  27. import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
  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. player.setInventoryBlockingStatus(true);
  67. L2TradeList list = TradeController.getInstance().getBuyList(val);
  68. if (list != null)
  69. {
  70. ShopPreviewList bl = new ShopPreviewList(list, player.getAdena(), player.getExpertiseLevel());
  71. player.sendPacket(bl);
  72. }
  73. else
  74. {
  75. _log.warning("no buylist with id:" + val);
  76. player.sendPacket(ActionFailed.STATIC_PACKET);
  77. }
  78. }
  79. @Override
  80. public String[] getBypassList()
  81. {
  82. return COMMANDS;
  83. }
  84. }