Jump to content

Recommended Posts

Posted

After watching multiple outdated videos on making blocks, I managed to get myself and un-textured unnamed block. When I try using the updated format, it crashes with NullPointerException (I know what that means) despite the fact that almost nothing changed. I was wondering if someone could tell me the proper way to have the "int id, int texture, Material" thing in 1.6.4. I presume this isn't too complicatated, but is yet too much for a noob like me :P

Thank you

Posted

public class BlockCompressedCobblestone extends Block{

public BlockCompressedCobblestone(int id, Material par2Material) {
	super(id, par2Material);
	this.setCreativeTab(furniturecraft.FCTab);
}
@SideOnly(Side.CLIENT)
public void registerIcons(IconRegister icon){
	this.blockIcon = icon.registerIcon(furniturecraft.modid + ":" + "CompressedCobblestone");
}
}

That is my block code for my mod, and it is 1.6.4, and...

public Block setBlockName(String string) {
    // TODO Auto-generated method stub
    return null;
}

...indeed, it should not be there.

 

Did I help? Gimme a thanks!

Posted

This is for 1.6.4? Then, first off...

public void gameRegisters(){
                        GameRegistry.registerBlock(snowstormBlock);}    

                public void LanguageRegistry(){
                        LanguageRegistry.addName(snowstormBlock, "Blanket");
}

First, get rid of the "public void LanguageRegistry", "public void gameRegistry", "gameRegisters();", and the "languageRegisters();" but keep the "LanguageRegistry.addName(snowstormBlock, "Blanket");" and the

"GameRegistry.registerBlock(snowstormBlock);" there. Second, also in your main class file, "@Init" should be "@EventHandler" And third...

