Package ai

Source Code of ai.SwampSoul

package ai;

import lineage2.gameserver.ai.Mystic;
import lineage2.gameserver.model.instances.NpcInstance;

/**
* @author ALF
*/
public class SwampSoul extends Mystic
{

  public SwampSoul(NpcInstance actor)
  {
    super(actor);
    AI_TASK_ACTIVE_DELAY = 2000;
  }

  @Override
  public boolean isGlobalAI()
  {
    return false;
  }

  @Override
  protected boolean thinkActive()
  {
    NpcInstance actor = getActor();

    actor.deleteMe();
    return false;

    //return super.thinkActive();
  }
}
TOP

Related Classes of ai.SwampSoul

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.