Jump to content

Search the Community

Showing results for tags 'items'.

  • Search By Tags

    • items ×
    Type tags separated by commas.
  • Search By Author

Content Type



Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


  1. 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...
  2. I am trying to make a custom item that converts to another custom item when eaten. The food properties includes "usingConvertsTo(ModItems.ITEM_NAME.get())", however since the item is not yet registered during the registration process, the get() method returns null. Is there any way to work around th...
  3. I've just started modding, and I'm trying to make custom swords. When I try to import SwordItem, I get the error: What confuses me is that other item classes work fine: package io.github.xxx.denseswords.item; import io.github.xxx.denseswords.DenseSwords; import net.minecraft.world.item....
  4. So I am still trying to get the swing of blockbench and I am trying to learn how to do things with it. And I saw an item from a video that I wanted to replicate (he never posted the mod for it so I have no clue on how he made it). I’ve tried googling and everything and can’t find out how to do it. I...
  5. I have been working on recipes for my mod and have come across two errors. ERROR ONE: [19:38:01] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe echoingend:gazite_block com.google.gson.JsonParseException: Map entry 'A' : Failed to parse either. First: Input does...
  6. So, there was this thing in ProjectE, where all items had it's emc value (equivalent cost or smth) and it's was computed from sum of it's ingredients (some items had pre-written emcs, so pretty much all of items' values could be calculated from its crafting recipe). I want to do something similar: s...
  7. Hi, i'm really having problems trying to set the texture to my custom item. I thought i'm doing everything correctly, but all i see is the missing texture block for my item. I am trying this for over a week now and getting really frustrated. The only time i could make the texture work, was...
  8. Hey, i'm starting to create mods, for training I made an item that shoots a chicken when used, the behavior is ok, but the moment the chicken spawns it is frozen for a small noticeable fraction of time before being launched, the same behavior does not happen with an arrow, is it possible to avoid th...
  9. Pretty much the title, I need it for another item. It would be even better if I can get all of it's right click interactions from events and use/useOn methods
  10. I'm just new in modding Minecraft. And I want to edit vanilla items. How do i do that?
  11. Hello, I'm trying to make my first mod. Now I'm trying to make an item that would save the type of animal that I right-clicked on with the item and display it in the lore of the item. I thought that this should be implemented through NBT tags and started looking at methods. In all the guides that...
  12. when i add item in minecraft 1.20.1 it doesn't load the textures the source code is at: https://github.com/randomusert/customcrafting-1.20.1-forge
  13. Hi! I’m looking to commission a custom Minecraft mod for version 1.19.2 on Forge. I want to have a balanced Copper tools and armor mod that snugly fits the copper tier between the Stone/ Chainmail and Iron Tiers. Here are the stats I have planned: - Copper Helmet: 2 Armor Points, 121 Durabilit...
  14. I am getting this exception (I am new and just trying to create an item) Caused by: java.io.FileNotFoundException: abrasmagics:models/item/ingot_test.json at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:69) ~[SimpleReloadableRes...
  15. I am wanting to add an axe to my mod though I do not want it to have a recipe, the reason for this being that I want you to only be able to find it in a structure. I have looked on both here and elsewhere on the internet and have found nothing... How would this be done? (Video for...
  16. Hello, My mod quite heavily relies on the NBT data of an item. Before 1.20.4, this data could be retrieved using ItemStack.getTag(), however this seems to have changed in 1.20.4. Is there any documentation on this change, or does anyone know if the getTag() function could be replaced by somethi...
  17. I have been working on my mod for some time now and I am wanting to add a drink item, I am new to modding and am currently self teaching myself java as I follow tutorials. I am hoping that the code would not need a massive reworking. public static final FoodProperties LEMON_JUICE = new FoodPrope...
  18. In 1.20.6 any potion brewed in the brewing stand disappears upon completion.
  19. Hi, I'm making a necklace that stores relics with Curios mod integration. Right-clicking on a diamond currently opens the GUI, but I don't know how to store the items within it. Can anyone help me with this? (minecraft 1.20.1) -> My mod Gith https://github.com/Susakushii/SusakushiMods
  20. I'm trying to apply effects to the emerald armor but it doesn't work, I read that the onArmorTick() method doesn't work anymore, but I tried with inventoryTick, onInventoryTick and onArmorTick but they don't apply the effect either, I don't know if I'm writing it wrong, so I need help to fix it....
  21. As well all know in minecraft inventory items (that can have more then 1 item amount) show a number once there amount goes above 1 (3 for the acacia plank for example) as shown below: now im trying to not render the item amount I found the following way I could maybe do that: pu...
  22. Let's say I have created an item, after I use it, it will do a certain action, for example, spawning particles on the player's position over the span of 20 ticks, without the use button being held down by the player. How would that be done?
  23. My issue is as simple and probably stupid as the title. So, I make add-on for mod missing loot table. I found wiki for dependencies and in an effort to use less effort wondered if it was necessary to make an extra convoluted dependency structure to simply call to some items. I will continue to...
  24. I have an item class "PavlovaCake", and I want to switch the model based on the status of the integer "stage". Say, when stage == 1, it will load model "item/pavlova/1", when stage == 2, it loads "item/pavlova/2" Can anyone tell me how I can achieve this? Thanks
  25. I'm trying to render an obj file as an item and it works great but the thing is I also want to disable its shading! I don't have any clue how to do that 1.18.2 forge
×
×
  • Create New...

Important Information

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