Jump to content

Recommended Posts

Posted

Hello everyone!

Started learning Java and coding Mod, and I faced this problem.

So, this is my Pig Ore class (dont ask xD)

package com.shag.orebosses.init;

import java.util.Random;

import com.shag.orebosses.Info;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.client.Minecraft;
import net.minecraft.client.resources.model.ModelResourceLocation;
import net.minecraft.init.Items;
import net.minecraft.item.Item;
import net.minecraftforge.fml.common.registry.GameRegistry;
import net.minecraftforge.fml.common.toposort.TopologicalSort;

public class Pig_Ore extends Block{
public Pig_Ore(Material material) {
	super(material);

}
public static Block pig_ore;

public static void init()
{
	pig_ore = new Block(Material.rock).setUnlocalizedName("pig_ore");
}

public static void register()
{
	GameRegistry.registerBlock(pig_ore, pig_ore.getUnlocalizedName().substring(5));
}
public static void registerRenders(){
	registerRender(pig_ore);
}
public static void registerRender(Block block){
	Item item = Item.getItemFromBlock(block);
	Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item,0, new ModelResourceLocation(Info.id + ":" + item.getUnlocalizedName().substring(5), "inventory"));
}
    /**
     * Returns the quantity of items to drop on block destruction.
     */
    public int quantityDropped(Random random)
    {
        return 1;
    }

    /**
     * Get the Item that this Block should drop when harvested.
     */
    public Item getItemDropped(IBlockState state, Random rand, int fortune)
    {
        return Items.diamond;
    }
}

 

These lines should set the block's drop:

    public int quantityDropped(Random random)
    {
        return 1;
    }

    /**
     * Get the Item that this Block should drop when harvested.
     */
    public Item getItemDropped(IBlockState state, Random rand, int fortune)
    {
        return Items.diamond;
    }
}

 

But, they dont!

 

This is my main class:

package com.shag.orebosses;

import com.shag.orebosses.init.Pig_Ore;
import com.shag.orebosses.proxy.CommonProxy;

import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.SidedProxy;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;

@Mod (modid = Info.id, name = Info.name, version = Info.version)
public class MainClass {

@SidedProxy
(clientSide = Info.CLIENT_PROXY_CLASS, serverSide = Info.COMMON_PROXY_CLASS)
public static CommonProxy proxy;

@EventHandler
public void preLoad(FMLPreInitializationEvent e)
{
	Pig_Ore.init();
	Pig_Ore.register();
	Pig_Ore.pig_ore.setHardness(5F);
	Pig_Ore.pig_ore.setHarvestLevel("pickaxe", 1);
}
@EventHandler
public void load(FMLInitializationEvent e)
{
	proxy.registerRenders();
}
@EventHandler
public void postLoad(FMLPostInitializationEvent e)
{

}
}

 

Thanks! ~shag

Posted
  On 1/26/2016 at 2:15 PM, diesieben07 said:

You are never instantiating your Pig_Ore class, you are just instantiating the plain Block class, which of course does not have any drops.

Ok, I get it.

But how? I cant understand where should I write it xD

Posted
  On 1/26/2016 at 2:36 PM, diesieben07 said:

Do you know what instantiate means? If not: Learn Java. If yes: There is you answer.

So, yeh, I know what that is.

But I dont understand how can I use it in this case.

Can u please help me? I would highly appreciate it!

Posted
  On 1/26/2016 at 5:11 PM, diesieben07 said:

I'll let an image speak:

 

uovHsc5.png

Thanks so much! I am sorry for my stupidity. Gotta go learn Java.

Thank you again <3

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 everyone, I’d like to share a mod concept inspired by the Solo Leveling universe. My goal is to create a Minecraft experience where players explore unique dungeons, fight powerful bosses, level up their character, and unlock special abilities — all while keeping Minecraft’s sandbox charm. I mainly use MCreator for development, as it’s my preferred tool, but I’m open to integrating custom code, models, and assets from collaborators. Main Question: Would anyone be interested in joining the development of this mod? I’m looking for people who could help with: 3D Models (weapons, mobs, bosses, environmental assets) Sound Design (boss themes, dungeon ambience, ability sounds) Texture & Artwork (UI elements, icons, environment textures) Additional Coding (if needed for complex systems beyond MCreator’s scope) Concept: Players can enter portals leading to themed dungeons. Each dungeon ends with a unique boss battle. Defeating bosses grants special XP to improve stats (strength, mana, speed, defense). Rare loot, upgradeable gear, and unlockable powers. Extra Features Planned: Multiple dimensions with unique environments. NPCs giving quests. Random portal events appearing in the Overworld. Technical Approach: Development will primarily use MCreator for rapid prototyping. Custom models and textures can be integrated. NeoForge API features may be added for advanced functionality. If this project interests you, feel free to reply here or send me a message so we can discuss ideas, asset requirements, and a possible development roadmap.
    • I have followed the instructions on the Parchment website, but it still shows that the corresponding version cannot be found. https://parchmentmc.org/docs/getting-started What should I do?😢
    • main: Could not find net.minecraftforge:forge:1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1. Searched in the following locations:   - file:/C:/Users/qhxg/.gradle/caches/forge_gradle/bundeled_repo/net/minecraftforge/forge/1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1/forge-1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1.pom   - file:/C:/Users/qhxg/.gradle/caches/forge_gradle/bundeled_repo/net/minecraftforge/forge/1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1/forge-1.20.1-47.4.0_mapped_parchment_2023.09.03-1.20.1.jar Required by:     project : Possible solution:  - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
    • Minecraft has a problem with a mod that somehow prevents the Java runtime environment from working. I don't know which mod it is, so it's more of a guess, and I have the latest version of Java installed. https://mclo.gs/Xo7jTvo
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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