Examples of PathfinderGoalSelectorHelper


Examples of de.kumpelblase2.remoteentities.nms.PathfinderGoalSelectorHelper

  public RemoteBlazeEntity(World world, RemoteEntity inRemoteEntity)
  {
    super(world);
    this.m_remoteEntity = inRemoteEntity;
    new PathfinderGoalSelectorHelper(this.goalSelector).clearGoals();
    new PathfinderGoalSelectorHelper(this.targetSelector).clearGoals();
  }
View Full Code Here

Examples of de.kumpelblase2.remoteentities.nms.PathfinderGoalSelectorHelper

  public RemoteVillagerEntity(World inWorld, RemoteEntity inRemoteEntity)
  {
    super(inWorld);
    this.m_remoteEntity = inRemoteEntity;
    new PathfinderGoalSelectorHelper(this.goalSelector).clearGoals();
    new PathfinderGoalSelectorHelper(this.targetSelector).clearGoals();
  }
View Full Code Here

Examples of de.kumpelblase2.remoteentities.nms.PathfinderGoalSelectorHelper

  public RemoteBatEntity(World world, RemoteEntity inRemoteEntity)
  {
    super(world);
    this.m_remoteEntity = inRemoteEntity;
    new PathfinderGoalSelectorHelper(this.goalSelector).clearGoals();
    new PathfinderGoalSelectorHelper(this.targetSelector).clearGoals();
  }
View Full Code Here

Examples of de.kumpelblase2.remoteentities.nms.PathfinderGoalSelectorHelper

  public RemoteLavaSlimeEntity(World world, RemoteEntity inRemoteEntity)
  {
    super(world);
    this.m_remoteEntity = inRemoteEntity;
    new PathfinderGoalSelectorHelper(this.goalSelector).clearGoals();
    new PathfinderGoalSelectorHelper(this.targetSelector).clearGoals();
    this.m_jumpDelay = this.random.nextInt(20) + 10;
  }
View Full Code Here

Examples of de.kumpelblase2.remoteentities.nms.PathfinderGoalSelectorHelper

  public RemoteIronGolemEntity(World world, RemoteEntity inRemoteEntity)
  {
    super(world);
    this.m_remoteEntity = inRemoteEntity;
    new PathfinderGoalSelectorHelper(this.goalSelector).clearGoals();
    new PathfinderGoalSelectorHelper(this.targetSelector).clearGoals();
  }
View Full Code Here

Examples of de.kumpelblase2.remoteentities.nms.PathfinderGoalSelectorHelper

  public RemoteOceloteEntity(World world, RemoteEntity inRemoteEntity)
  {
    super(world);
    this.m_remoteEntity = inRemoteEntity;
    new PathfinderGoalSelectorHelper(this.goalSelector).clearGoals();
    new PathfinderGoalSelectorHelper(this.targetSelector).clearGoals();
    this.bp = new DesireSitTemp(this.getRemoteEntity());
    try
    {
      Field temptField = ReflectionUtil.getOrRegisterField(EntityOcelot.class, "bq");
      temptField.set(this, new DesireTemptTemp(this.getRemoteEntity()));
View Full Code Here

Examples of de.kumpelblase2.remoteentities.nms.PathfinderGoalSelectorHelper

  public RemoteSlimeEntity(World world, RemoteEntity inRemoteEntity)
  {
    super(world);
    this.m_remoteEntity = inRemoteEntity;
    new PathfinderGoalSelectorHelper(this.goalSelector).clearGoals();
    new PathfinderGoalSelectorHelper(this.targetSelector).clearGoals();
    this.m_jumpDelay = this.random.nextInt(20) + 10;
  }
View Full Code Here

Examples of de.kumpelblase2.remoteentities.nms.PathfinderGoalSelectorHelper

  public RemoteWitherEntity(World world, RemoteEntity inEntity)
  {
    super(world);
    this.m_remoteEntity = inEntity;
    new PathfinderGoalSelectorHelper(this.goalSelector).clearGoals();
    new PathfinderGoalSelectorHelper(this.targetSelector).clearGoals();
  }
View Full Code Here

Examples of de.kumpelblase2.remoteentities.nms.PathfinderGoalSelectorHelper

  public RemoteEnderDragonEntity(World world, RemoteEntity inRemoteEntity)
  {
    super(world);
    this.m_remoteEntity = inRemoteEntity;
    new PathfinderGoalSelectorHelper(this.goalSelector).clearGoals();
    new PathfinderGoalSelectorHelper(this.targetSelector).clearGoals();
  }
View Full Code Here

Examples of de.kumpelblase2.remoteentities.nms.PathfinderGoalSelectorHelper

  public RemoteGhastEntity(World world, RemoteEntity inRemoteEntity)
  {
    super(world);
    this.m_remoteEntity = inRemoteEntity;
    new PathfinderGoalSelectorHelper(this.goalSelector).clearGoals();
    new PathfinderGoalSelectorHelper(this.targetSelector).clearGoals();
  }
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.