149150151152153154155156157158159
Location loc = ((Player) actor).getLastServerPosition(); if (loc != null) { actor.setLoc(loc, true); } actor.stopMove(); } onEvtThink(); } /**
198199200201202203204205206207208
protected void onEvtDead(Creature killer) { Creature actor = getActor(); actor.abortAttack(true, true); actor.abortCast(true, true); actor.stopMove(); actor.broadcastPacket(new Die(actor)); setIntention(CtrlIntention.AI_INTENTION_IDLE); } /**
304305306307308309310311312313314
* @param validate boolean */ public void clientStopMoving(boolean validate) { Creature actor = getActor(); actor.stopMove(validate); } /** * Method clientStopMoving. */
313314315316317318319320321322323
* Method clientStopMoving. */ public void clientStopMoving() { Creature actor = getActor(); actor.stopMove(); } /** * Method getActor. * @return Creature
6364656667686970717273
{ return; } player.abortAttack(true, true); player.abortCast(true, true); player.stopMove(); if (_count > 0) { if (player.getInventory().destroyItemByItemId(8615, _count)) { player.sendPacket(SystemMessage2.removeItems(8615, _count));
5051525354555657585960
if ((residence != null) && (player.getClan() != null) && (residence.getOwner() == player.getClan())) { } else { player.stopMove(); player.sendPacket(SystemMsg.THIS_AREA_CANNOT_BE_ENTERED_WHILE_MOUNTED_ATOP_OF_A_WYVERN); player.setMount(0, 0, 0); } } }
6768697071727374757677
{ super.onStart(); Player player = _effected.getPlayer(); if (player.isMoving) { player.stopMove(); } _isWereSitting = player.isSitting(); player.sitDown(null); }
104105106107108109110111112113114
} } } if (mob != null) { actor.stopMove(); actor.setRunning(); getActor().getAI().notifyEvent(CtrlEvent.EVT_AGGRESSION, mob, 1); return true; } return false;
7172737475767778798081