Jump to content

Recommended Posts

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 :)

Posted

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 :)

Posted

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 :)

Posted

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 :)

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...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • i have the same issue. Found 1 Create mod class dependency(ies) in createdeco-1.3.3-1.19.2.jar, which are missing from the current create-1.19.2-0.5.1.i.jar Found 11 Create mod class dependency(ies) in createaddition-fabric+1.19.2-20230723a.jar, which are missing from the current create-1.19.2-0.5.1.i.jar Detailed walkthrough of mods which rely on missing Create mod classes: Mod: createaddition-fabric+1.19.2-20230723a.jar Missing classes of create: com/simibubi/create/compat/jei/category/sequencedAssembly/JeiSequencedAssemblySubCategory com/simibubi/create/compat/recipeViewerCommon/SequencedAssemblySubCategoryType com/simibubi/create/compat/rei/CreateREI com/simibubi/create/compat/rei/EmptyBackground com/simibubi/create/compat/rei/ItemIcon com/simibubi/create/compat/rei/category/CreateRecipeCategory com/simibubi/create/compat/rei/category/WidgetUtil com/simibubi/create/compat/rei/category/animations/AnimatedBlazeBurner com/simibubi/create/compat/rei/category/animations/AnimatedKinetics com/simibubi/create/compat/rei/category/sequencedAssembly/ReiSequencedAssemblySubCategory com/simibubi/create/compat/rei/display/CreateDisplay Mod: createdeco-1.3.3-1.19.2.jar Missing classes of create: com/simibubi/create/content/kinetics/fan/SplashingRecipe
    • The crash points to moonlight lib - try other builds or make a test without this mod and the mods requiring it
    • Do you have shaders enabled? There is an issue with the mod simpleclouds - remove this mod or disable shaders, if enabled  
    • Maybe you need to create file in assets/<modid>/items/<itemname>.json with content like this:   { "model": { "type": "minecraft:model", "model": "modname:item/itemname" } }  
    • Hello, I can no longer start my Minecraft server. I haven't changed anything; it just happens. Please find the log attached.    
  • Topics

×
×
  • Create New...

Important Information

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