Jump to content

Recommended Posts

Posted

did forge change the ore spawn code ? because i had some ores wich spawned perfectly i my own dimension buth now since 1.6 they don't spawn any more, this is my code :

 

orespanwers

package invizzble.mods.nc.world.gen;

import java.util.Random;

import net.minecraft.block.Block;
import net.minecraft.world.World;
import net.minecraft.world.gen.feature.WorldGenMinable;

public class OreSpawners {
    
    public void addOreSpawnNether(Block block, World world, Random random, int blockXPos, int blockZPos, int maxX, int maxZ, int maxVeinSize, int chancesToSpawn, int minY, int maxY)
    {
           @SuppressWarnings("unused")
        int maxPossY = minY + (maxY - 1);
           assert maxY > minY: "The maximum Y must be greater than the Minimum Y";
           assert maxX > 0 && maxX <= 16: "addOreSpawn: The Maximum X must be greater than 0 and less than 16";
           assert minY > 0: "addOreSpawn: The Minimum Y must be greater than 0";
           assert maxY < 256 && maxY > 0: "addOreSpawn: The Maximum Y must be less than 256 but greater than 0";
           assert maxZ > 0 && maxZ <= 16: "addOreSpawn: The Maximum Z must be greater than 0 and less than 16";
          
           int diffBtwnMinMaxY = maxY - minY;
           for(int x = 0; x < chancesToSpawn; x++)
           {
                 int posX = blockXPos + random.nextInt(maxX);
                 int posY = minY + random.nextInt(diffBtwnMinMaxY);
                 int posZ = blockZPos + random.nextInt(maxZ);
                 (new ModWorldGenNetherOres(block.blockID, maxVeinSize)).generate(world, random, posX, posY, posZ);
           }
           
    }
    
    public void addOreSpawnSurface(Block block, World world, Random random, int blockXPos, int blockZPos, int maxX, int maxZ, int maxVeinSize, int chancesToSpawn, int minY, int maxY)
    {
           @SuppressWarnings("unused")
        int maxPossY = minY + (maxY - 1);
           assert maxY > minY: "The maximum Y must be greater than the Minimum Y";
           assert maxX > 0 && maxX <= 16: "addOreSpawn: The Maximum X must be greater than 0 and less than 16";
           assert minY > 0: "addOreSpawn: The Minimum Y must be greater than 0";
           assert maxY < 256 && maxY > 0: "addOreSpawn: The Maximum Y must be less than 256 but greater than 0";
           assert maxZ > 0 && maxZ <= 16: "addOreSpawn: The Maximum Z must be greater than 0 and less than 16";
          
           int diffBtwnMinMaxY = maxY - minY;
           for(int x = 0; x < chancesToSpawn; x++)
           {
                 int posX = blockXPos + random.nextInt(maxX);
                 int posY = minY + random.nextInt(diffBtwnMinMaxY);
                 int posZ = blockZPos + random.nextInt(maxZ);
                 (new WorldGenMinable(block.blockID, maxVeinSize)).generate(world, random, posX, posY, posZ);
           }
    }
    
    public void addOreSpawnNightmare(Block block, World world, Random random, int blockXPos, int blockZPos, int maxX, int maxZ, int maxVeinSize, int chancesToSpawn, int minY, int maxY)
    {
           @SuppressWarnings("unused")
        int maxPossY = minY + (maxY - 1);
           assert maxY > minY: "The maximum Y must be greater than the Minimum Y";
           assert maxX > 0 && maxX <= 16: "addOreSpawn: The Maximum X must be greater than 0 and less than 16";
           assert minY > 0: "addOreSpawn: The Minimum Y must be greater than 0";
           assert maxY < 256 && maxY > 0: "addOreSpawn: The Maximum Y must be less than 256 but greater than 0";
           assert maxZ > 0 && maxZ <= 16: "addOreSpawn: The Maximum Z must be greater than 0 and less than 16";
          
           int diffBtwnMinMaxY = maxY - minY;
           for(int x = 0; x < chancesToSpawn; x++)
           {
                 int posX = blockXPos + random.nextInt(maxX);
                 int posY = minY + random.nextInt(diffBtwnMinMaxY);
                 int posZ = blockZPos + random.nextInt(maxZ);
                 (new ModWorldGenNetherOres(block.blockID, maxVeinSize)).generate(world, random, posX, posY, posZ);
           }
           
    }

}

 

