Jump to content

Recommended Posts

Posted
  On 7/26/2017 at 3:21 PM, IlTosaerba said:

Of curse! Is what I done, forget to write in the previous comment, updating it

Expand  

 

Post your recipe file and the FML log (logs/fml-client-latest.log in the game directory) using Gist or Pastebin.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted
  Quote

[18:05:04] [main/ERROR] [FML/]: Parsing error loading recipe wllcsam:metalloalieno
com.google.gson.JsonSyntaxException: Unknown item 'wllcsam:genevirus'
    at net.minecraftforge.common.crafting.CraftingHelper.getItemStackBasic(CraftingHelper.java:259) ~[CraftingHelper.class:?]
    at net.minecraftforge.common.crafting.CraftingHelper.lambda$init$16(CraftingHelper.java:537) ~[CraftingHelper.class:?]
    at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:201) ~[CraftingHelper.class:?]
    at net.minecraftforge.common.crafting.CraftingHelper.lambda$init$14(CraftingHelper.java:474) ~[CraftingHelper.class:?]
    at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:408) ~[CraftingHelper.class:?]
    at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
    at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:806) ~[CraftingHelper.class:?]
    at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:736) ~[CraftingHelper.class:?]
    at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:668) ~[CraftingHelper.class:?]
    at java.util.ArrayList.forEach(Unknown Source) [?:1.8.0_141]
    at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:620) [CraftingHelper.class:?]

Expand  

 

There is no registered Item with the name wllcsam:genevirus.

 

Have you spelled the name correctly? Do you register an Item with this name anywhere?

  • Like 1

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

I have an item call genevirus (without "wllcsam:") register in ModItem.java 
ModItem.java : https://pastebin.com/gYrSrtNp

Then i create the class ItemGenevirus of curse.

ItemGenevirus.java: https://pastebin.com/G0Y71Bsd

 

And also define it in Reference.java

Reference.java: https://pastebin.com/aMMgWda8

 

Then I have also an itemgenevirus.json in src/main/resources/assets/<modId>/mofels/item

itemgenevirus.json: https://pastebin.com/Hj9zNeRN

Posted
  On 7/27/2017 at 5:15 PM, IlTosaerba said:

And what about smelt recipes? How can I write a costum one?

Expand  

 

FurnaceRecipes still uses a Map of input ItemStacks to output ItemStacks, you can't create your own smelting recipes with custom logic.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

