Jump to content

Basic Mob Entinty code Crashed Minecraft


clowcadia

Recommended Posts

Hi Guys, I figured Id make a new topic since its a different issue. so i put together what i could learning from outdated tutorials when i am using 1.11 forge maybe someone can point out what is wrong with my code when i followed outdated advice from the tutorial.

 

com.clowcadia.mod (main)

ClowcadianMod.java

package com.clowcadia.mod;

//import net.minecraft.init.Blocks;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.Mod.Instance;
import net.minecraftforge.fml.common.Mod.Metadata;
import net.minecraftforge.fml.common.ModMetadata;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;

@Mod(modid = ClowcadiaMod.MODID, version = ClowcadiaMod.VERSION)
public class ClowcadiaMod
{
    public static final String MODID = "clowcadiamod";
    public static final String VERSION = "1.0";
    
    @Metadata
    public static ModMetadata meta;
    
    @Instance
    public static ClowcadiaMod modInstance;
    
    @EventHandler
    public void PreLoad(FMLPreInitializationEvent PreEvent)
    {
    	
    }
    
    @EventHandler
    public void load(FMLInitializationEvent event)
    {
    	
    }
    
    @EventHandler
    public void PostLoad(FMLPostInitializationEvent PostEvent)
    {
    	
    }
}

 

com.clowcadia.mob

EntityClowcadia.java

package com.clowcadia.mob;

import net.minecraft.util.ResourceLocation;
import net.minecraftforge.fml.common.Mod.Instance;
import net.minecraftforge.fml.common.registry.EntityRegistry;
import com.clowcadia.mod.ClowcadiaMod;

public class EntityClowcadia {
	
	//public static final String MODID = "clowcadiamob";
	//new ResourceLocation(clowcadiamod, clowcadiamob);
	
	@Instance
    public static EntityClowcadia modInstance;
	
	public static void mainRegistry()
	{
		registerEntity();
	}
	
	public static void registerEntity()
	{
		createEntity(EntityClowcadiaMob.class, "Clowcadia Mob",0x42f462,0x298e3b);
	}
	
	public static void createEntity(Class entityClass, String entityName, int solidColor, int spotColor)
	{		
		EntityRegistry.registerModEntity(new ResourceLocation(ClowcadiaMod.MODID,entityName), entityClass, entityName, 0, ClowcadiaMod.modInstance, 64, 1, true, solidColor, spotColor);
		
	}

	

}

EntityClowcadiaMob.java

package com.clowcadia.mob;

import net.minecraft.entity.monster.EntityMob;
import net.minecraft.world.World;

public class EntityClowcadiaMob extends EntityMob{

	public EntityClowcadiaMob(World worldIn) {
		super(worldIn);
		// TODO Auto-generated constructor stub
	}

}

 

 

Crash

2017-02-15 17:18:05,933 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2017-02-15 17:18:05,935 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[17:18:05] [main/INFO] [GradleStart]: Extra: []
[17:18:06] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Andre/.gradle/caches/minecraft/assets, --assetIndex, 1.11, --accessToken{REDACTED}, --version, 1.11.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[17:18:06] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[17:18:06] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[17:18:06] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[17:18:06] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[17:18:06] [main/INFO] [FML]: Forge Mod Loader version 13.20.0.2228 for Minecraft 1.11.2 loading
[17:18:06] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_121, running on Windows 10:amd64:10.0, installed at C:\Program Files\JDK
[17:18:06] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[17:18:06] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[17:18:06] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[17:18:06] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[17:18:06] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[17:18:06] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[17:18:06] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[17:18:06] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[17:18:06] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[17:18:06] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[17:18:06] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[17:18:08] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[17:18:08] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[17:18:08] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[17:18:08] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[17:18:08] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[17:18:08] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[17:18:08] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
2017-02-15 17:18:09,644 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2017-02-15 17:18:09,681 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2017-02-15 17:18:09,683 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[17:18:10] [Client thread/INFO]: Setting user: Player933
[17:18:15] [Client thread/INFO]: LWJGL Version: 2.9.4
[17:18:16] [Client thread/INFO]: [STDOUT]: ---- Minecraft Crash Report ----
// Oops.

Time: 2/15/17 5:18 PM
Description: Loading screen debug info

This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- System Details --
Details:
	Minecraft Version: 1.11.2
	Operating System: Windows 10 (amd64) version 10.0
	Java Version: 1.8.0_121, Oracle Corporation
	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
	Memory: 413820416 bytes (394 MB) / 713555968 bytes (680 MB) up to 1879048192 bytes (1792 MB)
	JVM Flags: 0 total; 
	IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
	FML: 
	Loaded coremods (and transformers): 
	GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 369.09' Renderer: 'GeForce 920MX/PCIe/SSE2'
