Jump to content

Infinite Terrain Indicies Not Working


atrain99

Recommended Posts

I am using Forge for my mod, and I need to use infinite terrain indicies. I have a 256x256 image, png format, with my two existing ores in the upper left. I assume indicies go:

0-1-2 ... 15

16 etc...

Here's my mod_BetterWiring:

 

 

package net.minecraft.src;

 

import java.util.Random;

 

import net.minecraft.src.BetterWiring.Blocks.*;

//import net.minecraft.src.BetterWiring.Items.ItemVanadiumOxide;

import net.minecraft.src.forge.*;

 

public class mod_BetterWiring extends BaseMod {

public static final Block oreLead = new BlockLeadOre(205,0).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreLead");

public static final Block oreSulfur = new BlockSulfurOre(206, 1).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("oreLead");

//public static final Block oreVanadium = new BlockVanadiumOre(205, 0).setHardness(4F).setResistance(8F).setStepSound(Block.soundStoneFootstep).setBlockName("oreVanadium");

//public static final Item VO2 = (new ItemVanadiumOxide(127)).setIconIndex(0).setItemName("vanadiumOxide");

@Override

public String getVersion() {

return "Private Test for 1.2.5";

}

public mod_BetterWiring(){

}

 

@Override

public void load() {

    MinecraftForgeClient.preloadTexture("/BetterWiring/Blocks/terrain.png");

//MinecraftForgeClient.preloadTexture("/BetterWiring/Items/items.png");

ModLoader.registerBlock(oreLead);

ModLoader.addName(oreLead,"Lead Ore");

ModLoader.registerBlock(oreSulfur);

ModLoader.addName(oreSulfur, "Sulfur Ore");

//Test recipes

ModLoader.addRecipe(new ItemStack(oreLead, 1), new Object[] {"XX", Character.valueOf('X'), Item.stick});

ModLoader.addRecipe(new ItemStack(oreSulfur, 1), new Object[] {"X X", Character.valueOf('X'), Item.stick});

System.out.println("Loaded");

}

    public void generateSurface(World world, Random rand, int chunkX, int chunkZ){ 

    for(int l = 0; l < 9; l++){                               

    int i1 = chunkX + rand.nextInt(16);                               

    int j1 = 15+rand.nextInt(27);                               

    int k1 = chunkZ + rand.nextInt(16);

    new WorldGenMinable(oreLead.blockID, 3).generate(world, rand, i1, j1, k1);

    }

    //for(int l = 0; l < 9; l++){                               

    // int i1 = chunkX + rand.nextInt(16);                               

    // int j1 = 25+rand.nextInt(30);                               

    // int k1 = chunkZ + rand.nextInt(16);

    // new WorldGenMinable(oreSulfur.blockID, 4).generate(world, rand, i1, j1, k1);

    //}

   

    }

 

}

 

 

 

and my BlockLeadOre:

 

package net.minecraft.src.BetterWiring.Blocks;

 

import java.util.Random;

 

import net.minecraft.src.Block;

import net.minecraft.src.Material;

import net.minecraft.src.forge.*;

 

 

public class BlockLeadOre extends Block implements ITextureProvider{

public BlockLeadOre(int i, int j){             

super(i, j, Material.rock);       

}

    public int quantityDropped(Random random){               

    return 1;       

    }

    public String getTextureFile(){

    return "/BetterWiring/Blocks/terrain.png";

    }

}

 

I am really, really lost with this, the textures are just white with black dots.

 

So, what would happen if I did push that shiny red button over there? ... Really? ... Can I try it? ... Damn.

Link to comment
Share on other sites

You can use the free software www.7zip.org to open the jar and drag all your textures into the jar. It's better to create a folder inside the jar so it's easier to find your textures among thousands of other files inside, but it doesn't really matter. Just make sure the path is correct.

 

For example, my mod's name is ICBM. So I have a folder called "ICBM" in the jar which contains all my textures. In my case the path of the texture will be "/ICBM/XXX.png".

 

There shouldn't be a problem after doing it correctly.

Link to comment
Share on other sites

You can use the free software www.7zip.org to open the jar and drag all your textures into the jar. It's better to create a folder inside the jar so it's easier to find your textures among thousands of other files inside, but it doesn't really matter. Just make sure the path is correct.

 

For example, my mod's name is ICBM. So I have a folder called "ICBM" in the jar which contains all my textures. In my case the path of the texture will be "/ICBM/XXX.png".

 

There shouldn't be a problem after doing it correctly.

 

What he said, but make sure you give your mod's folder a non-generic name or you'll end up like me, with probably at least 200 lines that have to be changed to rename the freaking folder.  :-\

I accidentally the everything then NullPointerException.

Link to comment
Share on other sites

You can use the free software www.7zip.org to open the jar and drag all your textures into the jar. It's better to create a folder inside the jar so it's easier to find your textures among thousands of other files inside, but it doesn't really matter. Just make sure the path is correct.

 

For example, my mod's name is ICBM. So I have a folder called "ICBM" in the jar which contains all my textures. In my case the path of the texture will be "/ICBM/XXX.png".

 

There shouldn't be a problem after doing it correctly.

 

What he said, but make sure you give your mod's folder a non-generic name or you'll end up like me, with probably at least 200 lines that have to be changed to rename the freaking folder.  :-\

 

In my mod I created a static variable in my BaseMod that gives the texture directories to all items and blocks. I could just change the variable and all the texture paths will change. You should try doing that next time. :P

Link to comment
Share on other sites

You can use the free software www.7zip.org to open the jar and drag all your textures into the jar. It's better to create a folder inside the jar so it's easier to find your textures among thousands of other files inside, but it doesn't really matter. Just make sure the path is correct.

 