'cause I see a yt tutorial for the 1.11.2 version which create a new smelting recipes with  "GameRegistry". He was doing the same with recipes but in 1.12 it doesn't work, so my real question is: Can I create a costum smelting recipe? How (if there's just a post for this please give me the link)?.


And the most important for my mod... can I create a costum block with function like crafting table / fournace / anvill  with costums recipes which work only with that block?

(in poor word, create a costum version of crafting table / fopurnace/ anvill) 

Posted
  On 7/27/2017 at 5:50 PM, IlTosaerba said:

'cause I see a yt tutorial for the 1.11.2 version which create a new smelting recipes with  "GameRegistry". He was doing the same with recipes but in 1.12 it doesn't work, so my real question is: Can I create a costum smelting recipe? How (if there's just a post for this please give me the link)?.

Expand  

 

You can still add smelting recipes with GameRegistry#addSmelting, since smelting recipes weren't changed in 1.12. By "custom recipe", I thought you were talking about creating you own recipe class with custom logic, which isn't possible for smelting recipes.

 

 

  On 7/27/2017 at 5:50 PM, IlTosaerba said:

And the most important for my mod... can I create a costum block with function like crafting table / fournace / anvill  with costums recipes which work only with that block?

(in poor word, create a costum version of crafting table / fopurnace/ anvill) 

Expand  

 

Yes, you can create your own machines with their own set of recipes.

  • Like 1

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted
  On 7/27/2017 at 6:25 PM, Choonster said:

 

You can still add smelting recipes with GameRegistry#addSmelting, since smelting recipes weren't changed in 1.12. By "custom recipe", I thought you were talking about creating you own recipe class with custom logic, which isn't possible for smelting recipes.

Expand  

Good, very good

  Quote

Yes, you can create your own machines with their own set of recipes.

Expand  

AMAZING! Can u please tell me how or give me a link for a tutorial 'cause I didn't find anything on Internet

Posted
  On 7/27/2017 at 6:33 PM, IlTosaerba said:

AMAZING! Can u please tell me how or give me a link for a tutorial 'cause I didn't find anything on Internet

Expand  

 

I don't think there's many tutorials on this, since each machine is different.

 

All I can suggest is to look at the examples in Vanilla/Forge and in open source mods.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted
  On 7/27/2017 at 6:49 PM, Choonster said:

 

I don't think there's many tutorials on this, since each machine is different.

 

All I can suggest is to look at the examples in Vanilla/Forge and in open source mods.

Expand  

Where's exatly the files in Vanilla/Forge? 'cause I found only the Json in blockstates and models 

Posted
  On 7/27/2017 at 7:31 PM, IlTosaerba said:

Where's exatly the files in Vanilla/Forge? 'cause I found only the Json in blockstates and models 

Expand  

 

The Crafting Table is implemented in the BlockWorkbench,ContainerWorkbench and GuiCrafting classes. Recipes are managed by CraftingManager, mod recipes are loaded by CraftingHelper. Vanilla recipe files are located in the assets/minecraft/recipes directory.

 

The Furnace is implemented in the BlockFurnaceTileEntityFurnaceContainerFurnace and GuiFurnace classes. Recipes are managed by FurnaceRecipes.

 

The Anvil is implemented in the BlockAnvilContainerRepair and GuiRepair classes. There are no anvil recipes, the output is managed by ContainerRepair#updateRepairOutput (which fires AnvilUpdateEvent to allow mods to add custom item combinations).

 

To open a class by name, use Navigate > Class (Ctrl-N) in IDEA or Navigate > Go To > Type... in Eclipse.

  • Like 1

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted
  On 7/27/2017 at 7:42 PM, Choonster said:

To open a class by name, use Navigate > Go To > Type... in Eclipse.

Expand  

Ok, but where I found the classes?

I mean, normally u can't see them, I have to open it with eclipse, but for do it, I must import like project the package which contain them... how? Where i foud it?

Posted
  On 7/27/2017 at 9:00 PM, IlTosaerba said:

Ok, but where I found the classes?

I mean, normally u can't see them, I have to open it with eclipse, but for do it, I must import like project the package which contain them... how? Where i foud it?

Expand  

I mean... how to put the Vanilla's files in Eclipse?

Posted
  On 7/27/2017 at 9:00 PM, IlTosaerba said:

Ok, but where I found the classes?

I mean, normally u can't see them, I have to open it with eclipse, but for do it, I must import like project the package which contain them... how? Where i foud it?

Expand  

 

  On 7/28/2017 at 7:53 AM, IlTosaerba said:

I mean... how to put the Vanilla's files in Eclipse?

Expand  

 

Follow the instructions in the Getting Started guide to set up your IDE project correctly. If you follow these instructions, you'll have the forgeSrc-<version>.jar library referenced in your IDE project with the source code attached to it.

  • Like 1

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

Oh, it is in Reference Libraries! Found it, thank u very much, now I will be crazy to study all this but finally I will have a good mod. 

Last question (I promise XD): If I want that when I put an Item in a Block, that Block open an Iron Door.... how can I do it? Have to set like a redstone impulse or some weird method?

Posted
  On 7/28/2017 at 8:30 AM, IlTosaerba said:

Last question (I promise XD): If I want that when I put an Item in a Block, that Block open an Iron Door.... how can I do it? Have to set like a redstone impulse or some weird method?

Expand  

 

If the block is adjacent to the door, make it emit a redstone signal. If it's not, you'll probably need to toggle the door periodically if it's not open.

 

If you want more help with this, create a new thread.

  • Like 1

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

  • 1 year later...
Posted

Hello there, I wouldn't start a new thread since this one hits the topic I need help with :)

 

I have a weird behavior and I am not sure what I am doing wrong. so maybe one of you can help me.

 

I try to make a custom recipe in minecraft.

 

When I use only one Item like here;

 

{
    "type": "crafting_shaped",
    "pattern": [
        "###",
        "###",
        "###"
    ],
    "key": {
        "#": {
            "item": "minecraft:stone"
        }
    },
    
    "result":
    {
        "item": "dstm:pot_block",
        "count": 1
    }
}

 

The recipe works just fine. But when I try to make a variation of it it doesn't work anymore. I checked in in a json validator the second code should be correct.

 :( but it doesn't work anymore. Sooo it's not okay?

 

{
    "type": "crafting_shaped",
    "pattern": [
        "###",
        "/ /",
        "/C/"
    ],
    "key": {
        "#": {
            "item": "minecraft:stone"
        },
        "/": {
            "item": "minecraft:stick"
        },
        "C": {
            "item": "minecraft:coal_block"
        }
    },
    
    "result":
    {
        "item": "dstm:pot_block",
        "count": 1
    }
}

 

So I am happy for any help :) thx you :D

Posted
  On 10/20/2018 at 6:22 PM, RocaTeithmore said:

Hello there, I wouldn't start a new thread since this one hits the topic I need help with :)

Expand  

Make a new thread instead of posting on one that is almost 4 months. Plus the topic of this thread changed from recipes to redstone a while ago.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Cracked Launchers are not supported
    • After some time minecraft crashes with an error. Here is the log https://drive.google.com/file/d/1o-2R6KZaC8sxjtLaw5qj0A-GkG_SuoB5/view?usp=sharing
    • The specific issue is that items in my inventory wont stack properly. For instance, if I punch a tree down to collect wood, the first block I collected goes to my hand. So when I punch the second block of wood to collect it, it drops, but instead of stacking with the piece of wood already in my hand, it goes to the second slot in my hotbar instead. Another example is that I'll get some dirt, and then when I'm placing it down later I'll accidentally place a block where I don't want it. When I harvest it again, it doesn't go back to the stack that it came from on my hotbar, where it should have gone, but rather into my inventory. That means that if my inventory is full, then the dirt wont be picked up even though there should be space available in the stack I'm holding. The forge version I'm using is 40.3.0, for java 1.18.2. I'll leave the mods I'm using here, and I'd appreciate it if anybody can point me in the right direction in regards to figuring out how to fix this. I forgot to mention that I think it only happens on my server but I&#39;m not entirely sure. PLEASE HELP ME! LIST OF THE MODS. aaa_particles Adorn AdvancementPlaques AI-Improvements AkashicTome alexsdelight alexsmobs AmbientSounds amwplushies Animalistic another_furniture AppleSkin Aquaculture aquamirae architectury artifacts Atlas-Lib AutoLeveling AutoRegLib auudio balm betterfpsdist biggerstacks biomancy BiomesOPlenty blockui blueprint Bookshelf born_in_chaos Botania braincell BrassAmberBattleTowers brutalbosses camera CasinoCraft cfm (MrCrayfish’s Furniture Mod) chat_heads citadel cloth-config Clumps CMDCam CNB cobweb collective comforts convenientcurioscontainer cookingforblockheads coroutil CosmeticArmorReworked CozyHome CrabbersDelight crashexploitfixer crashutilities Create CreativeCore creeperoverhaul cristellib crittersandcompanions Croptopia CroptopiaAdditions CullLessLeaves curios curiouslanterns curiouslights Curses' Naturals CustomNPCs CyclopsCore dannys_expansion decocraft Decoration Mod DecorationDelightRefurbished Decorative Blocks Disenchanting DistantHorizons doubledoors DramaticDoors drippyloadingscreen durabilitytooltip dynamic-fps dynamiclights DynamicTrees DynamicTreesBOP DynamicTreesPlus Easy Dungeons EasyAnvils EasyMagic easy_npc eatinganimation ecologics effective_fg elevatorid embeddium emotecraft enchantlimiter EnchantmentDescriptions EnderMail engineersdecor entityculling entity_model_features entity_texture_features epicfight EvilCraft exlinefurniture expandability explosiveenhancement factory-blocks fairylights fancymenu FancyVideo FarmersDelight fast-ip-ping FastSuite ferritecore finsandtails FixMySpawnR Forge Middle Ages fossil FpsReducer2 furnish GamingDeco geckolib goblintraders goldenfood goodall H.e.b habitat harvest-with-ease hexerei hole_filler huge-structure-blocks HunterIllager iammusicplayer Iceberg illuminations immersive_paintings incubation infinitybuttons inventoryhud InventoryProfilesNext invocore ItemBorders itemzoom Jade jei (Just Enough Items) JetAndEliasArmors journeymap JRFTL justzoom kiwiboi Kobolds konkrete kotlinforforge lazydfu LegendaryTooltips libIPN lightspeed lmft lodestone LongNbtKiller LuckPerms Lucky77 MagmaMonsters malum ManyIdeasCore ManyIdeasDoors marbledsarsenal marg mcw-furniture mcw-lights mcw-paths mcw-stairs mcw-trapdoors mcw-windows meetyourfight melody memoryleakfix Mimic minecraft-comes-alive MineTraps minibosses MmmMmmMmmMmm MOAdecor (ART, BATH, COOKERY, GARDEN, HOLIDAYS, LIGHTS, SCIENCE) MobCatcher modonomicon mods_optimizer morehitboxes mowziesmobs MutantMonsters mysticalworld naturalist NaturesAura neapolitan NekosEnchantedBooks neoncraft2 nerb nifty NightConfigFixes nightlights nocube's_villagers_sell_animals NoSeeNoTick notenoughanimations obscure_api oculus oresabovediamonds otyacraftengine Paraglider Patchouli physics-mod Pillagers Gun PizzaCraft placeableitems Placebo player-animation-lib pneumaticcraft-repressurized polymorph PrettyPipes Prism projectbrazier Psychadelic-Chemistry PuzzlesLib realmrpg_imps_and_demons RecipesLibrary reeves-furniture RegionsUnexplored restrictedportals revive-me Scary_Mobs_And_Bosses selene shetiphiancore ShoulderSurfing smoothboot
    • Hi everyone, I'm currently developing a Forge 1.21 mod for Minecraft and I want to display a custom HUD overlay for a minigame. My goal: When the game starts, all players should see an item/block icon (from the base game, not a custom texture) plus its name/text in the HUD – similar to how the bossbar overlay works. The HUD should appear centered above the hotbar (or at a similar prominent spot), and update dynamically (icon and name change as the target item changes). What I've tried: I looked at many online tutorials and several GitHub repos (e.g. SeasonHUD, MiniHUD), but most of them use NeoForge or Forge versions <1.20 that provide the IGuiOverlay API (e.g. implements IGuiOverlay, RegisterGuiOverlaysEvent). In Forge 1.21, it seems that neither IGuiOverlay nor RegisterGuiOverlaysEvent exist anymore – at least, I can't import them and they are missing from the docs and code completion. I tried using RenderLevelStageEvent as a workaround but it is probably not intended for custom HUDs. I am not using NeoForge, and switching the project to NeoForge is currently not an option for me. I tried to look at the original minecraft source code to see how elements like hearts, hotbar etc are drawn on the screen but I am too new to Minecraft modding to understand. What I'm looking for: What is the correct way to add a custom HUD element (icon + text) in Forge 1.21, given that the previous overlay API is missing? Is there a new recommended event, callback, or method in Forge 1.21 for custom HUD overlays, or is everyone just using a workaround? Is there a minimal open-source example repo for Forge 1.21 that demonstrates a working HUD overlay without relying on NeoForge or deprecated Forge APIs? My ideal solution: Centered HUD element with an in-game item/block icon (from the base game's assets, e.g. a diamond or any ItemStack / Item) and its name as text, with a transparent background rectangle. It should be visible to the players when the mini game is running. Easy to update the item (e.g. static variable or other method), so it can change dynamically during the game. Any help, code snippets, or up-to-date references would be really appreciated! If this is simply not possible right now in Forge 1.21, it would also help to know that for sure. Thank you very much in advance!
  • Topics

×
×
  • Create New...

Important Information

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