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

    • Baba  Serege [[+27-73 590 8989]] has experience of 27 years in helping and guiding many people from all over the world. His psychic abilities may help you answer and resolve many unanswered questions. He specialize in helping women and men from all walks of life.. 1) – Bring back lost lover. even if lost for a long time. 2) – My lover is abusing alcohol, partying and cheating on me I urgently need help” 3) – Divorce or court issues. 4) – Is your love falling apart? 5) – Do you want your love to grow stronger? 6) – Is your partner losing interest in you? 7) – Do you want to catch your partner cheating on you? – We help to keep your partner faithful and loyal to you. 9) – We recover love and happiness when relationship breaks down. 10) – Making your partner loves you alone. 11) – We create loyalty and everlasting love between couples. 12) – Get a divorce settlement quickly from your ex-partner. 13) – We create everlasting love between couples. 14) – We help you look for the best suitable partner. 15) – We bring back lost lover even if lost for a long time. 16) – We strengthen bonds in all love relationship and marriages 17) – Are you an herbalist who wants to get more powers? 18) – Buy a house or car of your dream. 19) – Unfinished jobs by other doctors come to me. 20) – I help those seeking employment. 21) – Pensioners free treatment. 22) – Win business tenders and contracts. 23) – Do you need to recover your lost property? 24) – Promotion at work and better pay. 25) – Do you want to be protected from bad spirits and nightmares? 26) – Financial problems. 27) – Why you can’t keep money or lovers? 28) – Why you have a lot of enemies? 29) – Why you are fired regularly on jobs? 30) – Speed up money claim spell, delayed payments, pension and accident funds 31) – I help students pass their exams/interviews. 33) – Removal of bad luck and debts. 34) – Are struggling to sleep because of a spiritual wife or husband. 35- ) Recover stolen property
    • OLXTOTO adalah situs bandar togel online resmi terbesar dan terpercaya di Indonesia. Bergabunglah dengan OLXTOTO dan nikmati pengalaman bermain togel yang aman dan terjamin. Koleksi toto 4D dan togel toto terlengkap di OLXTOTO membuat para member memiliki pilihan taruhan yang lebih banyak. Sebagai situs togel terpercaya, OLXTOTO menjaga keamanan dan kenyamanan para membernya dengan sistem keamanan terbaik dan enkripsi data. Transaksi yang cepat, aman, dan terpercaya merupakan jaminan dari OLXTOTO. Nikmati layanan situs toto terbaik dari OLXTOTO dengan tampilan yang user-friendly dan mudah digunakan. Layanan pelanggan tersedia 24/7 untuk membantu para member. Bergabunglah dengan OLXTOTO sekarang untuk merasakan pengalaman bermain togel yang menyenangkan dan menguntungkan.
    • Baba  Serege [[+27-73 590 8989]] has experience of 27 years in helping and guiding many people from all over the world. His psychic abilities may help you answer and resolve many unanswered questions. He specialize in helping women and men from all walks of life.. 1) – Bring back lost lover. even if lost for a long time. 2) – My lover is abusing alcohol, partying and cheating on me I urgently need help” 3) – Divorce or court issues. 4) – Is your love falling apart? 5) – Do you want your love to grow stronger? 6) – Is your partner losing interest in you? 7) – Do you want to catch your partner cheating on you? – We help to keep your partner faithful and loyal to you. 9) – We recover love and happiness when relationship breaks down. 10) – Making your partner loves you alone. 11) – We create loyalty and everlasting love between couples. 12) – Get a divorce settlement quickly from your ex-partner. 13) – We create everlasting love between couples. 14) – We help you look for the best suitable partner. 15) – We bring back lost lover even if lost for a long time. 16) – We strengthen bonds in all love relationship and marriages 17) – Are you an herbalist who wants to get more powers? 18) – Buy a house or car of your dream. 19) – Unfinished jobs by other doctors come to me. 20) – I help those seeking employment. 21) – Pensioners free treatment. 22) – Win business tenders and contracts. 23) – Do you need to recover your lost property? 24) – Promotion at work and better pay. 25) – Do you want to be protected from bad spirits and nightmares? 26) – Financial problems. 27) – Why you can’t keep money or lovers? 28) – Why you have a lot of enemies? 29) – Why you are fired regularly on jobs? 30) – Speed up money claim spell, delayed payments, pension and accident funds 31) – I help students pass their exams/interviews. 33) – Removal of bad luck and debts. 34) – Are struggling to sleep because of a spiritual wife or husband. 35- ) Recover stolen property
    • BD303 merupakan salah satu situs slot mudah scatter paling populer dan digemari oleh kalangan slot online di tahun 2024 mainkan sekarang dengan kesempatan yang mudah menang jackpot jutaan rupiah.
  • Topics

×
×
  • Create New...

Important Information

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