12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /*
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option) any later
- * version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package net.sf.l2j.gameserver.handler.itemhandlers;
- import net.sf.l2j.gameserver.cache.HtmCache;
- import net.sf.l2j.gameserver.handler.IItemHandler;
- import net.sf.l2j.gameserver.model.L2ItemInstance;
- import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
- import net.sf.l2j.gameserver.model.actor.instance.L2PlayableInstance;
- import net.sf.l2j.gameserver.network.serverpackets.ActionFailed;
- import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage;
- public class Book implements IItemHandler
- {
- private static final int[] ITEM_IDS =
- {
- 5588, 6317, 7561, 7063, 7064, 7065,
- 7082, 7083, 7084, 7085, 7086, 7087,
- 7088, 7089, 7090, 7091, 7092, 7093,
- 7094, 7095, 7096, 7097, 7098, 7099,
- 7100, 7101, 7102, 7103, 7104, 7105,
- 7106, 7107, 7108, 7109, 7110, 7111,
- 7112, 8059
- };
-
- /**
- *
- * @see net.sf.l2j.gameserver.handler.IItemHandler#useItem(net.sf.l2j.gameserver.model.actor.instance.L2PlayableInstance, net.sf.l2j.gameserver.model.L2ItemInstance)
- */
- public void useItem(L2PlayableInstance playable, L2ItemInstance item)
- {
- if (!(playable instanceof L2PcInstance))
- return;
- L2PcInstance activeChar = (L2PcInstance) playable;
- final int itemId = item.getItemId();
-
- String filename = "data/html/help/" + itemId + ".htm";
- String content = HtmCache.getInstance().getHtm(filename);
-
- if (content == null)
- {
- NpcHtmlMessage html = new NpcHtmlMessage(1);
- html.setHtml("<html><body>My Text is missing:<br>" + filename + "</body></html>");
- activeChar.sendPacket(html);
- }
- else
- {
- NpcHtmlMessage itemReply = new NpcHtmlMessage(5, itemId);
- itemReply.setHtml(content);
- activeChar.sendPacket(itemReply);
- }
-
- activeChar.sendPacket(ActionFailed.STATIC_PACKET);
- }
-
- /**
- *
- * @see net.sf.l2j.gameserver.handler.IItemHandler#getItemIds()
- */
- public int[] getItemIds()
- {
- return ITEM_IDS;
- }
- }
|