public BlockSnowstormBlock(int id, int texture, Material mat) {
                super(texture, Material.cloth);
                this.setCreativeTab(CreativeTabs.tabBlock);

Change that to...

public BlockSnowstormBlock(int id, int texture, Material mat) {
                super(id, texture, Material.cloth);
                this.setCreativeTab(CreativeTabs.tabBlock);

Hope I helped

Did I help? Gimme a thanks!

Posted

That is weird. I'm sorry for asking for so much, but could I see your current code? Sorry if I'm being a pain, and thanks for your patience. :)

Did I help? Gimme a thanks!

Posted

I figured it out(I hope)! Change this...

public BlockSnowstormBlock(int id, int texture, Material mat) {
                super(id, texture, Material.cloth);
                this.setCreativeTab(CreativeTabs.tabBlock);

To this!

public BlockSnowstormBlock(int id, int texture, Material mat) {
                super(id, texture, mat);
                this.setCreativeTab(CreativeTabs.tabBlock);

That should fix it...

EDIT: Wait, you should remove the "int texture" and the "texture" inside the "super(id, texture, mat);"

Should be like

public BlockSnowstormBlock(int id, Material mat) {
                super(id, mat);
                this.setCreativeTab(CreativeTabs.tabBlock);

You can register textures like

@SideOnly(Side.CLIENT)
public void registerIcons(IconRegister icon){
	this.blockIcon = icon.registerIcon(YourModHere.modid + ":" + "YourBlocksTextureFileNameHere");
}

Did I help? Gimme a thanks!

Posted

Lets see... you do have a problem here...

 public void registerIcons(IconRegister icon);{

Remove the ";"

And if THAT doesn't work, then I think I know why. I am familiar with forge 916, which is what I use, but you are using 953.

EDIT: Almost forgot,

public static final String modid = "Snowstorm";

Put that in your main mod file. Also in your main mod file,

Block snowstormBlock;

Should be

public static Block snowstormBlock;

But once again, we are using different forge versions, so I am unsure

 

Did I help? Gimme a thanks!

Posted

So, after applying your suggestions, I fooled around with the code, and got it down to one problem.

 

Error:

 

Caused by: java.lang.Error: Unresolved compilation problems:

2014-01-03 11:06:22 [iNFO] [sTDOUT] Syntax error on token "registerIcon", VariableDeclarator expected after this token

2014-01-03 11:06:22 [iNFO] [sTDOUT] registerIcon cannot be resolved to a type

2014-01-03 11:06:22 [iNFO] [sTDOUT] Illegal modifier for parameter $missing$; only final is permitted

2014-01-03 11:06:22 [iNFO] [sTDOUT]

 

 

Changed Code:

 

package snowstorm;

 

import cpw.mods.fml.common.Mod.Init;

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

import net.minecraft.block.Block;

import net.minecraft.block.material.Material;

import net.minecraft.client.renderer.texture.IconRegister;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.util.Icon;

import snowstorm.Snowstorm;

import snowstorm.ClientProxySnowstorm;

 

 

public class BlockSnowstormBlock<registerIcons> extends Block{

     

        public BlockSnowstormBlock(int id, Material mat) {

        super(id, mat);

        this.setCreativeTab(CreativeTabs.tabBlock);

       

       

 

public registerIcon;IconRegister icon;{

                this.blockIcon = icon.registerIcon("Snowstorm:blanket");

 

        }

       

        }

 

        }

 

Thanks!

Posted
  On 1/3/2014 at 5:12 PM, Cookie160 said:

public registerIcon;IconRegister icon;{

                this.blockIcon = icon.registerIcon("Snowstorm:blanket");

 

 

@Override

public void registerIcons(IconRegister icon)

{

    this.blockIcon = icon.registerIcon("snowstorm:blanket");

}

 

Should have come up with an error in eclipse...

Posted
  On 1/3/2014 at 5:28 PM, luisc99 said:

  Quote

public registerIcon;IconRegister icon;{

                this.blockIcon = icon.registerIcon("Snowstorm:blanket");

 

Should have come up with an error in eclipse...

 

It did.

It still didn't work :(

Posted

The following should work

 

public class BlockSnowstormBlock extends Block{
       
        public BlockSnowstormBlock(int id, Material mat) {
        super(id, mat);
        this.setCreativeTab(CreativeTabs.tabBlock);
       }
       
      
      public registerIcon (IconRegister icon){
                this.blockIcon = icon.registerIcon("Snowstorm:blanket");
        }
}

Posted

Change your registers to:

 

	GameRegistry.registerBlock(snowstormBlock, "snowstormBlock");
	LanguageRegistry.addName(snowstormBlock, "Blanket");

 

You should also give the block a unlocalized name

 

public BlockSnowstormBlock(int id, Material mat) {
        super(id, mat);
        this.setCreativeTab(CreativeTabs.tabBlock);
        this.setUnlocalizedName("snowtormBlock");
       }

Posted
  On 1/4/2014 at 12:15 AM, CJLetsGame said:

Change your registers to:

 

	GameRegistry.registerBlock(snowstormBlock, "snowstormBlock");
	LanguageRegistry.addName(snowstormBlock, "Blanket");

 

You should also give the block a unlocalized name

 

public BlockSnowstormBlock(int id, Material mat) {
        super(id, mat);
        this.setCreativeTab(CreativeTabs.tabBlock);
        this.setUnlocalizedName("snowtormBlock");
       }

Yeah, that should work... But if it doesn't, then idk the problem.

Did I help? Gimme a thanks!

Posted
  On 1/4/2014 at 12:15 AM, CJLetsGame said:

Change your registers to:

 

	GameRegistry.registerBlock(snowstormBlock, "snowstormBlock");
	LanguageRegistry.addName(snowstormBlock, "Blanket");

 

You should also give the block a unlocalized name

 

public BlockSnowstormBlock(int id, Material mat) {
        super(id, mat);
        this.setCreativeTab(CreativeTabs.tabBlock);
        this.setUnlocalizedName("snowtormBlock");
       }

Haha!!! It works!!! One last thing, though, is that it doesn't show up in the creative menu, I have to use /give Player*** 500. Thank you sooooooooo much for all of everyone's support!

 

Current code:

 

  Reveal hidden contents

 

Posted

Never mind, I figured it out!!! It works!!! Thank you sooooo much to everyone, for every post helped me out. I cannot stress how important this is to me! This probably won't be the last you hear of me (hopefully in a good way!). Thank you!!!

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 , when I try to launch the forge installer it just crash with a message for 0,5 secondes. I'm using java 17 to launch it. Here's the link of the error :https://cdn.corenexis.com/view/?img=d/ma24/qs7u4U.jpg  
    • You will find the crash-report or log in your minecraft directory (crash-report or logs folder)
    • Use a modpack which is using these 2 mods as working base:   https://www.curseforge.com/minecraft/modpacks/life-in-the-village-3
    • inicie un mundo donde instale Croptopia y Farmer's Delight, entonces instale el addon Croptopia Delight pero no funciona. es la version 1.18.2
    • Hello all. I'm currently grappling with the updateShape method in a custom class extending Block.  My code currently looks like this: The conditionals in CheckState are there to switch blockstate properties, which is working fine, as it functions correctly every time in getStateForPlacement.  The problem I'm running into is that when I update a state, the blocks seem to call CheckState with the position of the block which was changed updated last.  If I build a wall I can see the same change propagate across. My question thus is this: is updateShape sending its return to the neighbouring block?  Is each block not independently executing the updateShape method, thus inserting its own current position?  The first statement appears to be true, and the second false (each block is not independently executing the method). I have tried to fix this by saving the block's own position to a variable myPos at inception, and then feeding this in as CheckState(myPos) but this causes a worse outcome, where all blocks take the update of the first modified block, rather than just their neighbour.  This raises more questions than it answers, obviously: how is a different instance's variable propagating here?  I also tried changing it so that CheckState did not take a BlockPos, but had myPos built into the body - same problem. I have previously looked at neighbourUpdate and onNeighbourUpdate, but could not find a way to get this to work at all.  One post on here about updatePostPlacement and other methods has proven itself long superceded.  All other sources on the net seem to be out of date. Many thanks in advance for any help you might offer me, it's been several days now of trying to get this work and several weeks of generally trying to get round this roadblock.  - Sandermall
  • Topics

×
×
  • Create New...

Important Information

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