Jump to content

Recommended Posts

Posted

Hi guys, I'm starting to think that this forge is bad (for me eh)

When I was modding in 1.5.2 and 1.6.4, I had custom classes and custom registers, called each one in each proxy, example:

 

BlockRegistry:

package it.edennetwork.crystalia.module;

import it.edennetwork.crystalia.extender.BlockDecorativeExtendedRotatable;
import it.edennetwork.crystalia.extender.BlockExtender;
import net.minecraft.block.Block;

public class BlocksDecorative {

public static Block lightBlueMagicLeaves;
public static Block lightOrangeMagicLeaves;

public static Block magicWood;
public static Block whiteMagicWood;

public static Block whiteRock;
public static Block blueRock;

public static void onLoad() {
	lightBlueMagicLeaves = new BlockExtender("FoglieMagicheAzzurre",
			CryTabs.crystaliaDecorativeTab).setHardness(0.2F).setStepSound(
			Block.soundTypeGrass);
	lightOrangeMagicLeaves = new BlockExtender(
			"FoglieMagicheArancioni", CryTabs.crystaliaDecorativeTab)
			.setHardness(0.2F).setStepSound(Block.soundTypeGrass);
	magicWood = new BlockDecorativeExtendedRotatable("LegnoMagico",
			"LegnoMagicoTop");
	whiteMagicWood = new BlockDecorativeExtendedRotatable(
			"LegnoMagicoChiaro", "LegnoMagicoChiaroTop");
	whiteRock = new BlockExtender("RocciaBianca",
			CryTabs.crystaliaDecorativeTab);
	blueRock = new BlockExtender("RocciaBlu",
			CryTabs.crystaliaDecorativeTab);
}
}

 

Then I called the "onLoad" method in the Client/ServerProxy in the preInit function:

 

BlocksDecorative.onLoad();

 

But the problem is that the game registers the blocks but doesn't show them in the CreativeTabs! I can only get it by using the "/give" command, it does even not show them in the "Search Tab".

Why? The custom blocks extend to a class which has a constructor that call this at the end:

 

GameRegistry.registerBlock(this, this.getUnlocalizedName().substring(5));

 

Can someone help me with this? They doesn't show up even using the normal forge method, only for another blocks different from the ones coming from the 1.5.2/1.6.4 version.

Posted

Hi guys, I'm starting to think that this forge is bad (for me eh)

When I was modding in 1.5.2 and 1.6.4, I had custom classes and custom registers, called each one in each proxy, example:

 

BlockRegistry:

package it.edennetwork.crystalia.module;

import it.edennetwork.crystalia.extender.BlockDecorativeExtendedRotatable;
import it.edennetwork.crystalia.extender.BlockExtender;
import net.minecraft.block.Block;

public class BlocksDecorative {

public static Block lightBlueMagicLeaves;
public static Block lightOrangeMagicLeaves;

public static Block magicWood;
public static Block whiteMagicWood;

public static Block whiteRock;
public static Block blueRock;

public static void onLoad() {
	lightBlueMagicLeaves = new BlockExtender("FoglieMagicheAzzurre",
			CryTabs.crystaliaDecorativeTab).setHardness(0.2F).setStepSound(
			Block.soundTypeGrass);
	lightOrangeMagicLeaves = new BlockExtender(
			"FoglieMagicheArancioni", CryTabs.crystaliaDecorativeTab)
			.setHardness(0.2F).setStepSound(Block.soundTypeGrass);
	magicWood = new BlockDecorativeExtendedRotatable("LegnoMagico",
			"LegnoMagicoTop");
	whiteMagicWood = new BlockDecorativeExtendedRotatable(
			"LegnoMagicoChiaro", "LegnoMagicoChiaroTop");
	whiteRock = new BlockExtender("RocciaBianca",
			CryTabs.crystaliaDecorativeTab);
	blueRock = new BlockExtender("RocciaBlu",
			CryTabs.crystaliaDecorativeTab);
}
}

 