[17:18:16] [Client thread/INFO] [FML]: MinecraftForge v13.20.0.2228 Initialized
[17:18:16] [Client thread/INFO] [FML]: Replaced 232 ore recipes
[17:18:17] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[17:18:17] [Client thread/INFO] [FML]: Searching C:\Users\Andre\OneDrive\Documents\forge dev\run\mods for mods
[17:18:17] [Client thread/INFO] [clowcadiamod]: Mod clowcadiamod is missing the required element 'name'. Substituting clowcadiamod
[17:18:18] [Client thread/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
[17:18:19] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, clowcadiamod] at CLIENT
[17:18:19] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, clowcadiamod] at SERVER
[17:18:20] [Client thread/ERROR] [FML]: Fatal errors were detected during the transition from CONSTRUCTING to PREINITIALIZATION. Loading cannot continue
[17:18:20] [Client thread/ERROR] [FML]: 
	States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
	UC	minecraft{1.11.2} [Minecraft] (minecraft.jar) 
	UC	mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) 
	UC	FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.11.2-13.20.0.2228.jar) 
	UC	forge{13.20.0.2228} [Minecraft Forge] (forgeSrc-1.11.2-13.20.0.2228.jar) 
	UE	clowcadiamod{1.0} [clowcadiamod] (bin) 
[17:18:20] [Client thread/ERROR] [FML]: The following problems were captured during this phase
[17:18:20] [Client thread/ERROR] [FML]: Caught exception from clowcadiamod (clowcadiamod)
java.lang.IllegalArgumentException: Can not set static com.clowcadia.mob.EntityClowcadia field com.clowcadia.mob.EntityClowcadia.modInstance to com.clowcadia.mod.ClowcadiaMod
	at sun.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(Unknown Source) ~[?:1.8.0_121]
	at sun.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(Unknown Source) ~[?:1.8.0_121]
	at sun.reflect.UnsafeStaticObjectFieldAccessorImpl.set(Unknown Source) ~[?:1.8.0_121]
	at java.lang.reflect.Field.set(Unknown Source) ~[?:1.8.0_121]
	at net.minecraftforge.fml.common.FMLModContainer.parseSimpleFieldAnnotation(FMLModContainer.java:530) ~[forgeSrc-1.11.2-13.20.0.2228.jar:?]
	at net.minecraftforge.fml.common.FMLModContainer.processFieldAnnotations(FMLModContainer.java:445) ~[forgeSrc-1.11.2-13.20.0.2228.jar:?]
	at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:624) ~[forgeSrc-1.11.2-13.20.0.2228.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_121]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_121]
	at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?]
	at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?]
	at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?]
	at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?]
	at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?]
	at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:246) ~[forgeSrc-1.11.2-13.20.0.2228.jar:?]
	at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:224) ~[forgeSrc-1.11.2-13.20.0.2228.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_121]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_121]
	at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?]
	at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?]
	at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?]
	at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?]
	at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?]
	at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:147) [LoadController.class:?]
	at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:563) [Loader.class:?]
	at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:229) [FMLClientHandler.class:?]
	at net.minecraft.client.Minecraft.init(Minecraft.java:478) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:387) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_121]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_121]
	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_121]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_121]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:26) [start/:?]
[17:18:20] [Client thread/INFO] [STDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:600]: ---- Minecraft Crash Report ----
// Would you like a cupcake?

Time: 2/15/17 5:18 PM
Description: There was a severe problem during mod loading that has caused the game to fail

