Jump to content

Modder Support

This is the support section for those modding with Forge. Help with modding goes in here, however, please keep in mind that this is not a Java school. You are expected to have basic knowledge of Java before posting here.


Subforums

  1. Documentation   (411047 visits to this link)

  2. ForgeGradle

    Help and support setting up your IDE and building mods with Gradle.

    5.4k
    posts

47156 topics in this forum

    • 2 replies
    • 9.6k views
    • 2 replies
    • 13.1k views
    • 2 replies
    • 4.8k views
    • 2 replies
    • 33k views
    • 1 reply
    • 844 views
    • 3 replies
    • 911 views
    • 3 replies
    • 11.8k views
    • 2 replies
    • 2.2k views
    • 0 replies
    • 713 views
    • 6 replies
    • 2.8k views
    • 8 replies
    • 1.8k views
    • 33 replies
    • 10k views
    • 2 replies
    • 1.5k views
    • 1 reply
    • 1.3k views
    • 5 replies
    • 2k views
    • 2 replies
    • 909 views
    • 3 replies
    • 5.6k views
    • 2 replies
    • 4.2k views
    • 1 reply
    • 2.2k views
    • 0 replies
    • 3.2k views
    • 0 replies
    • 659 views
    • 1 reply
    • 1.8k views
    • 2 replies
    • 3.7k views
    • 2 replies
    • 3.6k views
    • 2 replies
    • 1.1k views

Announcements



  • Posts

    • Hello, Im beginning to learn how to mod with forge, I previously was messing around with spigot but wanted to switch from plugins to full fledged modding. I'm trying to make a recipe for turning a block into charcoal   ShapedRecipeBuilder.shaped(RecipeCategory.MISC, ModItems.CHARCOAL_BLOCK_ITEM.get()) .pattern("CCC") .pattern("CCC") .pattern("CCC") .define('C', Items.CHARCOAL) .unlockedBy(getHasName(Items.CHARCOAL), has(Items.CHARCOAL)) .save(pRecipeOutput); This is under an Override build Recipes class and registered with data gen However I get this error that I don't understand the reason behind why I'm getting it   This removes the normal recipe of smelting any wood log into charcoal, but my custom recipe is there and works Any help with the proper way of doing this and solving this issue is appreciated ps: Is the only way to make recipes with forge is through Minecraft's datapack system?? Am I to belive that Spigot has a better implementation of custom recipes then Forge, a Mod API??
    • You need to override the burn time of the corresponding BlockItem, like with this code to register a block that can be used as fuel:   private static <T extends Block> RegistryObject<Item> registerFuelBlockItem(String name, RegistryObject<T> block, int burnTime) { return ModItems.ITEMS.register(name, () -> new BlockItem(block.get(), new Item.Properties()) { @Override public int getBurnTime(ItemStack itemStack, @Nullable RecipeType<?> recipeType) { return burnTime; } }); }  
    • Can you post your recipe generation class? You might have forgotten to add the advancement trigger, that part is a bit tricky.
    • https://mclo.gs/YHcp6d1 Got rid of a few of the mods that needed that version of gecko lib and now... 
    • It is worthy of the world to hear this testimony. I'm here to spread the word about Captain WebGenesis's wonderful deeds. My name is Martin Luther. I lost USD 232,000.00 in a binary investment trading scam and didn't realize it until a few weeks later. The site and services I utilized appeared authentic, and everything appeared legitimate until I emailed them to request a withdrawal of my weekly gains and they did not reply. I looked online for a specialized expert to help me get my money back. After reading countless testimonials about how Fastfund Recovery has assisted numerous con victims in getting their money back from fraudulent investment firms, I decided to give the expert a trial. I contacted Fastfund Recovery and submitted my case to the expert. He assured me that all my lost money would be retrieved and returned to my wallet address. Fastfund Recovery worked on my case, and to my amazement, my lost funds were returned to my wallet within 72 hours. Contact Fastfund Recovery right away to have your lost money returned to you. Contact Info  Tele gram ; Fastfundsrecovery mail ; { Fastfundrecovery8 (AT) Gmail com }  
  • Topics

×
×
  • Create New...

Important Information

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