Wear.java 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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.tempInventoryDisable();
  67. if (Config.DEBUG)
  68. {
  69. _log.fine("Showing wearlist");
  70. }
  71. L2TradeList list = TradeController.getInstance().getBuyList(val);
  72. if (list != null)
  73. {
  74. ShopPreviewList bl = new ShopPreviewList(list, player.getAdena(), player.getExpertiseLevel());
  75. player.sendPacket(bl);
  76. }
  77. else
  78. {
  79. _log.warning("no buylist with id:" + val);
  80. player.sendPacket(ActionFailed.STATIC_PACKET);
  81. }
  82. }
  83. @Override
  84. public String[] getBypassList()
  85. {
  86. return COMMANDS;
  87. }
  88. }