net.minecraftforge.fml.common.LoaderExceptionModCrash: Caught exception from clowcadiamod (clowcadiamod)
Caused by: java.lang.IllegalArgumentException: Can not set static com.clowcadia.mob.EntityClowcadia field com.clowcadia.mob.EntityClowcadia.modInstance to com.clowcadia.mod.ClowcadiaMod
	at sun.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(Unknown Source)
	at sun.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(Unknown Source)
	at sun.reflect.UnsafeStaticObjectFieldAccessorImpl.set(Unknown Source)
	at java.lang.reflect.Field.set(Unknown Source)
	at net.minecraftforge.fml.common.FMLModContainer.parseSimpleFieldAnnotation(FMLModContainer.java:530)
	at net.minecraftforge.fml.common.FMLModContainer.processFieldAnnotations(FMLModContainer.java:445)
	at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:624)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
	at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
	at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
	at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
	at com.google.common.eventbus.EventBus.post(EventBus.java:275)
	at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:246)
	at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:224)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
	at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
	at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
	at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
	at com.google.common.eventbus.EventBus.post(EventBus.java:275)
	at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:147)
	at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:563)
	at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:229)
	at net.minecraft.client.Minecraft.init(Minecraft.java:478)
	at net.minecraft.client.Minecraft.run(Minecraft.java:387)
	at net.minecraft.client.main.Main.main(Main.java:118)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97)
	at GradleStart.main(GradleStart.java:26)


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- System Details --
Details:
	Minecraft Version: 1.11.2
	Operating System: Windows 10 (amd64) version 10.0
	Java Version: 1.8.0_121, Oracle Corporation
	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
	Memory: 566918952 bytes (540 MB) / 755499008 bytes (720 MB) up to 1879048192 bytes (1792 MB)
	JVM Flags: 0 total; 
	IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
	FML: MCP 9.38 Powered by Forge 13.20.0.2228 5 mods loaded, 5 mods active
	States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
	UC	minecraft{1.11.2} [Minecraft] (minecraft.jar) 
	UC	mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) 
	UC	FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.11.2-13.20.0.2228.jar) 
	UC	forge{13.20.0.2228} [Minecraft Forge] (forgeSrc-1.11.2-13.20.0.2228.jar) 
	UE	clowcadiamod{1.0} [clowcadiamod] (bin) 
	Loaded coremods (and transformers): 
	GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 369.09' Renderer: 'GeForce 920MX/PCIe/SSE2'
[17:18:20] [Client thread/INFO] [STDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:600]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Andre\OneDrive\Documents\forge dev\run\.\crash-reports\crash-2017-02-15_17.18.20-client.txt

 

Edited by clowcadia
syntax hightlighting
Link to comment
Share on other sites

If it crashes, always post the crash. Always.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

1 minute ago, clowcadia said:

Updated first post with crash

Diesieben already found the problem.

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.

Link to comment
Share on other sites

So i edited the code some what and still no spawn egg, have no idea what i am doing

package com.clowcadia.mob;

//import net.minecraft.entity.EnumCreatureType;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.Instance;
import net.minecraftforge.fml.common.registry.EntityRegistry;
//import com.clowcadia.mod.ClowcadiaMod;
@Mod(modid = EntityClowcadia.MODID, version = EntityClowcadia.VERSION)
public class EntityClowcadia {
	
	public static final String MODID = "clowcadiamob";
	public static final String VERSION = "1.0";
	//new ResourceLocation(clowcadiamod, clowcadiamob);
	
	@Instance
    public static EntityClowcadia modInstance;
	
	public static void mainRegistry()
	{
		registerEntity();
	}
	
	public static void registerEntity()
	{
		createEntity(EntityClowcadiaMob.class, "clowcadia",0x42f462,0x298e3b);
	
	}
	
	public static void createEntity(Class entityClass, String entityName, int solidColor, int spotColor)
	{		
		EntityRegistry.registerModEntity(new ResourceLocation(EntityClowcadia.MODID,entityName), entityClass, entityName, 0, EntityClowcadia.modInstance, 64, 1, true, solidColor, spotColor);
		EntityRegistry.registerEgg(new ResourceLocation(EntityClowcadia.MODID,entityName),solidColor, spotColor);
		//EntityRegistry.addSpawn(entityClass, 6, 1, 5, EnumCreatureType.CREATURE,); 
		//EntityRegistry.registerModEntity();
	}

	

}

 

Link to comment
Share on other sites

Your code never gets called because you never use the FMLPre/PostInitializationEvent or the FMLInitializationEvent. Or any other mod life cycle event.

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.

Link to comment
Share on other sites

Ok looked further in the tutorial somethings i missed, yet still no egg

package com.clowcadia.mob;

import net.minecraft.entity.EntityList;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.Mod.Instance;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.fml.common.registry.EntityRegistry;

@Mod(modid = EntityClowcadia.MODID, version = EntityClowcadia.VERSION)
public class EntityClowcadia {
	
	public static final String MODID = "clowcadiamob";
	public static final String VERSION = "1.0";
	
	@Instance
    public static EntityClowcadia modInstance;
	
	@EventHandler
    public void PreLoad(FMLPreInitializationEvent PreEvent)
    {
		mainRegistry();
    }
    
