Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Hi

I try to get custom entity to a specific position which is located above the diamond block, but the entity stops next to the block and doesn't continue. Where is the problem? How can I get my entity to position above the diamond block?

https://imgur.com/6dzbt6J

 

Custom goal:

public class TestMoveToPositionGoal extends Goal {

	protected MiniGolemEntity mob;
	protected BlockPos blockPos;
	protected int index;
	protected int tryTicks;

	public TestMoveToPositionGoal(MiniGolemEntity entity, int index) {
		this.mob = entity;
		this.index = index;
		
		this.setFlags(EnumSet.of(Goal.Flag.MOVE, Goal.Flag.JUMP));
		
		blockPos = new BlockPos(8, -60, -19);
	}
	
	@Override
	public void tick() {
		super.tick();
		
		if(!blockPos.closerThan(this.mob.position(), 1D)) {
			this.tryTicks++;
			if(this.shouldRecalculatePath()) {
				System.out.println("recalculate");
				mob.getNavigation().moveTo(blockPos.getX() + 0.5D, blockPos.getY(), blockPos.getZ() + 0.5D, 1F);
			}
		} else {
			this.tryTicks--;
			mob.getNavigation().stop();
			mob.chanceStatus(index);
			System.out.println("finish");
		}
	}
	
	@Override
	public void start() {
		super.start();
		tryTicks = 0;
	}
	
	public boolean shouldRecalculatePath() {
		return this.tryTicks % 40 == 0;
	}	
   
	@Override
	public boolean canUse() {
		return mob.canUseGoal(index);
	}
}

Entity only recalculate path, but doesn't move. I know. I can solve it by increasing the radius, but I don't want to.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.