• 0

    posted a message on [SOLVED][FORGE][1.5.2]Ore World Generator Problems
    I have been doing the same thing this week and here is my code. I have had no issues with ore generation and the only thing I see different is the following.


    (new WorldGenMinable(TopazMod.topazore.blockID, 12)

    12 being the frequency of the ore.

    Hope this helps!



    package ArsenicLullaby.Test;

    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;
    import cpw.mods.fml.common.IWorldGenerator;
    public class WorldGeneratorSCMowns implements IWorldGenerator {

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

    // TODO Auto-generated method stub

    switch(world.provider.dimensionId){

    //case -1: generateNether(world, random,chunkX*16,chunkZ*16);

    case 0 : generateSurface(world, random,chunkX*16,chunkZ*16);

    }
    }

    private void generateSurface(World world, Random random, int BlockX, int BlockZ) {

    for(int i =0; i<10;i++){
    int Xcoord = BlockX + random.nextInt(16);
    int Zcoord = BlockZ + random.nextInt(16);
    int Ycoord = random.nextInt(74);
    (new WorldGenMinable(TopazMod.topazore.blockID, 12)).generate(world, random, Xcoord, Ycoord, Zcoord);

    }

    for(int i =0; i<10;i++){
    int Xcoord = BlockX + random.nextInt(16);
    int Zcoord = BlockZ + random.nextInt(16);
    int Ycoord = random.nextInt(74);
    (new WorldGenMinable(TopazMod.jadeore.blockID, 12)).generate(world, random, Xcoord, Ycoord, Zcoord);

    }}}
    Posted in: Modification Development
  • 0

    posted a message on Carpenter's Blocks
    Ran across your mods when installing Pam Wees Flowers and ended up downloading painted flower pot mod.

    Great mod btw ; )

    BUT...

    Then I saw this mod! Amazing job! This mod has a ton of potential!

    Any chance for adding carpenter micro frame blocks (like the ones in RP2) and/or maybe glow frames?
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.6.X/1.5.2/Others]Pam's Mods - Feb 9th (I'm Back!)
    Okay here is the deal ... I love this mod! Great work!

    but... I am having an issue finding the addons for 1.4.6. I succesfully installed Pam's HarvestCraft Base 1.03 (MC 1.4.6).zip and that is working but I can not find any of the following addons.


    Pam's HarvestCraft - Apple 1.01 (MC 1.4.6).zip
    Pam's HarvestCraft - Avocado 1.0 (MC 1.4.6).zip
    Pam's HarvestCraft - Bean 1.01 (MC 1.4.6).zip
    Pam's HarvestCraft - Bellpepper 1.02 (MC 1.4.6).zip
    Pam's HarvestCraft - Blackberry 1.0 (MC 1.4.6).zip
    Pam's HarvestCraft - Blueberry 1.01 (MC 1.4.6).zip
    Pam's HarvestCraft - Candle 1.0 (MC 1.4.6).zip
    Pam's HarvestCraft - Cherry 1.01 (MC 1.4.6).zip
    Pam's HarvestCraft - Chili Pepper 1.01 (MC 1.4.6).zip
    Pam's HarvestCraft - Corn 1.01 (MC 1.4.6).zip
    Pam's HarvestCraft - Cotton 1.01 (MC 1.4.6).zip
    Pam's HarvestCraft - Cranberry 1.0 (MC 1.4.6).zip
    Pam's HarvestCraft - Cucumber 1.01 (MC 1.4.6).zip
    Pam's HarvestCraft - Grape 1.01 (MC 1.4.6).zip
    Pam's HarvestCraft - Kiwi 1.0 (MC 1.4.6).zip
    Pam's HarvestCraft - Lemon 1.01 (MC 1.4.6).zip
    Pam's HarvestCraft - Lettuce 1.01 (MC 1.4.6).zip
    Pam's HarvestCraft - Nutmeg 1.0 (MC 1.4.6).zip
    Pam's HarvestCraft - Onion 1.01 (MC 1.4.6).zip
    Pam's HarvestCraft - Peanut 1.01 (MC 1.4.6).zip
    Pam's HarvestCraft - Pear 1.0 (MC 1.4.6).zip
    Pam's HarvestCraft - Plum 1.0 (MC 1.4.6).zip
    Pam's HarvestCraft - Raspberry 1.0 (MC 1.4.6).zip
    Pam's HarvestCraft - Rice 1.03 (MC 1.4.6).zip
    Pam's HarvestCraft - Salt 1.0 (MC 1.4.6).zip
    Pam's HarvestCraft - Spice Leaf 1.0 (MC 1.4.6).zip
    Pam's HarvestCraft - Strawberry 1.01 (MC 1.4.6).zip
    Pam's HarvestCraft - Sunflower 1.0 (MC 1.4.6).zip
    Pam's HarvestCraft - Tomato 1.01 (MC 1.4.6).zip
    Pam's HarvestCraft - Walnut 1.0 (MC 1.4.6).zip
    Pam's HarvestCraft - White Mushroom 1.0 (MC 1.4.6).zip

    Does anyone here have a clue where I can get them?
    Posted in: Minecraft Mods
  • 0

    posted a message on The Betterverse. Private Devs, better plugins, excellent communities. [1.6]
    I am going to whitelist for Bettercraft!
    Posted in: PC Servers
  • 0

    posted a message on Arsenic's Comp/Custom 64X64 Textures
    updated...

    halfsteps
    sandstone
    grass
    dirt
    ect..

    Included Dante80s Albion UI stuff and also Misa Mobs ; ) Thank you for the permission to include those guys!
    Posted in: Resource Packs
  • 0

    posted a message on Arsenic's Comp/Custom 64X64 Textures
    updated..

    Flowers, sapling, lapis, and switched out chest and benches well I look for or make a suitable replacement.
    Posted in: Resource Packs
  • 0

    posted a message on Arsenic's Comp/Custom 64X64 Textures
    Thanks for the response, and Im glad you like the minerals seeing as that is one of the ones I did myserlf = )

    As far as the door is concerned the better half had pointed that out right after I let her have it ... the texture pack.

    I dont know if you have an image editing program but I did include a wooden door with a window if you would like to replace the default door.

    Thanks Again!
    Posted in: Resource Packs
  • 0

    posted a message on Arsenic's Comp/Custom 64X64 Textures
    Okay gonna get this out of the way first. This pack contains some work done by others and I give them all credit and thanks for all thier hardwork!

    Misa you can find her pack here http://www.minecraftforum.net/viewtopic.php?f=1021&t=73861

    Dante80 you can find his pack here http://www.minecraftforum.net/viewtopic.php?f=25&t=97561

    If you happen to see something that is yours and would like credit on this page, just fire me a pm and I will edit this post.

    There is some editing and ripping of textures from other sources to get the look I wanted. I also included some alternate textures that can be switched out if you have the right editing program.

    To install

    1. You need to use the patcher found here http://www.minecraftforum.net/viewtopic.php?f=25&t=46173
    Just set it to 64x64 and make sure custom water and custom lava are unchecked.

    2. Download the textures here http://www.monstergaming.net/minecraft/Arsenic's1.0.zip
    Posted in: Resource Packs
  • To post a comment, please .