    @EventHandler
    public void load(FMLInitializationEvent event)
    {
    	
    }
    
    @EventHandler
    public void PostLoad(FMLPostInitializationEvent PostEvent)
    {
    	
    }
	
	public static void mainRegistry()
	{
		
	}
	
	public static void registerEntity()
	{
		createEntity(EntityClowcadiaMob.class, "clowcadia",0x42f462,0x298e3b);
	
	}
	
	public static void createEntity(Class entityClass, String entityName, int solidColor, int spotColor)
	{		
		EntityRegistry.registerModEntity(new ResourceLocation(EntityClowcadia.MODID,entityName), entityClass, entityName, 0, EntityClowcadia.modInstance, 64, 1, true, solidColor, spotColor);
		EntityRegistry.registerEgg(new ResourceLocation(EntityClowcadia.MODID,entityName),solidColor, spotColor);
		createEgg(entityName,solidColor,spotColor);
	}
	public static void createEgg(String entityName,int solidColor,int spotColor)
	{
		EntityList.ENTITY_EGGS.put(new ResourceLocation(EntityClowcadia.MODID,entityName), new EntityList.EntityEggInfo(new ResourceLocation(EntityClowcadia.MODID,entityName), solidColor, spotColor));
	}

	

}

 

Link to comment
Share on other sites

Ok done some more editing but now launching it giving me a crash

 

package com.clowcadia.mob;

import net.minecraft.entity.EntityList;
import net.minecraft.entity.EnumCreatureType;
import net.minecraft.world.biome.Biome;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.Mod.Instance;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.fml.common.registry.EntityRegistry;

@Mod(modid = EntityClowcadia.MODID, version = EntityClowcadia.VERSION)
public class EntityClowcadia {
	
	public static final String MODID = "clowcadiamob";
	public static final String VERSION = "1.0";
	
	@Instance
    public static EntityClowcadia modInstance;
	
	@EventHandler
    public void PreLoad(FMLPreInitializationEvent PreEvent)
    {
		mainRegistry();
    }
    
    @EventHandler
    public void load(FMLInitializationEvent event)
    {
    	
    }
    
    @EventHandler
    public void PostLoad(FMLPostInitializationEvent PostEvent)
    {
    	
    }
	
	public static void mainRegistry()
	{
		registerEntity();
	}
	
	public static void registerEntity()
	{
		createEntity(EntityClowcadiaMob.class, "clowcadia",1,2);
	
	}
	
	public static void createEntity(Class entityClass, String entityName, int solidColor, int spotColor)
	{		
		EntityRegistry.registerModEntity(new ResourceLocation(EntityClowcadia.MODID,entityName), entityClass, entityName, 0, EntityClowcadia.modInstance, 64, 1, true, solidColor, spotColor);
		EntityRegistry.registerEgg(new ResourceLocation(EntityClowcadia.MODID,entityName),solidColor, spotColor);
		//EntityRegistry.addSpawn(new ResourceLocation(EntityClowcadia.MODID,entityName),2,0,1,EnumCreatureType.CREATURE,Biome.);
		//createEgg(entityName,solidColor,spotColor);
	}
	public static void createEgg(String entityName,int solidColor,int spotColor)
	{
		EntityList.ENTITY_EGGS.put(new ResourceLocation(EntityClowcadia.MODID), new EntityList.EntityEggInfo(new ResourceLocation(EntityClowcadia.MODID), solidColor, spotColor));
	}

	

}

Crash

2017-02-15 23:38:25,587 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2017-02-15 23:38:25,589 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[23:38:25] [main/INFO] [GradleStart]: Extra: []
[23:38:25] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Andre/.gradle/caches/minecraft/assets, --assetIndex, 1.11, --accessToken{REDACTED}, --version, 1.11.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[23:38:25] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[23:38:25] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[23:38:25] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[23:38:25] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[23:38:25] [main/INFO] [FML]: Forge Mod Loader version 13.20.0.2228 for Minecraft 1.11.2 loading
[23:38:25] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_121, running on Windows 10:amd64:10.0, installed at C:\Program Files\JDK
[23:38:25] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[23:38:25] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[23:38:25] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[23:38:25] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[23:38:25] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[23:38:25] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[23:38:25] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[23:38:25] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[23:38:25] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[23:38:25] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[23:38:26] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[23:38:28] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[23:38:28] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[23:38:28] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[23:38:29] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[23:38:29] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[23:38:29] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[23:38:29] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
2017-02-15 23:38:30,083 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2017-02-15 23:38:30,126 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2017-02-15 23:38:30,128 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[23:38:30] [Client thread/INFO]: Setting user: Player954
[23:38:36] [Client thread/WARN]: Skipping bad option: lastServer:
[23:38:36] [Client thread/INFO]: LWJGL Version: 2.9.4
[23:38:38] [Client thread/INFO]: [STDOUT]: ---- Minecraft Crash Report ----
// Quite honestly, I wouldn't worry myself about that.

