Jump to content

Recommended Posts

Posted

EDIT: This was "half-solved"... I'm gonna post a new topic with the new problem.

 

I'm making my first mod, and I already have some items, etc....  But now I'm stuck in adding a block with 2 different textures. 1 for the top side and the another to the rest. I followed every tutorials i found, but no one works... How do i do this?

Rodrigo Gameiro, 2016

Posted

I copied everything, changed it to correct file localizations, but nothing is happening. Still the same...

 

Block code(class name is Duplicator.java)

 

  Reveal hidden contents

 

 

JSON files

 

models/block

 

 

  Reveal hidden contents

 

models/item

 

 

  Reveal hidden contents

 

Rodrigo Gameiro, 2016

Posted

First I never said copy "north": smth:blocks/duplicator_side", is missing a " and your item model should not be parent block/crafting_table it should be your modid:block_model_name. Also it's not working is not a good description of what is happening.

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.

Posted

What did you want for me to say instead it's not working?... It's not showing any texture? And what do you mean by "block_model_name"? If i understand correctly, i need to put one model there, but what model? This block is gonna have 2 different textures. Please explain, I'm new at modding...

Rodrigo Gameiro, 2016

Posted

I would have preferred "It is showing the error texture." or something similar. The problem you had was that the block model wasn't a correct JSON it had errors. Like I said you were missing a ". What I meant by "block_model_name" was the name of your block model JSON. Also instead of Minecraft.getMinecratf.getItemModelMesher in registerRender you should use something like

public void registerRender(Block block) {
     ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(block), 0, new ModelResourceLocation(modid, getUnlocalizedName().substring(5), "normal"));
}

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.

Posted

By the way, I already need to thank you, the problem is half solved. The block has finnaly his textures, the only thing isn't solved is the icon of the block on the inventory.

 

Block class (Duplicator.java)

 

  Reveal hidden contents

 

 

JSON files

 

models/item

 

  Reveal hidden contents

 

 

models/block

 

 

  Reveal hidden contents

 

 

blockstates

 

  Reveal hidden contents

 

Rodrigo Gameiro, 2016

Posted

First thing I noticed (Blockstate)

    "variants": {
        "normal": { "model": "blocks/iron_block" }
    }

"blocks/iron_block"?

Second thing (Item Model)

    "display": {
        "thirdperson": {
            "rotation": [ 10, -45, 170 ],
            "translation": [ 0, 1.5, -2.75 ],
            "scale": [ 0.375, 0.375, 0.375 ]
        }
    }

This is not needed.

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.

Posted

No you need those files, what I was saying was that part of the item model is not necessary and might be causing the error. The blockstate is pointing to "blocks/iron_block" which shouldn't exist. It should point to something like this for an Iron Block "iron_block" for one from your mod

"modid:model_file_name".

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.

Posted

Or you can point it at block/cube, block/cube_all, or block/block

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted
  On 8/19/2016 at 2:42 PM, Animefan8888 said:

No you need those files, what I was saying was that part of the item model is not necessary and might be causing the error. The blockstate is pointing to "blocks/iron_block" which shouldn't exist. It should point to something like this for an Iron Block "iron_block" for one from your mod

"modid:model_file_name".

  Quote

Or you can point it at block/cube, block/cube_all, or block/block

I tried all, but no one worked :(

Rodrigo Gameiro, 2016

Posted

That's because you have "blocks/block"

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

Where is that? I didn't find that error..

Block class:

 

  Reveal hidden contents

 

 

JSON files

 

models/block

 

 

  Reveal hidden contents

 

 

models/item

 

  Reveal hidden contents

 

 

blockstates

 

 

  Reveal hidden contents

 

Rodrigo Gameiro, 2016

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • When you name a method like that, with no return value, it is a constructor. The constructor must have the same name as the class it constructs, in this case, ModItems. I would strongly advise reading up on some basic Java tutorials, because you will definitely be running into a lot more issues as you go along without the basics. *I should also add that the Forge documentation is a reference, not a tutorial. Even following tutorials, you should know Java basics, otherwise the smallest of mistakes will trip you up as you copy someone elses code.
    • so, I'm starting modding and I'm following the official documantation for forge: https://docs.minecraftforge.net, but in the registries part it is not working as it is in the docs:   public class ModItems { private static final DeferredRegister<Item> ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, DarkStarvation.MOD_ID); public static final RegistryObject<Item> TEST_ITEM = ITEMS.register("test_item", () -> new Item(new Item.Properties())); public DarkStarvation(FMLJavaModLoadingContext context) { ITEMS.register(context.getModEventBus()); } } in 'public DarkStarvation(...' the DarkStarvation has this error: Invalid method declaration; return type required and the getModEventBus(): Cannot resolve method 'getModEventBus' in 'FMLJavaModLoadingContext' please help, I asked gpt but it is saying that I'm using an old method, but I'm following the latest version of Forge Docs???
    • I merged your second post with the original , there is no need to post a new thread asking for an answer. If someone sees your post and can help, they will reply. If you are seeking a quicker response, you could try asking in the Minecraft Forge diacord.
    • Create a new instance and start with cobblemon - if this works, add the rest of your mods in groups   Maybe another mod is conflicting - like Sodium/Iris or Radical Cobblemon Trainers
    • https://forums.minecraftforge.net/topic/157393-1201-forge-rocket-flame-particle-trail-moves-up-and-crashes-into-the-rocket-during-flight/#comment-584134
  • Topics

  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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