Jump to content

Recommended Posts

Posted (edited)

Hello Community ^^

 

I'm just in the process of rewriting a mod from 1.7.10 to 1.12.2, with the items everything has worked so far but I can not get the blocks displayed correctly, the block works and also has the right graphics but as an item I have just this error texture in the middle and over it the text nccstuff:blockaloha#inventory
Hope you can help me :/

 

src/main/javaeu.mylonky.nccstuff.init/Blocks.java

Spoiler

 


package eu.mylonky.nccstuff.init;


import eu.mylonky.nccstuff.NccStuffConstants;

import eu.mylonky.nccstuff.block.BlockAloha;

import net.minecraft.block.Block;

import net.minecraft.item.Item;

import net.minecraft.item.ItemBlock;

import net.minecraft.util.ResourceLocation;

import net.minecraftforge.event.RegistryEvent.Register;

import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

import net.minecraftforge.registries.IForgeRegistry;

public class Blocks {


    public static final BlockAloha blockaloha = new BlockAloha();

   

    public static void init() {

        setName(blockaloha, "blockaloha");

    }

   

    @SubscribeEvent

    public static void register(Register.Register<Block> event) {

        IForgeRegistry<Block> registry = event.getRegistry();

        registry.register(blockaloha);

    }

    @SubscribeEvent

    public static void registerItem(Register.Register<Item> event) {

        IForgeRegistry<Item> registry = event.getRegistry();

        registry.register(new ItemBlock(blockaloha).setRegistryName(blockaloha.getRegistryName()));

    }

    public static void setName(Block block, String name) {

        block.setRegistryName(new ResourceLocation(NccStuffConstants.MODID, name));

        block.setUnlocalizedName(name);

    }

}

 

 

 

eu.mylonky.nccstuff.init/ItemsModels.java

Spoiler

package eu.mylonky.nccstuff.init;


import net.minecraft.client.renderer.block.model.ModelResourceLocation;

import net.minecraft.item.Item;

import net.minecraftforge.client.event.ModelRegistryEvent;

import net.minecraftforge.client.model.ModelLoader;

import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;


public class ItemsModels {

   

    @SubscribeEvent

    public static void register(ModelRegistryEvent event) {

        register(Items.coin1);

        register(Items.coin2);

        register(Items.coin5);

        register(Items.note1);

        register(Items.note2);

        register(Items.note5);

        register(Items.note10);

        register(Items.note20);

        register(Items.note50);

        register(Items.note100);

        register(Items.note200);

        register(Items.note500);

        register(Items.note1000);

        register(Items.bundle1);

        register(Items.bundle2);

        register(Items.bundle5);

        register(Items.bundle10);

        register(Items.bundle20);

        register(Items.bundle50);

        register(Items.bundle100);

        register(Items.bundle200);

        register(Items.bundle500);

        register(Items.bundle1000);

        register(Items.wuppiriumdust);

        register(Items.alohadust);

        register(Items.wuppiriumbarren);

        register(Items.alohabarren);

        register(Items.alohastick);

        register(Items.sirup);

        register(Items.tuete);

        register(Items.commandbook);

        register(Items.hotsamulet);

        register(Items.witherstormnetherstar);

        register(Items.blueflint);

        register(Items.greenflint);

        register(Items.darkbarren);

       

        register(Item.getItemFromBlock(Blocks.blockaloha));

    }

   

    private static void register(Item item) {

        ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory"));

    }


}

 

eu.mylonky.nccstuff.block/BlockAloha.java

Spoiler

 


package eu.mylonky.nccstuff.block;


import eu.mylonky.nccstuff.init.TabsBlocks;

import net.minecraft.block.Block;

import net.minecraft.block.material.Material;


public class BlockAloha extends Block{

   

    public BlockAloha() {

        super(Material.IRON);

        setCreativeTab(TabsBlocks.tab);

    }


}

 

 

 


eu.mylonky.nccstuff.proxy/CommonProxy.java

Spoiler

 


package eu.mylonky.nccstuff.proxy;


import eu.mylonky.nccstuff.init.Blocks;

import eu.mylonky.nccstuff.init.Items;

import net.minecraftforge.common.MinecraftForge;