Time: 2/15/17 11:38 PM
Description: Loading screen debug info

This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- System Details --
Details:
	Minecraft Version: 1.11.2
	Operating System: Windows 10 (amd64) version 10.0
	Java Version: 1.8.0_121, Oracle Corporation
	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
	Memory: 429070680 bytes (409 MB) / 760741888 bytes (725 MB) up to 1879048192 bytes (1792 MB)
	JVM Flags: 0 total; 
	IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
	FML: 
	Loaded coremods (and transformers): 
	GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 369.09' Renderer: 'GeForce 920MX/PCIe/SSE2'
[23:38:38] [Client thread/INFO] [FML]: MinecraftForge v13.20.0.2228 Initialized
[23:38:38] [Client thread/INFO] [FML]: Replaced 232 ore recipes
[23:38:39] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[23:38:39] [Client thread/INFO] [FML]: Searching C:\Users\Andre\OneDrive\Documents\forge dev\run\mods for mods
[23:38:39] [Client thread/INFO] [clowcadiamob]: Mod clowcadiamob is missing the required element 'name'. Substituting clowcadiamob
[23:38:39] [Client thread/INFO] [clowcadiamod]: Mod clowcadiamod is missing the required element 'name'. Substituting clowcadiamod
[23:38:41] [Client thread/INFO] [FML]: Forge Mod Loader has identified 6 mods to load
[23:38:42] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, clowcadiamob, clowcadiamod] at CLIENT
[23:38:42] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, clowcadiamob, clowcadiamod] at SERVER
[23:38:43] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:clowcadiamob, FMLFileResourcePack:clowcadiamod
[23:38:43] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[23:38:43] [Client thread/INFO] [FML]: Found 444 ObjectHolder annotations
[23:38:43] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
[23:38:43] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
[23:38:43] [Client thread/INFO] [FML]: Applying holder lookups
[23:38:43] [Client thread/INFO] [FML]: Holder lookups applied
[23:38:43] [Client thread/INFO] [FML]: Applying holder lookups
[23:38:43] [Client thread/INFO] [FML]: Holder lookups applied
[23:38:43] [Client thread/INFO] [FML]: Applying holder lookups
[23:38:43] [Client thread/INFO] [FML]: Holder lookups applied
[23:38:43] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[23:38:43] [Client thread/INFO] [FML]: Applying holder lookups
[23:38:43] [Client thread/INFO] [FML]: Holder lookups applied
[23:38:43] [Client thread/INFO] [FML]: Injecting itemstacks
[23:38:43] [Client thread/INFO] [FML]: Itemstack injection complete
[23:38:43] [Client thread/ERROR] [FML]: Fatal errors were detected during the transition from PREINITIALIZATION to INITIALIZATION. Loading cannot continue
[23:38:43] [Client thread/ERROR] [FML]: 
	States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
	UCH	minecraft{1.11.2} [Minecraft] (minecraft.jar) 
	UCH	mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) 
	UCH	FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.11.2-13.20.0.2228.jar) 
	UCH	forge{13.20.0.2228} [Minecraft Forge] (forgeSrc-1.11.2-13.20.0.2228.jar) 
	UCE	clowcadiamob{1.0} [clowcadiamob] (bin) 
	UCH	clowcadiamod{1.0} [clowcadiamod] (bin) 