For example, my mod's name is ICBM. So I have a folder called "ICBM" in the jar which contains all my textures. In my case the path of the texture will be "/ICBM/XXX.png".

 

There shouldn't be a problem after doing it correctly.

 

What he said, but make sure you give your mod's folder a non-generic name or you'll end up like me, with probably at least 200 lines that have to be changed to rename the freaking folder.  :-\

 

In my mod I created a static variable in my BaseMod that gives the texture directories to all items and blocks. I could just change the variable and all the texture paths will change. You should try doing that next time. :P

 

Yeah my problem is I just started learning from the beginning with a random idea that I've slowly built into what I have now. I had no clue what I was doing that far back, lol. Even after a few sessions of cleaning things up, I can still look back at some earlier stuff and see the learning progression...

 

Really, if I need to, I could just make a new item that does absolutely nothing different from the classless items except loads textures from a forge spritesheet, but I've been both lazy and busy...

I accidentally the everything then NullPointerException.

Link to comment
Share on other sites

You can use the free software www.7zip.org to open the jar and drag all your textures into the jar. It's better to create a folder inside the jar so it's easier to find your textures among thousands of other files inside, but it doesn't really matter. Just make sure the path is correct.

 

For example, my mod's name is ICBM. So I have a folder called "ICBM" in the jar which contains all my textures. In my case the path of the texture will be "/ICBM/XXX.png".

 

There shouldn't be a problem after doing it correctly.

 

What he said, but make sure you give your mod's folder a non-generic name or you'll end up like me, with probably at least 200 lines that have to be changed to rename the freaking folder.  :-\

 

In my mod I created a static variable in my BaseMod that gives the texture directories to all items and blocks. I could just change the variable and all the texture paths will change. You should try doing that next time. :P

 

Yeah my problem is I just started learning from the beginning with a random idea that I've slowly built into what I have now. I had no clue what I was doing that far back, lol. Even after a few sessions of cleaning things up, I can still look back at some earlier stuff and see the learning progression...

 

Really, if I need to, I could just make a new item that does absolutely nothing different from the classless items except loads textures from a forge spritesheet, but I've been both lazy and busy...

 

Hmm where is your mod? I didn't see it yet. Give me a link to a forum post or something. I would like to check it out.

Link to comment
Share on other sites

So if the texture files were in the net.minecraft.src.BetterWiring.Blocks package, I would have to make (in the client jar) /BetterWiring/Blocks/terrain.png

So, what would happen if I did push that shiny red button over there? ... Really? ... Can I try it? ... Damn.

Link to comment
Share on other sites

YAY! It works!

But now I have a new problem... The lead ore is called sulfur ore, even though I used the ModLoader.addName(leadOre, "Lead Ore");

Help!

So, what would happen if I did push that shiny red button over there? ... Really? ... Can I try it? ... Damn.

Link to comment
Share on other sites

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

    • If you're seeking an unparalleled solution to recover lost or stolen cryptocurrency, let me introduce you to GearHead Engineers Solutions. Their exceptional team of cybersecurity experts doesn't just restore your funds; they restore your peace of mind. With a blend of cutting-edge technology and unparalleled expertise, GearHead Engineers swiftly navigates the intricate web of the digital underworld to reclaim what's rightfully yours. In your moment of distress, they become your steadfast allies, guiding you through the intricate process of recovery with transparency, trustworthiness, and unwavering professionalism. Their team of seasoned web developers and cyber specialists possesses the acumen to dissect the most sophisticated schemes, leaving no stone unturned in their quest for justice. They don't just stop at recovering your assets; they go the extra mile to identify and track down the perpetrators, ensuring they face the consequences of their deceitful actions. What sets  GearHead Engineers apart is not just their technical prowess, but their unwavering commitment to their clients. From the moment you reach out to them, you're met with compassion, understanding, and a resolute determination to right the wrongs inflicted upon you. It's not just about reclaiming lost funds; it's about restoring faith in the digital landscape and empowering individuals to reclaim control over their financial futures. If you find yourself ensnared in the clutches of cybercrime, don't despair. Reach out to GearHead Engineers and let them weave their magic. With their expertise by your side, you can turn the tide against adversity and emerge stronger than ever before. In the realm of cybersecurity, GearHead Engineers reigns supreme. Don't just take my word for it—experience their unparalleled excellence for yourself. Your journey to recovery starts here.
    • Ok so this specific code freezes the game on world creation. This is what gets me so confused, i get that it might not be the best thing, but is it really so generation heavy?
    • Wizard web recovery has exhibited unparalleled strength in the realm of recovery. They stand out as the premier team to collaborate with if you encounter withdrawal difficulties from the platform where you’ve invested. Recently, I engaged with them to recover over a million dollars trapped in an investment platform I’d been involved with for months. I furnished their team with every detail of the investment, including accounts, names, and wallet addresses to which I sent the funds. This decision proved to be the best I’ve made, especially after realizing the company had scammed me.   Wizard web recovery ensures exemplary service delivery and ensures the perpetrators face justice. They employ advanced techniques to ensure you regain access to your funds. Understandably, many individuals who have fallen victim to investment scams may still regret engaging in online services again due to the trauma of being scammed. However, I implore you to take action. Seek assistance from Wizard Web Recovery today and witness their remarkable capabilities. I am grateful that I resisted their enticements, and despite the time it took me to discover Wizard web recovery, they ultimately fulfilled my primary objective. Without wizard web recovery intervention, I would have remained despondent and perplexed indefinitely.
    • I've tested the same code on three different envionrments (Desktop win10, desktop Linux and Laptop Linux) and it kinda blows up all the same. Gonna try this code and see if i can tune it
  • Topics

×
×
  • Create New...

Important Information

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