Jump to content
  • Home
  • Files
  • Docs
  • Merch
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • ajaygross137

ajaygross137

Members
 View Profile  See their activity
  • Content Count

    9
  • Joined

    December 11, 2013
  • Last visited

    December 13, 2013

Community Reputation

0 Neutral

About ajaygross137

  • Rank
    Tree Puncher

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!
  1. ajaygross137

    My ore spawns too much! [SOLVED]

    ajaygross137 replied to ajaygross137's topic in Modder Support

    Thanks! Now one more question... How do I mark this as [sOLVED]?
    • December 13, 2013
    • 6 replies
  2. ajaygross137

    My ore spawns too much! [SOLVED]

    ajaygross137 replied to ajaygross137's topic in Modder Support

    ok ok thanks that seems to solve it but how to I make it like more rare than diamonds, but more common then emeralds?
    • December 13, 2013
    • 6 replies
  3. ajaygross137

    My ore spawns too much! [SOLVED]

    ajaygross137 posted a topic in Modder Support

    Hey guys! My ore spawns way too much... I want my ore to be more rare then diamond, but not as annoyingly rare as emerald. Here is the SuperOreWorldGeneration code: package ajaygross137.MyFirstMod.worldGen; import java.util.Random; import ajaygross137.MyFirstMod.common.MyFirstMod; 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 SuperOreWorldGeneration implements IWorldGenerator { @Override public void generate(Random random, int chunkX, int chunkZ, World world, IChunkProvider chunkGenerator, IChunkProvider chunkProvider) { switch(world.provider.dimensionId) { case 0: generateSurface(world, random, chunkX*16, chunkZ*16); break; } } private void generateSurface(World world, Random random, int i, int j) { for (int k = 0; k < 25; k++) { int chunkX = i + random.nextInt(16); int chunkY = random.nextInt(16); int chunkZ = j + random.nextInt(16); (new WorldGenMinable(MyFirstMod.SuperOre.blockID, ).generate(world, random, chunkX, chunkY, chunkZ); } } }
    • December 13, 2013
    • 6 replies
  4. ajaygross137

    Creating a "hang to wall" item

    ajaygross137 replied to Malharhak's topic in Modder Support

    How come you got a reply so fast!?!?
    • December 11, 2013
    • 5 replies
  • All Activity
  • Home
  • ajaygross137
  • Theme
  • Contact Us
  • Discord

Copyright © 2019 ForgeDevelopment LLC · Ads by Curse Powered by Invision Community