Jump to content

Recommended Posts

Posted

Hey there, so I haven't messed with ore gen since MC 1.5-1.6, and I never really spawned ore anywhere other than the overworld.

So I am wondering how I would get the ore to spawn in the end, this is the code I have so far:

 

Main class

 

 

GameRegistry.registerWorldGenerator(new endOreGen(), -1);

 

 

 

 

Ore Gen class

 

 

package com.jordsta.stuff;

 

import java.util.Random;

 

import net.minecraft.world.World;

import net.minecraft.world.chunk.IChunkProvider;

import net.minecraft.world.gen.feature.WorldGenMinable;

import cpw.mods.fml.common.IWorldGenerator;

 

public class endOreGen implements IWorldGenerator {

 

 

@Override

  public void generate(Random random, int chunkX, int chunkZ, World world, IChunkProvider chunkGenerator, IChunkProvider chunkProvider) {

        switch(world.provider.dimensionId){

        case 1:

        generateNether(world, random, chunkX * 16, chunkZ * 16);

        case 0:

            generateSurface(world, random, chunkX * 16, chunkZ * 16);

        case -1:

            generateEnd(world, random, chunkX * 16, chunkZ * 16);

        }

    }

 

    private void generateEnd(World world, Random random, int chunkX, int chunkZ) {

        for(int i = 0; i < 60; i++){

            int xCoord = chunkX + random.nextInt(16);

            int yCoord = random.nextInt(60);

            int zCoord = chunkZ + random.nextInt(16);

        (new WorldGenMinable(Main.endOre, 40)).generate(world, random, xCoord, yCoord, zCoord);}

    }

 

    private void generateSurface(World world, Random random, int chunkX, int chunkZ) {

        for(int i = 0; i < 60; i++){

            int xCoord = chunkX + random.nextInt(16);

            int yCoord = random.nextInt(60);

            int zCoord = chunkZ + random.nextInt(16);

           

          } 

 

               

    }

 

    private int generateNether(World world, Random random, int chunkX,

            int chunkZ) {

        return 0;

    }

 

}

 

 

 

The spawn rate of 40 is just so I know I will see it, but I tried generating it in the overworld, and it was there. But it didn't show in the end :/

Am I missing something, or did ore gen code change?

 

 

Also, what is the new way to make an ore drop a different item as I used to use something like: (for an old ore called Lovite Ore)

 

 

public int idDropped(int par1, Random par2Random, int par3)

{

return Everything_and_More_Mod.Lovite.itemID;

}

public int quantityDropped(Random random)

{

return 8;

}

 

public void onblockDestroyedByPlayer(World world, int x, int y, int z, int meta){

    this.dropXpOnBlockBreak(world, x, y, z, 10);

}

 

 

Also, would it be possible to make it so the ore would drop a "random" amount, so for example 1-4 of the item?

 

Thanks for your help :)

Why bother?

Posted

if you look at the WorldGenMinable(Main.endOre, 40)) you see that the standard target block is stone, you can change this to:

WorldGenMinable(block, blocksPerVein, targetBlock))

Posted

That looks correct.

 

To change the amount dropped you need to override quantityDropped(Random random) in your block class and return a random number in the range you want. If you want it to be fortunable also override quantityDroppedWithBonus(int fortune, Random random) which is the same as quantityDropped except it gives you the fortune level it was mined with.

I am the author of Draconic Evolution

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 tried do download the essential mod to my mod pack but i didnt work. I paly on 1.21 and it should work. I use neoforge for my modding. The weird things is my friend somehow added the mod to his modpack and many others that I somehow can´t. Is there anything i can do? 
    • Thanks, I've now installed a slightly newer version and the server is at least starting up now.
    • 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  
  • Topics

×
×
  • Create New...

Important Information

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