From f2dc3a85ee2cbaadae3b70586516d5deb6377832 Mon Sep 17 00:00:00 2001 From: Zoey76 <zoey_76@msn.com> Date: Fri, 7 Mar 2014 00:34:49 +0000 Subject: [PATCH] BETA: Retail-like NPC turn to player on interact. Patch by: Tryskell Reviewed by: UnAfraid, VlLight, Zoey76, daemon Tested by: VlLight --- .../data/scripts/handlers/actionhandlers/L2NpcAction.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/actionhandlers/L2NpcAction.java b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/actionhandlers/L2NpcAction.java index 1d028b886f..6b3efac3d9 100644 --- a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/actionhandlers/L2NpcAction.java +++ b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/actionhandlers/L2NpcAction.java @@ -32,6 +32,7 @@ import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.model.entity.L2Event; import com.l2jserver.gameserver.model.quest.Quest; import com.l2jserver.gameserver.network.serverpackets.ActionFailed; +import com.l2jserver.gameserver.network.serverpackets.MoveToPawn; import com.l2jserver.util.Rnd; public class L2NpcAction implements IActionHandler @@ -104,7 +105,9 @@ public class L2NpcAction implements IActionHandler } else { - L2Npc npc = (L2Npc) target; + final L2Npc npc = (L2Npc) target; + // Turn NPC to the player. + activeChar.sendPacket(new MoveToPawn(activeChar, npc, 100)); if (npc.hasRandomAnimation()) { npc.onRandomAnimation(Rnd.get(8)); -- GitLab