NPCTalkHandler.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:4k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3. Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4. Matthias Butz <matze@odinms.de>
  5. Jan Christian Meyer <vimes@odinms.de>
  6. This program is free software: you can redistribute it and/or modify
  7. it under the terms of the GNU Affero General Public License version 3
  8. as published by the Free Software Foundation. You may not use, modify
  9. or distribute this program under any other version of the
  10. GNU Affero General Public License.
  11. This program 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
  14. GNU Affero General Public License for more details.
  15. You should have received a copy of the GNU Affero General Public License
  16. along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17.  */
  18. package net.sf.odinms.net.channel.handler;
  19. import net.sf.odinms.client.MapleClient;
  20. import net.sf.odinms.net.AbstractMaplePacketHandler;
  21. import net.sf.odinms.scripting.npc.NPCScriptManager;
  22. import net.sf.odinms.server.life.MapleNPC;
  23. import net.sf.odinms.server.maps.MapleMapObject;
  24. import net.sf.odinms.server.maps.PlayerNPCs;
  25. import net.sf.odinms.tools.MaplePacketCreator;
  26. import net.sf.odinms.tools.data.input.SeekableLittleEndianAccessor;
  27. public class NPCTalkHandler extends AbstractMaplePacketHandler {
  28.     @Override
  29.     public void handlePacket(SeekableLittleEndianAccessor slea, MapleClient c) {
  30.         c.getPlayer().resetAfkTime();
  31.         int oid = slea.readInt();
  32.         slea.readInt(); // dont know
  33.         MapleMapObject obj = c.getPlayer().getMap().getMapObject(oid);
  34.         if (obj instanceof MapleNPC) {
  35.             MapleNPC npc = (MapleNPC) obj;
  36.             if (!c.getPlayer().getCheatTracker().Spam(1000, 4)) {
  37.                 if (npc.getId() == 9010009) {
  38.                     if (c.isGuest()) {
  39.                         c.getPlayer().dropMessage(1, "Duey is not available to Guests");
  40.                         c.getSession().write(MaplePacketCreator.enableActions());
  41.                         return;
  42.                     }
  43.                     c.getSession().write(MaplePacketCreator.sendDuey((byte) 8, DueyHandler.loadItems(c.getPlayer())));
  44.                 } else if (npc.hasShop()) {
  45.                     //destroy the old shop if one exists...
  46.                     if (c.getPlayer().getShop() != null) {
  47.                         c.getPlayer().setShop(null);
  48.                         c.getSession().write(MaplePacketCreator.confirmShopTransaction((byte) 20));
  49.                     }
  50.                     npc.sendShop(c);
  51.                 } else {
  52.                     if (c.getCM() != null || c.getQM() != null) {
  53.                         c.getSession().write(MaplePacketCreator.enableActions());
  54.                         return;
  55.                     }
  56.                     NPCScriptManager.getInstance().start(c, npc.getId());
  57.                 // NPCMoreTalkHandler.npc = npc.getId();
  58.                 // 0 = next button
  59.                 // 1 = yes no
  60.                 // 2 = accept decline
  61.                 // 5 = select a link
  62.                 // c.getSession().write(MaplePacketCreator.getNPCTalk(npc.getId(), (byte) 0,
  63.                 // "Yo! I'm #p" + npc.getId() + "#, lulz! I can warp you lululululu.", "00 01"));
  64.                 }
  65.             }
  66.         } else if (obj instanceof PlayerNPCs) {
  67.             PlayerNPCs npc = (PlayerNPCs) obj;
  68.             NPCScriptManager.getInstance().start(c, npc.getId());
  69.         }
  70.     }
  71. }