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

I have been trying to implement this for awhile but with little success.  I have added methods that work just fine for blocks with the normal block IDs of 255 and below but it has trouble rendering for anything over.

 

You can add this where you would like but I used ModLoader class for simplicity.

private static ArrayList<Integer> EndermenCarry = new ArrayList();
    public static void addToEndermenCarry(int blockID)
    {
        EndermenCarry.add(blockID);
    }
    
    public static ArrayList<Integer> getEndermenCarry()
    {
        return EndermenCarry;
    }

 

This goes in the static{} of EntityEnderman class after the other code.

for (int i = 0; i < ModLoader.getEndermenCarry().size(); i++) {
            canCarryBlocks[ModLoader.getEndermenCarry().get(i)] = true;
        }

 

I have gotten this to work with anything with a normal BlockID.

 

Error it presents when it crashes if it crashes:

 

java.lang.ArrayIndexOutOfBoundsException: -72

at net.minecraft.src.ExtendedBlockStorage.setExtBlockID(ExtendedBlockStorage.java:79)

at net.minecraft.src.Chunk.setBlockIDWithMetadata(Chunk.java:629)

at net.minecraft.src.World.setBlockAndMetadata(World.java:669)

at net.minecraft.src.World.setBlockAndMetadataWithNotify(World.java:821)

at net.minecraft.src.EntityEnderman.onLivingUpdate(EntityEnderman.java:169)

at net.minecraft.src.EntityLiving.onUpdate(EntityLiving.java:662)

at net.minecraft.src.EntityMob.onUpdate(EntityMob.java:35)

at net.minecraft.src.World.updateEntityWithOptionalForce(World.java:2194)

at net.minecraft.src.World.updateEntity(World.java:2165)

at net.minecraft.src.World.updateEntities(World.java:2047)

at net.minecraft.client.Minecraft.runTick(Minecraft.java:1867)

at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:822)

at net.minecraft.client.Minecraft.run(Minecraft.java:750)

at java.lang.Thread.run(Thread.java:722)

 

 

I have attempted to tweak the code to work but it doesn't come up with any easy solutions.

width=320 height=64http://www.slothygaming.com/img/ota.png[/img]

If your grammar is shit and you blatantly don't know what you're doing, I will not help you.

ModLoader.getPrivateValue(EntityEnderman.class, 0)[myBlock.blockID] = true

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

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.