Then I called the "onLoad" method in the Client/ServerProxy in the preInit function:

 

BlocksDecorative.onLoad();

 

But the problem is that the game registers the blocks but doesn't show them in the CreativeTabs! I can only get it by using the "/give" command, it does even not show them in the "Search Tab".

Why? The custom blocks extend to a class which has a constructor that call this at the end:

 

GameRegistry.registerBlock(this, this.getUnlocalizedName().substring(5));

 

Can someone help me with this? They doesn't show up even using the normal forge method, only for another blocks different from the ones coming from the 1.5.2/1.6.4 version.

Your mod class? An example block class?

Don't ask for support per PM! They'll get ignored! | If a post helped you, click the "Thank You" button at the top right corner of said post! |

mah twitter

This thread makes me sad because people just post copy-paste-ready code when it's obvious that the OP has little to no programming experience. This is not how learning works.

Posted

I'm not sure if it's changed in 1.7, but when you

lightBlueMagicLeaves = new BlockExtender("FoglieMagicheAzzurre", CryTabs.crystaliaDecorativeTab).setHardness(0.2F).setStepSound(Block.soundTypeGrass);

 

I don't know what your BlockExtender class looks like and why your setting the customTab as a part of the constructor.

In 1.6 mine would look something like this

oreCopper = new BlockRE(oreCopperID, Material.rock).setUnlocalizedName("oreCopper");

 

and my BlockRE would be like

public BlockRE(int id, Material material) {
	super(id, material);
	this.setCreativeTab(RegistryRE.tabRE);
}

 

Also, are you registering the name in the language registry? I know its different in 1.7, but i know you still have to do it a certain way.

Posted

Here's the class extender:

 

package it.edennetwork.crystalia.extender;

import it.edennetwork.crystalia.Crystalia;

import java.util.Random;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.init.Blocks;
import cpw.mods.fml.common.registry.GameRegistry;

public class BlockExtender extends Block {
    public final String textureName;
    public final int droppedItemID;
    public final int quantityDrop;

    public BlockExtender(String texture, CreativeTabs tab)
    {
        super(Material.rock);
        textureName = texture;
        setCreativeTab(tab);
        this.setHarvestLevel("pickaxe", 0);
        setBlockName(texture);
        setStepSound(Block.soundTypeStone);
        droppedItemID = this.getIdFromBlock(this);
        quantityDrop = 1;
        GameRegistry.registerBlock(this, this.getUnlocalizedName().substring(5));
    }

    @Override
    public void registerBlockIcons(IIconRegister iconRegister)
    {
        blockIcon = iconRegister.registerIcon(Crystalia.modid + ":" + textureName);
    }

    @Deprecated // Removed in 1.7.2
    public int idDropped(int par1, Random par2Random, int par3)
    {
        return droppedItemID;
    }

    @Deprecated // Removed in 1.7.2
    public int quantityDropped(Random random)
    {
        return quantityDrop;
    }
}

Posted

Please show your CryTabs class.

there might be the problem.

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

Posted

Here's the class extender:

 


    public BlockExtender(String texture, CreativeTabs tab)
    {
        droppedItemID = this.getIdFromBlock(this);
...
        GameRegistry.registerBlock(this, this.getUnlocalizedName().substring(5));
    }

    @Deprecated // Removed in 1.7.2
    public int idDropped(int par1, Random par2Random, int par3)
    {
        return droppedItemID;
    }

    @Deprecated // Removed in 1.7.2
    public int quantityDropped(Random random)
    {
        return quantityDrop;
    }
}

 

This may not be your main problem, but your code cannot work as written with IDs. Even if you registered your block before trying to use its ID (which you cannot), you are using deprecated methods which have no purpose in 1.7.2. Using the

@deprecated

annotation is the same as saying ignore this error. But, there is no reason to cheat like that.

 

Posted