[23:38:43] [Client thread/ERROR] [FML]: The following problems were captured during this phase
[23:38:43] [Client thread/ERROR] [FML]: Caught exception from clowcadiamob (clowcadiamob)
java.lang.RuntimeException: Duplicate stat id: "TranslatableComponent{key='stat.entityKill', args=[TranslatableComponent{key='entity.clowcadia.name', args=[], siblings=[], style=Style{hasParent=true, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null, insertion=null}}], siblings=[], style=Style{hasParent=false, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null, insertion=null}}" and "TranslatableComponent{key='stat.entityKill', args=[TranslatableComponent{key='entity.clowcadia.name', args=[], siblings=[], style=Style{hasParent=true, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null, insertion=null}}], siblings=[], style=Style{hasParent=false, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null, insertion=null}}" at id stat.killEntity.clowcadia
	at net.minecraft.stats.StatBase.registerStat(StatBase.java:111) ~[forgeSrc-1.11.2-13.20.0.2228.jar:?]
	at net.minecraft.stats.StatList.getStatKillEntity(StatList.java:319) ~[forgeSrc-1.11.2-13.20.0.2228.jar:?]
	at net.minecraft.entity.EntityList$EntityEggInfo.<init>(EntityList.java:424) ~[forgeSrc-1.11.2-13.20.0.2228.jar:?]
	at net.minecraftforge.fml.common.registry.EntityRegistry.registerEgg(EntityRegistry.java:220) ~[forgeSrc-1.11.2-13.20.0.2228.jar:?]
	at com.clowcadia.mob.EntityClowcadia.createEntity(EntityClowcadia.java:56) ~[bin/:?]
	at com.clowcadia.mob.EntityClowcadia.registerEntity(EntityClowcadia.java:49) ~[bin/:?]
	at com.clowcadia.mob.EntityClowcadia.mainRegistry(EntityClowcadia.java:44) ~[bin/:?]
	at com.clowcadia.mob.EntityClowcadia.PreLoad(EntityClowcadia.java:27) ~[bin/:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_121]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_121]
	at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:643) ~[forgeSrc-1.11.2-13.20.0.2228.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_121]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_121]
	at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?]
	at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?]
	at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?]
	at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?]
	at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?]
	at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:246) ~[forgeSrc-1.11.2-13.20.0.2228.jar:?]
	at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:224) ~[forgeSrc-1.11.2-13.20.0.2228.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_121]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_121]
	at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?]
	at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?]
	at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?]
	at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?]
	at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?]
	at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:147) [LoadController.class:?]
	at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:628) [Loader.class:?]
	at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:268) [FMLClientHandler.class:?]
	at net.minecraft.client.Minecraft.init(Minecraft.java:478) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:387) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_121]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_121]
	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_121]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_121]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:26) [start/:?]
[23:38:43] [Forge Version Check/INFO] [ForgeVersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[23:38:43] [Client thread/INFO] [STDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:600]: ---- Minecraft Crash Report ----
// This doesn't make any sense!

Time: 2/15/17 11:38 PM
Description: There was a severe problem during mod loading that has caused the game to fail

net.minecraftforge.fml.common.LoaderExceptionModCrash: Caught exception from clowcadiamob (clowcadiamob)
Caused by: java.lang.RuntimeException: Duplicate stat id: "TranslatableComponent{key='stat.entityKill', args=[TranslatableComponent{key='entity.clowcadia.name', args=[], siblings=[], style=Style{hasParent=true, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null, insertion=null}}], siblings=[], style=Style{hasParent=false, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null, insertion=null}}" and "TranslatableComponent{key='stat.entityKill', args=[TranslatableComponent{key='entity.clowcadia.name', args=[], siblings=[], style=Style{hasParent=true, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null, insertion=null}}], siblings=[], style=Style{hasParent=false, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null, insertion=null}}" at id stat.killEntity.clowcadia
	at net.minecraft.stats.StatBase.registerStat(StatBase.java:111)
	at net.minecraft.stats.StatList.getStatKillEntity(StatList.java:319)
	at net.minecraft.entity.EntityList$EntityEggInfo.<init>(EntityList.java:424)
	at net.minecraftforge.fml.common.registry.EntityRegistry.registerEgg(EntityRegistry.java:220)
	at com.clowcadia.mob.EntityClowcadia.createEntity(EntityClowcadia.java:56)
	at com.clowcadia.mob.EntityClowcadia.registerEntity(EntityClowcadia.java:49)
	at com.clowcadia.mob.EntityClowcadia.mainRegistry(EntityClowcadia.java:44)
	at com.clowcadia.mob.EntityClowcadia.PreLoad(EntityClowcadia.java:27)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:643)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
	at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
	at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
	at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
	at com.google.common.eventbus.EventBus.post(EventBus.java:275)
	at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:246)
	at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:224)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
	at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
	at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
	at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
	at com.google.common.eventbus.EventBus.post(EventBus.java:275)
	at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:147)
	at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:628)
	at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:268)
	at net.minecraft.client.Minecraft.init(Minecraft.java:478)
	at net.minecraft.client.Minecraft.run(Minecraft.java:387)
	at net.minecraft.client.main.Main.main(Main.java:118)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97)
	at GradleStart.main(GradleStart.java:26)


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- System Details --
Details:
	Minecraft Version: 1.11.2
	Operating System: Windows 10 (amd64) version 10.0
	Java Version: 1.8.0_121, Oracle Corporation
	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
	Memory: 527931880 bytes (503 MB) / 760741888 bytes (725 MB) up to 1879048192 bytes (1792 MB)
	JVM Flags: 0 total; 
	IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
	FML: MCP 9.38 Powered by Forge 13.20.0.2228 6 mods loaded, 6 mods active
	States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
	UCH	minecraft{1.11.2} [Minecraft] (minecraft.jar) 
	UCH	mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) 
	UCH	FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.11.2-13.20.0.2228.jar) 
	UCH	forge{13.20.0.2228} [Minecraft Forge] (forgeSrc-1.11.2-13.20.0.2228.jar) 
	UCE	clowcadiamob{1.0} [clowcadiamob] (bin) 
	UCH	clowcadiamod{1.0} [clowcadiamod] (bin) 
	Loaded coremods (and transformers): 
	GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 369.09' Renderer: 'GeForce 920MX/PCIe/SSE2'