import net.minecraftforge.fml.common.event.FMLInitializationEvent;

import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;

import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;


public class CommonProxy {


    public void preinit(FMLPreInitializationEvent event) {

        Items.init();

        Blocks.init();


        MinecraftForge.EVENT_BUS.register(Items.class);

        MinecraftForge.EVENT_BUS.register(Blocks.class);

    }


    public void init(FMLInitializationEvent event) {

    }


    public void postinit(FMLPostInitializationEvent event) {      

    }


}

 

src/main/resource

eu.mylonky.nccstuff.blockstates/blockaloha.json

Spoiler

 


{

    "variants": {

        "normal": {

            "model": "nccstuff:blockaloha"

        }

    }

}

 

 

 

eu.mylonky.nccstuff.models.item/blockaloha.json

Spoiler

 


{

    "parent": "nccstuff:blocks/blockaloha"

}

 

 

 

 

Edited by Wuppertaler93
Posted
15 minutes ago, diesieben07 said:

Post the console log.

[13:32:01] [main/INFO] [GradleStart]: Extra: []
[13:32:01] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Wuppertaler93/.gradle/caches/minecraft/assets, --assetIndex, 1.12, --accessToken{REDACTED}, --version, 1.12.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[13:32:01] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[13:32:01] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[13:32:01] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[13:32:01] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[13:32:01] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2768 for Minecraft 1.12.2 loading
[13:32:01] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_201, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre1.8.0_201
[13:32:01] [main/ERROR] [FML]: Apache Maven library folder was not in the format expected. Using default libraries directory.
[13:32:01] [main/ERROR] [FML]: Full: C:\Users\Wuppertaler93\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar
[13:32:01] [main/ERROR] [FML]: Trimmed: c:/users/wuppertaler93/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.5.3/
[13:32:01] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[13:32:01] [main/INFO] [FML]: Detected deobfuscated environment, loading log configs for colored console logs.
2019-02-03 13:32:02,563 main WARN Disabling terminal, you're running in an unsupported environment.
[13:32:02] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin), we are in deobf and it's a forge core plugin
[13:32:02] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin
[13:32:02] [main/INFO] [FML]: Searching C:\Forge\Forge 1.12.2\run\.\mods for mods
[13:32:02] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[13:32:02] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[13:32:02] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[13:32:02] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[13:32:02] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[13:32:02] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[13:32:02] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[13:32:02] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[13:32:02] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[13:32:04] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[13:32:04] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[13:32:04] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[13:32:04] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[13:32:04] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[13:32:04] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[13:32:04] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[13:32:05] [main/INFO] [minecraft/Minecraft]: Setting user: Player169
[13:32:08] [main/WARN] [minecraft/GameSettings]: Skipping bad option: lastServer:
[13:32:08] [main/INFO] [minecraft/Minecraft]: LWJGL Version: 2.9.4
[13:32:10] [main/INFO] [FML]: -- System Details --
Details:
	Minecraft Version: 1.12.2
	Operating System: Windows 7 (amd64) version 6.1
	Java Version: 1.8.0_201, Oracle Corporation
	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
	Memory: 864101536 bytes (824 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)
	JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
	IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
	FML: 
	Loaded coremods (and transformers): 
	GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 384.76' Renderer: 'GeForce GTX 960/PCIe/SSE2'
