0010: ff 9e c3 03 00 8f f3 ff ff .........
format dddddd (player id, target id, distance, startx, starty, startz)
@version $Revision: 1.3.2.1.2.5 $ $Date: 2005/04/06 16:13:46 $
484485486487488489490491492493494
npc.setTarget(target); //npc.setIsCastingNow(true); _target = null; _skill = null; if (getDist(skill.getCastRange()) > 0) npc.broadcastPacket(new MoveToPawn(npc, target, getDist(skill.getCastRange()))); try { wait(1000); npc.stopMove(null); npc.doCast(skill); } catch (Exception e) {
543544545546547548549550551552553
_actor.broadcastPacket(new CharMoveToLocation(_actor)); _clientMovingToPawnOffset = 0; } else if(sendPacket) { _actor.broadcastPacket(new MoveToPawn(_actor, (L2Character) pawn, offset)); } } else { _actor.broadcastPacket(new CharMoveToLocation(_actor));
817818819820821822823824825826827
final L2Character follow = getFollowTarget(); if(_clientMovingToPawnOffset != 0 && follow!= null) { // Send a Server->Client packet MoveToPawn to the actor and all L2PcInstance in its _knownPlayers MoveToPawn msg = new MoveToPawn(_actor, follow, _clientMovingToPawnOffset); player.sendPacket(msg); msg = null; } else {
9899100101102103104105106107108
moveToPawn(follow, _range); } else if(newtask) { newtask = false; _actor.broadcastPacket(new MoveToPawn(_actor, follow, _range)); } } catch(Throwable t) { if(Config.ENABLE_ALL_EXCEPTIONS)