[23:38:43] [Client thread/INFO] [STDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:600]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Andre\OneDrive\Documents\forge dev\run\.\crash-reports\crash-2017-02-15_23.38.43-client.txt

 

I believe it because of this

 

 

entityEggInfo.png

entityEggInfo.png

Link to comment
Share on other sites

25 minutes ago, Animefan8888 said:

mainRegistry() does nothing

Also look at these lines of the crash:

at com.clowcadia.mob.EntityClowcadia.createEntity(EntityClowcadia.java:56)
	at com.clowcadia.mob.EntityClowcadia.registerEntity(EntityClowcadia.java:49)
	at com.clowcadia.mob.EntityClowcadia.mainRegistry(EntityClowcadia.java:44)
	at com.clowcadia.mob.EntityClowcadia.PreLoad(EntityClowcadia.java:27)

Somethings wrong...

 

Apparently I'm addicted to these forums and can't help but read all the posts. So if I somehow help you, please click the "Like This" button, it helps.

Link to comment
Share on other sites

2 minutes ago, Leomelonseeds said:
28 minutes ago, Animefan8888 said:

mainRegistry() does nothing

Also look at these lines of the crash:


at com.clowcadia.mob.EntityClowcadia.createEntity(EntityClowcadia.java:56)
	at com.clowcadia.mob.EntityClowcadia.registerEntity(EntityClowcadia.java:49)
	at com.clowcadia.mob.EntityClowcadia.mainRegistry(EntityClowcadia.java:44)
	at com.clowcadia.mob.EntityClowcadia.PreLoad(EntityClowcadia.java:27)

Somethings wrong...

Why did you quote that?

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.

Link to comment
Share on other sites

Thank you guys, egg exist and mob spawns. But can anyone explain to me what are this resource locations are, i used them 3 times and no idea what each one really is for

in my registry, for my egg put function 2s. neither witch makes sence. in game i get that is spells out what mod its from but only once not twice.

there is no clear documentation behind this

wish someone made a up to date tutorial for things like these

Link to comment
Share on other sites

10 minutes ago, clowcadia said:

But can anyone explain to me what are this resource locations are

I already told you what it was, it is an id used in code by forge (maybe vanilla not sure about that) as an ID for your entity, just like Items and Blocks.

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.

Link to comment
Share on other sites

7 minutes ago, clowcadia said:

How can i then make a new resource location to be held in a variable?

new ResourceLocation(a, b)?

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.

Link to comment
Share on other sites

Ok so this is the final version what you guys think, anything needs a fix improve?

 

package com.clowcadia.mob;


import net.minecraft.entity.EntityList;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.Mod.Instance;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.fml.common.registry.EntityRegistry;

@Mod (modid = EntityClowcadia.MODID, version = EntityClowcadia.VERSION)
public class EntityClowcadia {
	
	public static final String MODID = "clowcadiamob";
	public static final String VERSION = "1.0";
	public static int entityId = 0;
	public static String entityName = "blankMob";
	public static int solidColor=0x4286f4;
	public static int spotColor=0x606e84;
	public static net.minecraft.util.ResourceLocation ResourceLocation = new ResourceLocation(EntityClowcadia.MODID,entityName);
	public static EntityList.EntityEggInfo eggInfo= new EntityList.EntityEggInfo(ResourceLocation, solidColor, spotColor);
	
	@Instance public static EntityClowcadia modInstance;
	
