PlayerHelp.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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.gameserver.handler.IBypassHandler;
  23. import com.l2jserver.gameserver.model.actor.L2Character;
  24. import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
  25. import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;
  26. public class PlayerHelp implements IBypassHandler
  27. {
  28. private static final String[] COMMANDS =
  29. {
  30. "player_help"
  31. };
  32. @Override
  33. public boolean useBypass(String command, L2PcInstance activeChar, L2Character target)
  34. {
  35. try
  36. {
  37. if (command.length() < 13)
  38. {
  39. return false;
  40. }
  41. final String path = command.substring(12);
  42. if (path.indexOf("..") != -1)
  43. {
  44. return false;
  45. }
  46. final StringTokenizer st = new StringTokenizer(path);
  47. final String[] cmd = st.nextToken().split("#");
  48. final NpcHtmlMessage html;
  49. if (cmd.length > 1)
  50. {
  51. final int itemId = Integer.parseInt(cmd[1]);
  52. html = new NpcHtmlMessage(0, itemId);
  53. }
  54. else
  55. {
  56. html = new NpcHtmlMessage();
  57. }
  58. html.setFile(activeChar.getHtmlPrefix(), "data/html/help/" + cmd[0]);
  59. activeChar.sendPacket(html);
  60. }
  61. catch (Exception e)
  62. {
  63. _log.log(Level.WARNING, "Exception in " + getClass().getSimpleName(), e);
  64. }
  65. return true;
  66. }
  67. @Override
  68. public String[] getBypassList()
  69. {
  70. return COMMANDS;
  71. }
  72. }