diff --git a/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/model/actor/Creature.java b/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/model/actor/Creature.java index 89419f5b5d..b0ecf76bc7 100644 --- a/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/model/actor/Creature.java +++ b/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/model/actor/Creature.java @@ -3060,6 +3060,9 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe // Set the timer of last position update to now m._moveTimestamp = gameTicks; + // Send a Server->Client packet MoveToLocation to the actor and all known PlayerInstance. + broadcastPacket(new MoveToLocation(this)); + if (distFraction > 1) { ThreadPool.execute(() -> getAI().notifyEvent(CtrlEvent.EVT_ARRIVED)); diff --git a/L2J_Mobius_2.5_Underground/java/org/l2jmobius/gameserver/model/actor/Creature.java b/L2J_Mobius_2.5_Underground/java/org/l2jmobius/gameserver/model/actor/Creature.java index 89419f5b5d..b0ecf76bc7 100644 --- a/L2J_Mobius_2.5_Underground/java/org/l2jmobius/gameserver/model/actor/Creature.java +++ b/L2J_Mobius_2.5_Underground/java/org/l2jmobius/gameserver/model/actor/Creature.java @@ -3060,6 +3060,9 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe // Set the timer of last position update to now m._moveTimestamp = gameTicks; + // Send a Server->Client packet MoveToLocation to the actor and all known PlayerInstance. + broadcastPacket(new MoveToLocation(this)); + if (distFraction > 1) { ThreadPool.execute(() -> getAI().notifyEvent(CtrlEvent.EVT_ARRIVED)); diff --git a/L2J_Mobius_3.0_Helios/java/org/l2jmobius/gameserver/model/actor/Creature.java b/L2J_Mobius_3.0_Helios/java/org/l2jmobius/gameserver/model/actor/Creature.java index 450c3c7b29..4952d63af8 100644 --- a/L2J_Mobius_3.0_Helios/java/org/l2jmobius/gameserver/model/actor/Creature.java +++ b/L2J_Mobius_3.0_Helios/java/org/l2jmobius/gameserver/model/actor/Creature.java @@ -3060,6 +3060,9 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe // Set the timer of last position update to now m._moveTimestamp = gameTicks; + // Send a Server->Client packet MoveToLocation to the actor and all known PlayerInstance. + broadcastPacket(new MoveToLocation(this)); + if (distFraction > 1) { ThreadPool.execute(() -> getAI().notifyEvent(CtrlEvent.EVT_ARRIVED)); diff --git a/L2J_Mobius_4.0_GrandCrusade/java/org/l2jmobius/gameserver/model/actor/Creature.java b/L2J_Mobius_4.0_GrandCrusade/java/org/l2jmobius/gameserver/model/actor/Creature.java index 450c3c7b29..4952d63af8 100644 --- a/L2J_Mobius_4.0_GrandCrusade/java/org/l2jmobius/gameserver/model/actor/Creature.java +++ b/L2J_Mobius_4.0_GrandCrusade/java/org/l2jmobius/gameserver/model/actor/Creature.java @@ -3060,6 +3060,9 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe // Set the timer of last position update to now m._moveTimestamp = gameTicks; + // Send a Server->Client packet MoveToLocation to the actor and all known PlayerInstance. + broadcastPacket(new MoveToLocation(this)); + if (distFraction > 1) { ThreadPool.execute(() -> getAI().notifyEvent(CtrlEvent.EVT_ARRIVED)); diff --git a/L2J_Mobius_5.0_Salvation/java/org/l2jmobius/gameserver/model/actor/Creature.java b/L2J_Mobius_5.0_Salvation/java/org/l2jmobius/gameserver/model/actor/Creature.java index 450c3c7b29..4952d63af8 100644 --- a/L2J_Mobius_5.0_Salvation/java/org/l2jmobius/gameserver/model/actor/Creature.java +++ b/L2J_Mobius_5.0_Salvation/java/org/l2jmobius/gameserver/model/actor/Creature.java @@ -3060,6 +3060,9 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe // Set the timer of last position update to now m._moveTimestamp = gameTicks; + // Send a Server->Client packet MoveToLocation to the actor and all known PlayerInstance. + broadcastPacket(new MoveToLocation(this)); + if (distFraction > 1) { ThreadPool.execute(() -> getAI().notifyEvent(CtrlEvent.EVT_ARRIVED)); diff --git a/L2J_Mobius_5.5_EtinasFate/java/org/l2jmobius/gameserver/model/actor/Creature.java b/L2J_Mobius_5.5_EtinasFate/java/org/l2jmobius/gameserver/model/actor/Creature.java index 450c3c7b29..4952d63af8 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/org/l2jmobius/gameserver/model/actor/Creature.java +++ b/L2J_Mobius_5.5_EtinasFate/java/org/l2jmobius/gameserver/model/actor/Creature.java @@ -3060,6 +3060,9 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe // Set the timer of last position update to now m._moveTimestamp = gameTicks; + // Send a Server->Client packet MoveToLocation to the actor and all known PlayerInstance. + broadcastPacket(new MoveToLocation(this)); + if (distFraction > 1) { ThreadPool.execute(() -> getAI().notifyEvent(CtrlEvent.EVT_ARRIVED)); diff --git a/L2J_Mobius_6.0_Fafurion/java/org/l2jmobius/gameserver/model/actor/Creature.java b/L2J_Mobius_6.0_Fafurion/java/org/l2jmobius/gameserver/model/actor/Creature.java index 450c3c7b29..4952d63af8 100644 --- a/L2J_Mobius_6.0_Fafurion/java/org/l2jmobius/gameserver/model/actor/Creature.java +++ b/L2J_Mobius_6.0_Fafurion/java/org/l2jmobius/gameserver/model/actor/Creature.java @@ -3060,6 +3060,9 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe // Set the timer of last position update to now m._moveTimestamp = gameTicks; + // Send a Server->Client packet MoveToLocation to the actor and all known PlayerInstance. + broadcastPacket(new MoveToLocation(this)); + if (distFraction > 1) { ThreadPool.execute(() -> getAI().notifyEvent(CtrlEvent.EVT_ARRIVED)); diff --git a/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/actor/Creature.java b/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/actor/Creature.java index ca398c1f67..46387cdf44 100644 --- a/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/actor/Creature.java +++ b/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/actor/Creature.java @@ -4039,6 +4039,9 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe // Set the timer of last position update to now m._moveTimestamp = gameTicks; + // Send a Server->Client packet MoveToLocation to the actor and all known PlayerInstance. + broadcastPacket(new MoveToLocation(this)); + if (distFraction > 1) { ThreadPool.execute(() -> getAI().notifyEvent(CtrlEvent.EVT_ARRIVED)); diff --git a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/actor/Creature.java b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/actor/Creature.java index 0cc114a8cc..14c07fbf2e 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/actor/Creature.java +++ b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/actor/Creature.java @@ -3059,6 +3059,9 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe // Set the timer of last position update to now m._moveTimestamp = gameTicks; + // Send a Server->Client packet MoveToLocation to the actor and all known PlayerInstance. + broadcastPacket(new MoveToLocation(this)); + if (distFraction > 1) { ThreadPool.execute(() -> getAI().notifyEvent(CtrlEvent.EVT_ARRIVED)); diff --git a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/actor/Creature.java b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/actor/Creature.java index 0cc114a8cc..14c07fbf2e 100644 --- a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/actor/Creature.java +++ b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/actor/Creature.java @@ -3059,6 +3059,9 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe // Set the timer of last position update to now m._moveTimestamp = gameTicks; + // Send a Server->Client packet MoveToLocation to the actor and all known PlayerInstance. + broadcastPacket(new MoveToLocation(this)); + if (distFraction > 1) { ThreadPool.execute(() -> getAI().notifyEvent(CtrlEvent.EVT_ARRIVED)); diff --git a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/actor/Creature.java b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/actor/Creature.java index 0cc114a8cc..14c07fbf2e 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/actor/Creature.java +++ b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/actor/Creature.java @@ -3059,6 +3059,9 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe // Set the timer of last position update to now m._moveTimestamp = gameTicks; + // Send a Server->Client packet MoveToLocation to the actor and all known PlayerInstance. + broadcastPacket(new MoveToLocation(this)); + if (distFraction > 1) { ThreadPool.execute(() -> getAI().notifyEvent(CtrlEvent.EVT_ARRIVED)); diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/actor/Creature.java b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/actor/Creature.java index 000842d06d..3cc65eef5a 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/actor/Creature.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/actor/Creature.java @@ -3072,6 +3072,9 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe // Set the timer of last position update to now m._moveTimestamp = gameTicks; + // Send a Server->Client packet MoveToLocation to the actor and all known PlayerInstance. + broadcastPacket(new MoveToLocation(this)); + if (distFraction > 1) { ThreadPool.execute(() -> getAI().notifyEvent(CtrlEvent.EVT_ARRIVED)); diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/actor/Creature.java b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/actor/Creature.java index 000842d06d..3cc65eef5a 100644 --- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/actor/Creature.java +++ b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/actor/Creature.java @@ -3072,6 +3072,9 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe // Set the timer of last position update to now m._moveTimestamp = gameTicks; + // Send a Server->Client packet MoveToLocation to the actor and all known PlayerInstance. + broadcastPacket(new MoveToLocation(this)); + if (distFraction > 1) { ThreadPool.execute(() -> getAI().notifyEvent(CtrlEvent.EVT_ARRIVED)); diff --git a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/actor/Creature.java b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/actor/Creature.java index 000842d06d..3cc65eef5a 100644 --- a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/actor/Creature.java +++ b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/actor/Creature.java @@ -3072,6 +3072,9 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe // Set the timer of last position update to now m._moveTimestamp = gameTicks; + // Send a Server->Client packet MoveToLocation to the actor and all known PlayerInstance. + broadcastPacket(new MoveToLocation(this)); + if (distFraction > 1) { ThreadPool.execute(() -> getAI().notifyEvent(CtrlEvent.EVT_ARRIVED));