Examples of canReturnToSpawnPoint()


Examples of com.l2jfrozen.gameserver.model.L2Attackable.canReturnToSpawnPoint()

    // If this is a festival monster, then it remains in the same location.
    if(_actor instanceof L2FestivalMonsterInstance)
      return;

    // Check if the mob should not return to spawn point
    if(!npc.canReturnToSpawnPoint())
      return;

    // Minions following leader
    if(_actor instanceof L2MinionInstance && ((L2MinionInstance) _actor).getLeader() != null)
    {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.