96 lines
4.2 KiB
Java
96 lines
4.2 KiB
Java
/*
|
|
This file is part of the OdinMS Maple Story Server
|
|
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
|
Matthias Butz <matze@odinms.de>
|
|
Jan Christian Meyer <vimes@odinms.de>
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation version 3 as published by
|
|
the Free Software Foundation. You may not use, modify or distribute
|
|
this program under any other version of the GNU Affero General Public
|
|
License.
|
|
|
|
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 Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package net.server.channel.handlers;
|
|
|
|
import client.Client;
|
|
import client.processor.npc.DueyProcessor;
|
|
import config.YamlConfig;
|
|
import net.AbstractPacketHandler;
|
|
import net.packet.InPacket;
|
|
import scripting.npc.NPCScriptManager;
|
|
import server.life.MaplePlayerNPC;
|
|
import server.life.NPC;
|
|
import server.maps.MapleMapObject;
|
|
import tools.FilePrinter;
|
|
import tools.PacketCreator;
|
|
|
|
public final class NPCTalkHandler extends AbstractPacketHandler {
|
|
@Override
|
|
public final void handlePacket(InPacket p, Client c) {
|
|
if (!c.getPlayer().isAlive()) {
|
|
c.sendPacket(PacketCreator.enableActions());
|
|
return;
|
|
}
|
|
|
|
if(currentServerTime() - c.getPlayer().getNpcCooldown() < YamlConfig.config.server.BLOCK_NPC_RACE_CONDT) {
|
|
c.sendPacket(PacketCreator.enableActions());
|
|
return;
|
|
}
|
|
|
|
int oid = p.readInt();
|
|
MapleMapObject obj = c.getPlayer().getMap().getMapObject(oid);
|
|
if (obj instanceof NPC) {
|
|
NPC npc = (NPC) obj;
|
|
if(YamlConfig.config.server.USE_DEBUG == true) c.getPlayer().dropMessage(5, "Talking to NPC " + npc.getId());
|
|
|
|
if (npc.getId() == 9010009) { //is duey
|
|
DueyProcessor.dueySendTalk(c, false);
|
|
} else {
|
|
if (c.getCM() != null || c.getQM() != null) {
|
|
c.sendPacket(PacketCreator.enableActions());
|
|
return;
|
|
}
|
|
|
|
// Custom handling to reduce the amount of scripts needed.
|
|
if (npc.getId() >= 9100100 && npc.getId() <= 9100200) {
|
|
NPCScriptManager.getInstance().start(c, npc.getId(), "gachapon", null);
|
|
} else if (npc.getName().endsWith("Maple TV")) {
|
|
NPCScriptManager.getInstance().start(c, npc.getId(), "mapleTV", null);
|
|
} else if (YamlConfig.config.server.USE_REBIRTH_SYSTEM && npc.getId() == YamlConfig.config.server.REBIRTH_NPC_ID) {
|
|
NPCScriptManager.getInstance().start(c, npc.getId(), "rebirth", null);
|
|
} else {
|
|
boolean hasNpcScript = NPCScriptManager.getInstance().start(c, npc.getId(), oid, null);
|
|
if (!hasNpcScript) {
|
|
if (!npc.hasShop()) {
|
|
FilePrinter.printError(FilePrinter.NPC_UNCODED, "NPC " + npc.getName() + "(" + npc.getId() + ") is not coded.");
|
|
return;
|
|
} else if (c.getPlayer().getShop() != null) {
|
|
c.sendPacket(PacketCreator.enableActions());
|
|
return;
|
|
}
|
|
|
|
npc.sendShop(c);
|
|
}
|
|
}
|
|
}
|
|
} else if (obj instanceof MaplePlayerNPC) {
|
|
MaplePlayerNPC pnpc = (MaplePlayerNPC) obj;
|
|
NPCScriptManager nsm = NPCScriptManager.getInstance();
|
|
|
|
if (pnpc.getScriptId() < 9977777 && !nsm.isNpcScriptAvailable(c, "" + pnpc.getScriptId())) {
|
|
nsm.start(c, pnpc.getScriptId(), "rank_user", null);
|
|
} else {
|
|
nsm.start(c, pnpc.getScriptId(), null);
|
|
}
|
|
}
|
|
}
|
|
} |