	@EventHandler
    public void PreLoad(FMLPreInitializationEvent PreEvent)
    {
		mainRegistry();
    }
    
    @EventHandler
    public void load(FMLInitializationEvent event)
    {
    	
    }
    
    @EventHandler
    public void PostLoad(FMLPostInitializationEvent PostEvent)
    {
    	
    }
	
	public static void mainRegistry()
	{
		registerEntity(entityName);
	}
	
	public static void registerEntity(String entityName)
	{
		createEntity(EntityClowcadiaMob.class,entityName,solidColor,spotColor);
	
	}
	
	public static void createEntity(Class<EntityClowcadiaMob> entityClass, String entityName, int solidColor, int spotColor)
	{		
		
		EntityRegistry.registerModEntity(ResourceLocation, entityClass, entityName, entityId, EntityClowcadia.modInstance, 64, 1, true);
		createEgg(entityName,solidColor,spotColor);
	}
	public static void createEgg(String entityName,int solidColor,int spotColor)
	{
		EntityList.ENTITY_EGGS.put(ResourceLocation, eggInfo);
	}

	

}

 

Link to comment
Share on other sites

Pretty sure that's now how you should be doing the spawn egg.

For two reasons:

1) You shouldn't be adding it to the array yourself

2) You're ignoring the two color parameters, which means you aren't going to get an item at all.

 

You pretty much took the fact that someone said "you need to call createEgg" and created a method called createEgg and did random bullshit you thought the method should do.  You seem to do this a lot.

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.

Link to comment
Share on other sites

2 minutes ago, Draco18s said:

Pretty sure that's now how you should be doing the spawn egg.

For two reasons:

1) You shouldn't be adding it to the array yourself

2) You're ignoring the two color parameters, which means you aren't going to get an item at all.

 

You pretty much took the fact that someone said "you need to call createEgg" and created a method called createEgg and did random bullshit you thought the method should do.  You seem to do this a lot.

Wow no wonder for ur signature. Freaking rough. Anyways I am doing the best i can to learn from scratch with outdated tutorials. 

Could you possibly show me a different way then adding it to an array, and i am using the 2 parapeters but i guess they are in createEgg

Link to comment
Share on other sites

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • They are heartless scammers, they ruined my life, by making me develop an interest in investing my hard-earned money. I deposited 67,000 USD which was later turned into 110,450 USD including my payout bonus, there was an impressive improvement in a few weeks, later I had an emergency and needed money to pay my insurance fee, I tried reaching out to them to collect the money I invested, they cut the live chats and got me harassed then I realized that I was being scammed. I just wanted my money back! I was advised by a friend to seek help from a recovery firm to assist me in recovering my invested funds, God was so kind I came across some great positive reviews about BETAFORT ONLINE on how they helped scammed victims like me to recover their lost cryptocurrency assets, I took no delay and got in touch with BETAFORT ONLINE, the Expert immediately looked into my case and after providing all the required information they need, and it took them less then a day to recover all my funds. And now I really feel obligated to recommend BETAFORT ONLINE and their team, their recovery strategies, and for working relentlessly to help me recover my funds. Feel free to reach out to BETAFORT ONLINE via google search and they will guide you on how to recover your invested funds, I advise everyone to be careful with these heartless cryptocurrency scammers.  
    • yeah I believe so, its been something deep with the modpack I'm guessing. ill fix each error it states if its saying to replace or download a mod but I'm not sure where to go from here. I have been spending days and have yet to find the issue    
    • It worked, thank you very much 😭
    • https://spark.lucko.me/0ZaR1OAi2F I use spark mod to do a scan and send it here to search for help and if someone know about this issue I dont know to much about, but one thing i see in the record of the minecraft launcher when i play says: can't keep up server overloaded and etc, etc.  I assign 6GB ram to minecraft from the 16 GB of my pc, and fps is not a problem...(no to much) its something about tic rate/second and i am in SINGLE PLAYER. The funny thing is, minecraft vanilla (No mods) works normaly. My mods list (130): https://imgur.com/a/kY3yQr1  Datapacks: https://imgur.com/CTDBe7D ResourcePacks: https://imgur.com/AztTOOw so plis, is someone help me T_T a work  a loot of time in downloading and trying to all mods work but i dont know what to do anymore. Last thing  I SPEAK SPANISH so... sorry if my english is a little scuff or ... werever... bad. Thanks :3
    • Whenever I try to create an world my game crashes. I´ve tried to figure it out myself but wasnt able to do it.   Here are the logs
  • Topics

×
×
  • Create New...

Important Information

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