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'm making a mob which moves to a certain location, breaks a block and returns to it's original location. This is repeated for every block of that type in the area.

 

I've already got a for loop to account for each block, but how would I go about moving the entity to the location of the block and then checking if it has done so? I have tried using a while loop and checking if the entity's position is close to the block's, but that crashed the game... :P

 

Here's the method I'm using to move the entity:

public void moveEntityTo(int x, int y, int z){

this.getNavigator().tryMoveToXYZ(x, y, z, 0.3D);

    }

 

All of my source code is here: https://github.com/VivaDaylight3/myrmecology

 

Thanks!

"Thinking that coding is the nerdy IT guy at work rebooting your computer is like thinking that music is what happens when the piano tuner comes round." - Ed Rex

Hi

 

The basic problem is that it takes time for the Mob to get where it's going and you have to let the game run while you wait for it to get there.  For some background info see here:

http://greyminecraftcoder.blogspot.com/2013/09/the-minecraft-main-game-loop.html

 

I would suggest a couple of ways:

the .onUpdate is called every tick, so you could put your code in there to see whether the mob is within range of the target position (or if too much time has elapsed, give up).  ForgeHooks.onLivingUpdate(this) might be a good spot.

 

Probably better: create your own AI task to do it.  See EntityAIMoveTowardsTarget for inspiration, also EntityMoveHelper.

 

A good tutorial to start with is

http://wuppy29.blogspot.com.au/2012/11/modding-142-basic-mob-part-3-ai.html

 

-TGG

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.