PlayerHelp.java 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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.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. NpcHtmlMessage html;
  49. if (cmd.length > 1)
  50. {
  51. final int itemId = Integer.parseInt(cmd[1]);
  52. html = new NpcHtmlMessage(1, itemId);
  53. }
  54. else
  55. {
  56. html = new NpcHtmlMessage(1);
  57. }
  58. html.setFile(activeChar.getHtmlPrefix(), "data/html/help/" + cmd[0]);
  59. html.disableValidation();
  60. activeChar.sendPacket(html);
  61. }
  62. catch (Exception e)
  63. {
  64. _log.log(Level.WARNING, "Exception in " + getClass().getSimpleName(), e);
  65. }
  66. return true;
  67. }
  68. @Override
  69. public String[] getBypassList()
  70. {
  71. return COMMANDS;
  72. }
  73. }