[13:32:10] [main/INFO] [FML]: MinecraftForge v14.23.5.2768 Initialized
[13:32:10] [main/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
[13:32:10] [main/INFO] [FML]: Replaced 1036 ore ingredients
[13:32:10] [main/INFO] [FML]: Searching C:\Forge\Forge 1.12.2\run\.\mods for mods
[13:32:12] [Thread-3/INFO] [FML]: Using sync timing. 200 frames of Display.update took 135881219 nanos
[13:32:12] [main/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
[13:32:12] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, nccstuff] at CLIENT
[13:32:12] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, nccstuff] at SERVER
[13:32:13] [main/INFO] [minecraft/SimpleReloadableResourceManager]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Ncc Stuff
[13:32:13] [main/INFO] [FML]: Processing ObjectHolder annotations
[13:32:13] [main/INFO] [FML]: Found 1168 ObjectHolder annotations
[13:32:13] [main/INFO] [FML]: Identifying ItemStackHolder annotations
[13:32:13] [main/INFO] [FML]: Found 0 ItemStackHolder annotations
[13:32:13] [main/INFO] [FML]: Configured a dormant chunk cache size of 0
[13:32:13] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[13:32:13] [main/INFO] [FML]: Applying holder lookups
[13:32:14] [main/INFO] [FML]: Holder lookups applied
[13:32:14] [main/INFO] [FML]: Applying holder lookups
[13:32:14] [main/INFO] [FML]: Holder lookups applied
[13:32:14] [main/INFO] [FML]: Applying holder lookups
[13:32:14] [main/INFO] [FML]: Holder lookups applied
[13:32:14] [main/INFO] [FML]: Applying holder lookups
[13:32:14] [main/INFO] [FML]: Holder lookups applied
[13:32:14] [main/INFO] [FML]: Injecting itemstacks
[13:32:14] [main/INFO] [FML]: Itemstack injection complete
[13:32:14] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: UP_TO_DATE Target: null
[13:32:34] [Sound Library Loader/INFO] [minecraft/SoundManager]: Starting up SoundSystem...
[13:32:34] [Thread-5/INFO] [minecraft/SoundManager]: Initializing LWJGL OpenAL
[13:32:34] [Thread-5/INFO] [minecraft/SoundManager]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[13:32:34] [Thread-5/INFO] [minecraft/SoundManager]: OpenAL initialized.
[13:32:35] [Sound Library Loader/INFO] [minecraft/SoundManager]: Sound engine started
[13:32:39] [main/ERROR] [FML]: Could not load vanilla model parent 'nccstuff:blocks/blockaloha' for 'net.minecraft.client.renderer.block.model.ModelBlock@21fca5d3
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model nccstuff:blocks/blockaloha with loader VanillaLoader.INSTANCE, skipping
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:161) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModelOrLogError(ModelLoaderRegistry.java:211) [ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader$VanillaModelWrapper.getTextures(ModelLoader.java:386) [ModelLoader$VanillaModelWrapper.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:171) [ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:302) [ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) [ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:151) [ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_201]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_201]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:25) [start/:?]
Caused by: java.io.FileNotFoundException: nccstuff:models/blocks/blockaloha.json
	at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:69) ~[FallbackResourceManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:334) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.access$1400(ModelLoader.java:115) ~[ModelLoader.class:?]
	at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:861) ~[ModelLoader$VanillaLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:157) ~[ModelLoaderRegistry.class:?]
	... 23 more
[13:32:39] [main/INFO] [FML]: Max texture size: 16384
[13:32:40] [main/INFO] [minecraft/TextureMap]: Created: 1024x1024 textures-atlas
[13:32:41] [main/ERROR] [FML]: Exception loading model for variant nccstuff:blockaloha#inventory for item "nccstuff:blockaloha", normal location exception: 
java.lang.IllegalStateException: vanilla model 'net.minecraft.client.renderer.block.model.ModelBlock@21fca5d3' can't have non-vanilla parent
	at net.minecraftforge.client.model.ModelLoader$VanillaModelWrapper.getTextures(ModelLoader.java:393) ~[ModelLoader$VanillaModelWrapper.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:171) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:302) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:151) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_201]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_201]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:25) [start/:?]
[13:32:41] [main/ERROR] [FML]: Exception loading model for variant nccstuff:blockaloha#inventory for item "nccstuff:blockaloha", blockstate location exception: 
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model nccstuff:blockaloha#inventory with loader VariantLoader.INSTANCE, skipping
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:161) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:296) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:151) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_201]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_201]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:25) [start/:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
	at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?]
	at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1175) ~[ModelLoader$VariantLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:157) ~[ModelLoaderRegistry.class:?]
	... 20 more