and this is my other code page

 

oreworldgen

package invizzble.mods.nc.world.gen;



import invizzble.mods.nc.blocks.ModBlocks;
import invizzble.mods.nc.lib.DimensionReferences;

import java.util.Random;

import net.minecraft.world.World;
import net.minecraft.world.chunk.IChunkProvider;
import cpw.mods.fml.common.IWorldGenerator;

public class ModWorldGenOres implements IWorldGenerator{

    OreSpawners Ore = new OreSpawners();
    public static final int NightmareDimensionID= DimensionReferences.NIGHTMAREDIMENSION_ID;
    
    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);
           case NightmareDimensionID: generateNightmare(world, random, chunkX*16, chunkZ*16);
       }
    
}



    private void generateNightmare(World world, Random random, int blockXPos, int blockZPos) {
        
        Ore.addOreSpawnNightmare(ModBlocks.NightMareDiamondORE, world, random, blockXPos, blockZPos, 16, 16, 5, 1000, 6, 64);
        Ore.addOreSpawnNightmare(ModBlocks.CreepyCoalOre, world, random, blockXPos, blockZPos, 16, 16, 10, 15, 6, 64);
        
        
    }



    private void generateSurface(World world, Random random, int blockXPos, int blockZPos) {
        Ore.addOreSpawnSurface(ModBlocks.MoonMeteorite, world, random, blockXPos, blockZPos, 16, 16, 15, 4, 30, 64);
        Ore.addOreSpawnSurface(ModBlocks.DarkBlock, world, random, blockXPos, blockZPos, 16, 16, 10, 4, 30, 64);

    }



    private void GenerateNether(World world, Random random, int blockXPos, int blockZPos) {
        
    
    }



    
    private void GenerateEnd(World world, Random random, int x, int z) {
        
        
    }
    

    
    
    
    
    }
    
    

   

 

so yeah, let me now if it's changed or removed or not implemented yet (because there isn't yet a stable build)...

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

    • Hello everyone, I’d like to share a mod concept inspired by the Solo Leveling universe. My goal is to create a Minecraft experience where players explore unique dungeons, fight powerful bosses, level up their character, and unlock special abilities — all while keeping Minecraft’s sandbox charm. I mainly use MCreator for development, as it’s my preferred tool, but I’m open to integrating custom code, models, and assets from collaborators. Main Question: Would anyone be interested in joining the development of this mod? I’m looking for people who could help with: 3D Models (weapons, mobs, bosses, environmental assets) Sound Design (boss themes, dungeon ambience, ability sounds) Texture & Artwork (UI elements, icons, environment textures) Additional Coding (if needed for complex systems beyond MCreator’s scope) Concept: Players can enter portals leading to themed dungeons. Each dungeon ends with a unique boss battle. Defeating bosses grants special XP to improve stats (strength, mana, speed, defense). Rare loot, upgradeable gear, and unlockable powers. Extra Features Planned: Multiple dimensions with unique environments. NPCs giving quests. Random portal events appearing in the Overworld. Technical Approach: Development will primarily use MCreator for rapid prototyping. Custom models and textures can be integrated. NeoForge API features may be added for advanced functionality. If this project interests you, feel free to reply here or send me a message so we can discuss ideas, asset requirements, and a possible development roadmap.
    • I have followed the instructions on the Parchment website, but it still shows that the corresponding version cannot be found. https://parchmentmc.org/docs/getting-started What should I do?😢
    • main: Could not find net.minecraftforge:forge:1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1. Searched in the following locations:   - file:/C:/Users/qhxg/.gradle/caches/forge_gradle/bundeled_repo/net/minecraftforge/forge/1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1/forge-1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1.pom   - file:/C:/Users/qhxg/.gradle/caches/forge_gradle/bundeled_repo/net/minecraftforge/forge/1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1/forge-1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1.jar Required by:     project : Possible solution:  - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
    • Minecraft has a problem with a mod that somehow prevents the Java runtime environment from working. I don't know which mod it is, so it's more of a guess, and I have the latest version of Java installed. https://mclo.gs/Xo7jTvo
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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