Here's the class extender:

 


    public BlockExtender(String texture, CreativeTabs tab)
    {
        droppedItemID = this.getIdFromBlock(this);
...
        GameRegistry.registerBlock(this, this.getUnlocalizedName().substring(5));
    }

    @Deprecated // Removed in 1.7.2
    public int idDropped(int par1, Random par2Random, int par3)
    {
        return droppedItemID;
    }

    @Deprecated // Removed in 1.7.2
    public int quantityDropped(Random random)
    {
        return quantityDrop;
    }
}

 

This may not be your main problem, but your code cannot work as written with IDs. Even if you registered your block before trying to use its ID (which you cannot), you are using deprecated methods which have no purpose in 1.7.2. Using the

@deprecated

annotation is the same as saying ignore this error. But, there is no reason to cheat like that.

 

I know, those method also are not being called because they doesn't override nothing, just only for purpose.

Anyway I removed them, still not working.

 

@coolboy

The registry is called in the "preInit" method, even if I try to call it outside the class, doesn't work.

I tried making a "testBlock" directly in the preinit method and registered it with a custom creative tabs, IT WORKS! But I don't know why forge doesn't check this extender...

Expecially the "setCreativeTab(tab)"....

Posted

We need some real verification from Forge.

 

From what I think (in my perspective) I don't think Forge checks for (GameRegistry.#) in custom classes - they only check for it in the PreInit method like I said below.

 

And for the .setCreativeTab(#) - I really don't know.

Like said, above, could be something with your CryTabs class (please show us it).

Posted

I got it, I called the Tabs AFTER the game has registered the blocks/items. Now I need only to make a different "GameRegistry" function that will register the blocks/items AFTER the tables has been loaded and AFTER the blocks/items have been initialized!

Thanks for all to pointing to the tabs! It helped me very much, thanks!

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

    • When I first heard about Bitcoin back in 2018, I was skeptical. The idea of a decentralized, digital currency seemed too good to be true. But I was intrigued as I learned more about the technology behind it and its potential. I started small, investing just a few hundred dollars, dipping my toes into the cryptocurrency waters. At first, it was exhilarating to watch the value of my investment grow exponentially. I felt like I was part of the future, an early adopter of this revolutionary new asset. But that euphoria was short-lived. One day, I logged into my digital wallet only to find it empty - my Bitcoin had vanished without a trace. It turned out that the online exchange I had trusted had been hacked, and my funds were stolen. I was devastated, both financially and emotionally. All the potential I had seen in Bitcoin was tainted by the harsh reality that with decentralization came a lack of regulation and oversight. My hard-earned money was gone, lost to the ether of the digital world. This experience taught me a painful lesson about the price of trust in the uncharted territory of cryptocurrency. While the technology holds incredible promise, the risks can be catastrophic if you don't approach it with extreme caution. My Bitcoin investment gamble had failed, and I was left to pick up the pieces, wiser but poorer for having placed my faith in the wrong hands. My sincere appreciation goes to MUYERN TRUST HACKER. You are my hero in recovering my lost funds. Send a direct m a i l ( muyerntrusted ( @ ) mail-me ( . )c o m ) or message on whats app : + 1 ( 4-4-0 ) ( 3 -3 -5 ) ( 0-2-0-5 )
    • You could try posting a log (if there is no log at all, it may be the launcher you are using, the FAQ may have info on how to enable the log) as described in the FAQ, however this will probably need to be reported to/remedied by the mod author.
    • So me and a couple of friends are playing with a shitpost mod pack and one of the mods in the pack is corail tombstone and for some reason there is a problem with it, where on death to fire the player will get kicked out of the server and the tombstone will not spawn basically deleting an entire inventory, it doesn't matter what type of fire it is, whether it's from vanilla fire/lava, or from modded fire like ice&fire/lycanites and it's common enough to where everyone on the server has experienced at least once or twice and it doesn't give any crash log. a solution to this would be much appreciated thank you!
    • It is 1.12.2 - I have no idea if there is a 1.12 pack
  • Topics

×
×
  • Create New...

Important Information

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