[13:32:42] [main/ERROR] [FML]: Parsing error loading recipe nccstuff:withernetherstar
com.google.gson.JsonSyntaxException: Unknown item 'minecraft:wither_star'
	at net.minecraftforge.common.crafting.CraftingHelper.getItemStackBasic(CraftingHelper.java:260) ~[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:202) ~[CraftingHelper.class:?]
	at net.minecraftforge.common.crafting.CraftingHelper.lambda$init$15(CraftingHelper.java:524) ~[CraftingHelper.class:?]
	at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:409) ~[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:822) ~[CraftingHelper.class:?]
	at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:668) ~[CraftingHelper.class:?]
	at java.util.ArrayList.forEach(Unknown Source) [?:1.8.0_201]
	at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:620) [CraftingHelper.class:?]
	at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
	at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:336) [FMLClientHandler.class:?]
	at net.minecraft.client.Minecraft.init(Minecraft.java:581) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_201]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_201]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:25) [start/:?]
[13:32:42] [main/INFO] [FML]: Applying holder lookups
[13:32:42] [main/INFO] [FML]: Holder lookups applied
[13:32:42] [main/INFO] [FML]: Injecting itemstacks
[13:32:42] [main/INFO] [FML]: Itemstack injection complete
[13:32:42] [main/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods
[13:32:42] [main/WARN] [minecraft/GameSettings]: Skipping bad option: lastServer:
[13:32:42] [main/INFO] [mojang/NarratorWindows]: Narrator library for x64 successfully loaded
[13:32:43] [Realms Notification Availability checker #1/INFO] [mojang/RealmsClient]: Could not authorize you against Realms server: Invalid session id
[13:32:47] [Server thread/INFO] [minecraft/IntegratedServer]: Starting integrated minecraft server version 1.12.2
[13:32:47] [Server thread/INFO] [minecraft/IntegratedServer]: Generating keypair
[13:32:47] [Server thread/INFO] [FML]: Injecting existing registry data into this server instance
[13:32:47] [Server thread/INFO] [FML]: Applying holder lookups
[13:32:47] [Server thread/INFO] [FML]: Holder lookups applied
[13:32:48] [Server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@9f71d2c)
[13:32:48] [Server thread/INFO] [minecraft/AdvancementList]: Loaded 488 advancements
[13:32:48] [Server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@9f71d2c)
[13:32:48] [Server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@9f71d2c)
[13:32:48] [Server thread/INFO] [minecraft/MinecraftServer]: Preparing start region for level 0
[13:32:49] [Server thread/INFO] [minecraft/MinecraftServer]: Preparing spawn area: 15%
[13:32:50] [Server thread/INFO] [minecraft/MinecraftServer]: Preparing spawn area: 86%
[13:32:51] [Server thread/INFO] [FML]: Unloading dimension -1
[13:32:51] [Server thread/INFO] [FML]: Unloading dimension 1
[13:32:51] [Server thread/INFO] [minecraft/IntegratedServer]: Changing view distance to 12, from 10
[13:32:52] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2
[13:32:52] [Netty Server IO #1/INFO] [FML]: Client protocol version 2
[13:32:52] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 5 mods : [email protected],[email protected],[email protected],[email protected],[email protected]
[13:32:52] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
[13:32:52] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
[13:32:52] [Server thread/INFO] [minecraft/PlayerList]: Player169[local:E:e07da844] logged in with entity id 316 at (-27.61293444254576, 68.0, 258.38607576636423)
[13:32:52] [Server thread/INFO] [minecraft/MinecraftServer]: Player169 joined the game
[13:32:52] [Server thread/INFO] [minecraft/MinecraftServer]: Player169 has made the advancement [Acquire Hardware]
[13:32:53] [Server thread/INFO] [minecraft/IntegratedServer]: Saving and pausing game...
[13:32:53] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'New World'/overworld
[13:32:54] [main/INFO] [minecraft/GuiNewChat]: [CHAT] Player169 has made the advancement [Acquire Hardware]
[13:32:54] [main/INFO] [minecraft/AdvancementList]: Loaded 50 advancements
[13:32:54] [Server thread/INFO] [minecraft/IntegratedServer]: Saving and pausing game...
[13:32:54] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'New World'/overworld
[13:32:54] [pool-2-thread-1/WARN] [mojang/YggdrasilMinecraftSessionService]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@2729a5f4[id=3247b050-58df-3a7e-91f5-44a3d807681c,name=Player169,properties={},legacy=false]
com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time
	at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:79) ~[YggdrasilAuthenticationService.class:?]
	at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:180) [YggdrasilMinecraftSessionService.class:?]
	at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:60) [YggdrasilMinecraftSessionService$1.class:?]
	at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:57) [YggdrasilMinecraftSessionService$1.class:?]
	at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3716) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2424) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2298) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2211) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache.get(LocalCache.java:4154) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:4158) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:5147) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:5153) [guava-21.0.jar:?]
	at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:170) [YggdrasilMinecraftSessionService.class:?]
	at net.minecraft.client.Minecraft.getProfileProperties(Minecraft.java:3181) [Minecraft.class:?]
	at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:138) [SkinManager$3.class:?]
	at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.8.0_201]
	at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_201]
	at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_201]
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_201]
	at java.lang.Thread.run(Unknown Source) [?:1.8.0_201]

 

