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

For instance, i want that Husks can spawn inside the Desert Pyramid like Wither Skeletons does in the Nether Fortress. But i've tried using the InitMapGenEvent but in the EventType there's nothing that can lead to the pyramid (while instead there is the NETHER_BRIDGE type that lead to Wither Skeleton spawn). So how can i force the game to spawn an entity in a specific structure (in this case a Husk in a Pyramid)?

Don't blame me if i always ask for your help. I just want to learn to be better :)

  • Author

Thank you for the answer but i did not understand how to get the Chunk Provider since if i do event.getWorld().getChunkProvider() then i can't access to chunkGenerator field :/

Don't blame me if i always ask for your help. I just want to learn to be better :)

  • Author

Ok, so i got this right now

@SubscribeEvent
public void onTerrainGen(WorldEvent.PotentialSpawns event) {
	if(event.getWorld().provider instanceof WorldProviderSurface) {
		ChunkProviderOverworld chunkGenerator = (ChunkProviderOverworld) ((WorldServer)event.getWorld()).getChunkProvider().chunkGenerator;
		MapGenScatteredFeature map;
		Field[] fields = ChunkProviderOverworld.class.getFields();
		for (Field element : fields)
			try {
				if (element.get(ChunkProviderOverworld.class) != null) {
					if (element.getName().equals("scatteredFeatureGenerator")) {
						map = (MapGenScatteredFeature)element.get(ChunkProviderOverworld.class);
						break;
					}
				}
			} catch (IllegalArgumentException e) {
				System.err.println("Illegal argument passed as Block to register");
				e.printStackTrace();
			} catch (IllegalAccessException e) {
				System.err.println("Illegal access while registering a Block");
				e.printStackTrace();
			}

		StructureStart structurestart = map.getStructureAt(event.getPos());

        if (structurestart != null && structurestart instanceof MapGenScatteredFeature.Start && !structurestart.getComponents().isEmpty())
        {
            StructureComponent structurecomponent = (StructureComponent)structurestart.getComponents().get(0);
            if(structurecomponent instanceof ComponentScatteredFeaturePieces.DesertPyramid) {
            	event.getList().add(new SpawnListEntry(EntityZombie.class, 20, 1, 3));
            }
        }
	}
}

 

But when i do this

StructureStart structurestart = map.getStructureAt(event.getPos());

it gives me an error telling me that getStructureAt is not visible. How can i solve this?

Don't blame me if i always ask for your help. I just want to learn to be better :)

  • Author

I never used reflection so i could make some mistakes. However i now have this, no errors are given but is this correct or again something is wrong?

if(event.getWorld().provider instanceof WorldProviderSurface) {
		ChunkProviderOverworld chunkGenerator = (ChunkProviderOverworld) ((WorldServer)event.getWorld()).getChunkProvider().chunkGenerator;

		Field mapGen = ReflectionHelper.findField(ChunkProviderOverworld.class, "scatteredFeatureGenerator");
		mapGen.setAccessible(true);

		MapGenScatteredFeature map = (MapGenScatteredFeature)mapGen.get(ChunkProviderOverworld.class);

		Method getStructure = MapGenScatteredFeature.class.getDeclaredMethod("getStructureAt", MapGenScatteredFeature.class);
		getStructure.setAccessible(true);

		StructureStart structurestart = (StructureStart) getStructure.invoke(event.getPos());

        if (structurestart != null && structurestart instanceof MapGenScatteredFeature.Start && !structurestart.getComponents().isEmpty())
        {
            StructureComponent structurecomponent = (StructureComponent)structurestart.getComponents().get(0);
            if(structurecomponent instanceof ComponentScatteredFeaturePieces.DesertPyramid) {
            	event.getList().add(new SpawnListEntry(EntityZombie.class, 20, 1, 3));
            }
        }
	}

Don't blame me if i always ask for your help. I just want to learn to be better :)

  • Author

Ok, i will check it out and hopefully managed to work :)

Don't blame me if i always ask for your help. I just want to learn to be better :)

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.