Posted (edited)
2 hours ago, diesieben07 said:

Caused by: java.io.FileNotFoundException: nccstuff:models/blocks/blockaloha.json

when I rename the "models/block/blockaloha.json" into "models/blocks/blockaloha.json" works the item but the block does not work anymore :(
So I have somewhere another error when registering or so

Edited by Wuppertaler93
Posted
27 minutes ago, diesieben07 said:

Post updated console log.

[15:57:40] [main/INFO] [GradleStart]: Extra: []
[15:57:40] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Wuppertaler93/.gradle/caches/minecraft/assets, --assetIndex, 1.12, --accessToken{REDACTED}, --version, 1.12.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[15:57:40] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[15:57:40] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[15:57:40] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[15:57:40] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[15:57:40] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2768 for Minecraft 1.12.2 loading
[15:57:40] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_201, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre1.8.0_201
[15:57:40] [main/ERROR] [FML]: Apache Maven library folder was not in the format expected. Using default libraries directory.
[15:57:40] [main/ERROR] [FML]: Full: C:\Users\Wuppertaler93\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar
[15:57:40] [main/ERROR] [FML]: Trimmed: c:/users/wuppertaler93/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.5.3/
[15:57:41] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[15:57:41] [main/INFO] [FML]: Detected deobfuscated environment, loading log configs for colored console logs.
2019-02-03 15:57:41,996 main WARN Disabling terminal, you're running in an unsupported environment.
[15:57:42] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin), we are in deobf and it's a forge core plugin
[15:57:42] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin
[15:57:42] [main/INFO] [FML]: Searching C:\Forge\Forge 1.12.2\run\.\mods for mods
[15:57:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[15:57:42] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[15:57:42] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[15:57:42] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[15:57:42] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[15:57:42] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[15:57:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[15:57:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[15:57:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[15:57:43] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[15:57:43] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[15:57:43] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[15:57:44] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[15:57:44] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[15:57:44] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[15:57:44] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[15:57:44] [main/INFO] [minecraft/Minecraft]: Setting user: Player561
[15:57:49] [main/WARN] [minecraft/GameSettings]: Skipping bad option: lastServer:
[15:57:49] [main/INFO] [minecraft/Minecraft]: LWJGL Version: 2.9.4
[15:57:52] [main/INFO] [FML]: -- System Details --
Details:
	Minecraft Version: 1.12.2
	Operating System: Windows 7 (amd64) version 6.1
	Java Version: 1.8.0_201, Oracle Corporation
	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
	Memory: 856423560 bytes (816 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)
	JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
	IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
	FML: 
	Loaded coremods (and transformers): 
	GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 384.76' Renderer: 'GeForce GTX 960/PCIe/SSE2'
[15:57:52] [main/INFO] [FML]: MinecraftForge v14.23.5.2768 Initialized
[15:57:52] [main/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
[15:57:52] [main/INFO] [FML]: Replaced 1036 ore ingredients
[15:57:53] [main/INFO] [FML]: Searching C:\Forge\Forge 1.12.2\run\.\mods for mods
[15:57:54] [main/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
[15:57:55] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, nccstuff] at CLIENT
[15:57:55] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, nccstuff] at SERVER
[15:57:55] [Thread-3/INFO] [FML]: Using sync timing. 200 frames of Display.update took 319139764 nanos
[15:57:55] [main/INFO] [minecraft/SimpleReloadableResourceManager]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Ncc Stuff
[15:57:55] [main/INFO] [FML]: Processing ObjectHolder annotations
[15:57:55] [main/INFO] [FML]: Found 1168 ObjectHolder annotations
[15:57:55] [main/INFO] [FML]: Identifying ItemStackHolder annotations
[15:57:55] [main/INFO] [FML]: Found 0 ItemStackHolder annotations
[15:57:56] [main/INFO] [FML]: Configured a dormant chunk cache size of 0
[15:57:56] [main/INFO] [FML]: Applying holder lookups
[15:57:56] [main/INFO] [FML]: Holder lookups applied
[15:57:56] [main/INFO] [FML]: Applying holder lookups
[15:57:56] [main/INFO] [FML]: Holder lookups applied
[15:57:56] [main/INFO] [FML]: Applying holder lookups
[15:57:56] [main/INFO] [FML]: Holder lookups applied
[15:57:56] [main/INFO] [FML]: Applying holder lookups
[15:57:56] [main/INFO] [FML]: Holder lookups applied
[15:57:56] [main/INFO] [FML]: Injecting itemstacks
[15:57:56] [main/INFO] [FML]: Itemstack injection complete
[15:57:56] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[15:57:57] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: UP_TO_DATE Target: null
[15:57:59] [Sound Library Loader/INFO] [minecraft/SoundManager]: Starting up SoundSystem...
[15:58:00] [Thread-5/INFO] [minecraft/SoundManager]: Initializing LWJGL OpenAL
[15:58:00] [Thread-5/INFO] [minecraft/SoundManager]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[15:58:00] [Thread-5/INFO] [minecraft/SoundManager]: OpenAL initialized.
[15:58:00] [Sound Library Loader/INFO] [minecraft/SoundManager]: Sound engine started
[15:58:05] [main/INFO] [FML]: Max texture size: 16384
[15:58:05] [main/INFO] [minecraft/TextureMap]: Created: 1024x1024 textures-atlas
[15:58:06] [main/ERROR] [FML]: Exception loading model for variant nccstuff:blockaloha#normal for blockstate "nccstuff:blockaloha"
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model nccstuff:blockaloha#normal with loader VariantLoader.INSTANCE, skipping
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:161) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:235) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:153) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:223) ~[ModelLoader.class:?]
	at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:150) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_201]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_201]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_201]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_201]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:25) [start/:?]
Caused by: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model nccstuff:block/blockaloha with loader VanillaLoader.INSTANCE, skipping
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:161) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader$WeightedRandomModel.<init>(ModelLoader.java:658) ~[ModelLoader$WeightedRandomModel.class:?]
	at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1176) ~[ModelLoader$VariantLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:157) ~[ModelLoaderRegistry.class:?]
	... 21 more
Caused by: java.io.FileNotFoundException: nccstuff:models/block/blockaloha.json
	at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:69) ~[FallbackResourceManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:334) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.access$1400(ModelLoader.java:115) ~[ModelLoader.class:?]
	at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:861) ~[ModelLoader$VanillaLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:157) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader$WeightedRandomModel.<init>(ModelLoader.java:658) ~[ModelLoader$WeightedRandomModel.class:?]
	at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1176) ~[ModelLoader$VariantLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:157) ~[ModelLoaderRegistry.class:?]
	... 21 more
[15:58:07] [main/INFO] [FML]: Applying holder lookups
[15:58:07] [main/INFO] [FML]: Holder lookups applied
[15:58:07] [main/INFO] [FML]: Injecting itemstacks
[15:58:07] [main/INFO] [FML]: Itemstack injection complete
[15:58:07] [main/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods
[15:58:07] [main/WARN] [minecraft/GameSettings]: Skipping bad option: lastServer:
[15:58:07] [main/INFO] [mojang/NarratorWindows]: Narrator library for x64 successfully loaded
[15:58:09] [Realms Notification Availability checker #1/INFO] [mojang/RealmsClient]: Could not authorize you against Realms server: Invalid session id
[15:58:11] [Server thread/INFO] [minecraft/IntegratedServer]: Starting integrated minecraft server version 1.12.2
[15:58:11] [Server thread/INFO] [minecraft/IntegratedServer]: Generating keypair
[15:58:11] [Server thread/INFO] [FML]: Injecting existing registry data into this server instance
[15:58:11] [Server thread/INFO] [FML]: Applying holder lookups
[15:58:11] [Server thread/INFO] [FML]: Holder lookups applied
[15:58:11] [Server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@71f2b154)
[15:58:12] [Server thread/INFO] [minecraft/AdvancementList]: Loaded 488 advancements
[15:58:12] [Server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@71f2b154)
[15:58:12] [Server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@71f2b154)
[15:58:12] [Server thread/INFO] [minecraft/MinecraftServer]: Preparing start region for level 0
[15:58:13] [Server thread/INFO] [minecraft/MinecraftServer]: Preparing spawn area: 21%
[15:58:14] [Server thread/INFO] [FML]: Unloading dimension -1
[15:58:14] [Server thread/INFO] [FML]: Unloading dimension 1
[15:58:14] [Server thread/INFO] [minecraft/IntegratedServer]: Changing view distance to 12, from 10
[15:58:16] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2
[15:58:16] [Netty Server IO #1/INFO] [FML]: Client protocol version 2
[15:58:16] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 5 mods : [email protected],[email protected],[email protected],[email protected],[email protected]
[15:58:16] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
[15:58:16] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
[15:58:16] [Server thread/INFO] [minecraft/PlayerList]: Player561[local:E:ccac7730] logged in with entity id 304 at (-25.67161576395842, 68.0, 258.07075163195043)
[15:58:16] [Server thread/INFO] [minecraft/MinecraftServer]: Player561 joined the game
[15:58:16] [Server thread/INFO] [minecraft/MinecraftServer]: Player561 has made the advancement [Acquire Hardware]
[15:58:16] [Server thread/INFO] [minecraft/MinecraftServer]: Player561 has made the advancement [Diamonds!]
[15:58:18] [Server thread/INFO] [minecraft/IntegratedServer]: Saving and pausing game...
[15:58:18] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'New World'/overworld
[15:58:18] [main/INFO] [minecraft/GuiNewChat]: [CHAT] Player561 has made the advancement [Acquire Hardware]
[15:58:18] [main/INFO] [minecraft/GuiNewChat]: [CHAT] Player561 has made the advancement [Diamonds!]
[15:58:18] [pool-2-thread-1/WARN] [mojang/YggdrasilMinecraftSessionService]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@22570425[id=a87d2476-ff88-3799-a681-9605d7180f4f,name=Player561,properties={},legacy=false]
com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time
	at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:79) ~[YggdrasilAuthenticationService.class:?]
	at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:180) [YggdrasilMinecraftSessionService.class:?]
	at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:60) [YggdrasilMinecraftSessionService$1.class:?]
	at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:57) [YggdrasilMinecraftSessionService$1.class:?]
	at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3716) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2424) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2298) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2211) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache.get(LocalCache.java:4154) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:4158) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:5147) [guava-21.0.jar:?]
	at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:5153) [guava-21.0.jar:?]
	at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:170) [YggdrasilMinecraftSessionService.class:?]
	at net.minecraft.client.Minecraft.getProfileProperties(Minecraft.java:3181) [Minecraft.class:?]
	at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:138) [SkinManager$3.class:?]
	at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.8.0_201]
	at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_201]
	at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_201]
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_201]
	at java.lang.Thread.run(Unknown Source) [?:1.8.0_201]
[15:58:18] [main/INFO] [minecraft/AdvancementList]: Loaded 64 advancements
[15:58:22] [main/INFO] [minecraft/ChunkProviderClient]: Warning: Clientside chunk ticking took 191 ms

 

Posted (edited)
8 minutes ago, diesieben07 said:

 

that's what i said earlier, the mistake is the other way round: /

 

1 hour ago, Wuppertaler93 said:

when I rename the "models/block/blockaloha.json" into "models/blocks/blockaloha.json" works the item but the block does not work anymore :(
So I have somewhere another error when registering or so

EDIT:

or do I need for each block both have directories?

"models/block/"

and

"models/blocks/"

 

Edited by Wuppertaler93
Posted

Just specify the right directory when registering your item model. Minecraft used to use “blocks”, but from 1.13 they use “block”. Many mods have already started using “block”

  • Like 1

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

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



×
×
  • Create New...

Important Information

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