Jump to content

[1.12] Help with Entitys


Big_Bad_E

Recommended Posts

Hello, My Name is Big_Bad_E, and I am working on making a mod where there is a Biped enemy, and when I do /summon Entity404 (Yes its a creepy pasta mod) It returns Unable to summon object.

My Entity Class

package Entity404.Entity;

import javax.annotation.Nullable;

import Entity404.entity404;
import net.minecraft.block.Block;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.EnumCreatureAttribute;
import net.minecraft.entity.IEntityLivingData;
import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.entity.ai.EntityAIHurtByTarget;
import net.minecraft.entity.ai.EntityAILookIdle;
import net.minecraft.entity.ai.EntityAIMoveThroughVillage;
import net.minecraft.entity.ai.EntityAIMoveTowardsRestriction;
import net.minecraft.entity.ai.EntityAINearestAttackableTarget;
import net.minecraft.entity.ai.EntityAISwimming;
import net.minecraft.entity.ai.EntityAIWanderAvoidWater;
import net.minecraft.entity.ai.EntityAIWatchClosest;
import net.minecraft.entity.ai.EntityAIZombieAttack;
import net.minecraft.entity.ai.attributes.AttributeModifier;
import net.minecraft.entity.monster.EntityIronGolem;
import net.minecraft.entity.monster.EntityMob;
import net.minecraft.entity.monster.EntityPigZombie;
import net.minecraft.entity.monster.EntityZombie;
import net.minecraft.entity.passive.EntityVillager;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.SoundEvents;
import net.minecraft.inventory.EntityEquipmentSlot;
import net.minecraft.item.ItemStack;
import net.minecraft.util.DamageSource;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.SoundEvent;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.MathHelper;
import net.minecraft.world.EnumDifficulty;
import net.minecraft.world.World;
import net.minecraft.world.storage.loot.LootTableList;

public class Entity404 extends EntityMob {
	 public Entity404(World worldIn)
	    {
	        super(worldIn);
	        this.setSize(0.6F, 1.95F);
	    }

	    protected void initEntityAI()
	    {
	        this.tasks.addTask(0, new EntityAISwimming(this));
	        this.tasks.addTask(5, new EntityAIMoveTowardsRestriction(this, 1.0D));
	        this.tasks.addTask(7, new EntityAIWanderAvoidWater(this, 1.0D));
	        this.tasks.addTask(8, new EntityAIWatchClosest(this, EntityPlayer.class, 8.0F));
	        this.tasks.addTask(8, new EntityAILookIdle(this));
	        this.applyEntityAI();
	    }

	    protected void applyEntityAI()
	    {
	        this.targetTasks.addTask(1, new EntityAIHurtByTarget(this, true, new Class[] {EntityPigZombie.class}));
	        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityPlayer.class, true));
	    }

	    protected void applyEntityAttributes()
	    {
	        super.applyEntityAttributes();
	        this.getEntityAttribute(SharedMonsterAttributes.FOLLOW_RANGE).setBaseValue(35.0D);
	        this.getEntityAttribute(SharedMonsterAttributes.MOVEMENT_SPEED).setBaseValue(0.23000000417232513D);
	        this.getEntityAttribute(SharedMonsterAttributes.ATTACK_DAMAGE).setBaseValue(3.0D);
	    }

	    protected void entityInit()
	    {
	        super.entityInit();
	    }
	    protected int getExperiencePoints(EntityPlayer player)
	    {
	        this.experienceValue = (int)((float)this.experienceValue * 2.5F);
	        return super.getExperiencePoints(player);
	    }
	    //Entity Update
	    public void onLivingUpdate()
	    {
	        super.onLivingUpdate();
	    }
	    //When attacked
	    public boolean attackEntityFrom(DamageSource source, float amount)
	    {
	        if (super.attackEntityFrom(source, amount))
	        {
	            EntityLivingBase entitylivingbase = this.getAttackTarget();

	            if (entitylivingbase == null && source.getTrueSource() instanceof EntityLivingBase)
	            {
	                entitylivingbase = (EntityLivingBase)source.getTrueSource();
	            }
	        }
	        else
	        {
	            return false;
	        }
			return false;
	    }
	    protected SoundEvent getAmbientSound()
	    {
	        return SoundEvents.ENTITY_ZOMBIE_AMBIENT;
	    }

	    protected SoundEvent getHurtSound(DamageSource p_184601_1_)
	    {
	        return SoundEvents.ENTITY_ZOMBIE_HURT;
	    }

	    protected SoundEvent getDeathSound()
	    {
	        return SoundEvents.ENTITY_ZOMBIE_DEATH;
	    }

	    protected SoundEvent getStepSound()
	    {
	        return SoundEvents.ENTITY_ZOMBIE_STEP;
	    }

	    protected void playStepSound(BlockPos pos, Block blockIn)
	    {
	        this.playSound(this.getStepSound(), 0.15F, 1.0F);
	    }

	    /**
	     * Get this Entity's EnumCreatureAttribute
	     */
	    public EnumCreatureAttribute getCreatureAttribute()
	    {
	        return EnumCreatureAttribute.UNDEAD;
	    }
}

My Main Class

package Entity404;

import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.SidedProxy;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import Entity404.Entity.Entity404;
import Entity404.Proxy.CommonProxy;

@Mod(modid = Referance.MODID, name = Referance.NAME, version = Referance.VERSION)
public class entity404 {
	@SidedProxy(clientSide = Referance.CLIENTPROXY, serverSide = Referance.COMMONPROXY)
	public static CommonProxy proxy;
	
	@EventHandler
	public void preInit(FMLPreInitializationEvent event) {
		proxy.preInit(event);
	}
	@EventHandler
	public void Init(FMLInitializationEvent event) {
		proxy.Init(event);
	}
	@EventHandler
	public void postInit(FMLPostInitializationEvent event) {
		proxy.postInit(event);
	}
}

 

I have searched though the Vanilla mob classes (Zombie, most of the entity code is copy pasted from there) and looked through the forge directory thing (Brain Fart) and I could not find out how!

Link to comment
Share on other sites

Hey my game is crashing when the mc tab opens. Here is the console log

2017-08-26 17:59:14,503 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2017-08-26 17:59:14,512 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[17:59:14] [main/INFO] [GradleStart]: Extra: []
[17:59:15] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/ethan/.gradle/caches/minecraft/assets, --assetIndex, 1.12, --accessToken{REDACTED}, --version, 1.12, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[17:59:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[17:59:15] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[17:59:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[17:59:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[17:59:15] [main/INFO] [FML]: Forge Mod Loader version 14.21.1.2443 for Minecraft 1.12 loading
[17:59:15] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_131, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_131
[17:59:15] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[17:59:15] [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
[17:59:15] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin
[17:59:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[17:59:15] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[17:59:15] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[17:59:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[17:59:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[17:59:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[17:59:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[17:59:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[17:59:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
2017-08-26 17:59:16,397 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2017-08-26 17:59:17,281 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2017-08-26 17:59:17,285 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[17:59:21] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[17:59:21] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[17:59:21] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[17:59:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[17:59:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[17:59:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[17:59:24] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[17:59:26] [main/INFO]: Setting user: Player71
[17:59:38] [main/WARN]: Skipping bad option: lastServer:
[17:59:38] [main/INFO]: LWJGL Version: 2.9.4
[17:59:40] [main/INFO] [FML]: -- System Details --
Details:
	Minecraft Version: 1.12
	Operating System: Windows 10 (amd64) version 10.0
	Java Version: 1.8.0_131, Oracle Corporation
	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
	Memory: 752453224 bytes (717 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 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: 'Intel' Version: '4.4.0 - Build 20.19.15.4463' Renderer: 'Intel(R) HD Graphics 5500'
[17:59:40] [main/INFO] [FML]: MinecraftForge v14.21.1.2443 Initialized
[17:59:40] [main/INFO] [FML]: Replaced 921 ore ingredients
[17:59:41] [main/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[17:59:41] [main/INFO] [FML]: Searching C:\Users\ethan\Desktop\Modding\run\mods for mods
[17:59:43] [Thread-3/INFO] [FML]: Using sync timing. 200 frames of Display.update took 350818946 nanos
[17:59:47] [main/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
[17:59:48] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, entity303] at CLIENT
[17:59:48] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, entity303] at SERVER
[17:59:49] [main/ERROR] [FML]: An error occurred trying to load a proxy into proxy.java.lang.ClassNotFoundException: Entity404.Proxy.ClientProxy
[17:59:49] [main/FATAL] [FML]: Fatal errors were detected during the transition from CONSTRUCTING to PREINITIALIZATION. Loading cannot continue
[17:59:49] [main/FATAL] [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.12} [Minecraft] (minecraft.jar) 
	UC	mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) 
	UC	FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.12-14.21.1.2443.jar) 
	UC	forge{14.21.1.2443} [Minecraft Forge] (forgeSrc-1.12-14.21.1.2443.jar) 
	UE	entity303{666} [Entity303] (bin) 
[17:59:49] [main/FATAL] [FML]: The following problems were captured during this phase
[17:59:49] [main/ERROR] [FML]: Caught exception from entity303 (net.minecraftforge.fml.common.LoaderException: java.lang.ClassNotFoundException: Entity404.Proxy.ClientProxy)
[17:59:49] [main/INFO] [STDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:630]: ---- Minecraft Crash Report ----
// I feel sad now :(

Time: 8/26/17 5:59 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 Entity303 (entity303)
Caused by: net.minecraftforge.fml.common.LoaderException: java.lang.ClassNotFoundException: Entity404.Proxy.ClientProxy
	at net.minecraftforge.fml.common.ProxyInjector.inject(ProxyInjector.java:102)
	at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:593)
	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.Subscriber.invokeSubscriberMethod(Subscriber.java:91)
	at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)
	at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)
	at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)
	at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)
	at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)
	at com.google.common.eventbus.EventBus.post(EventBus.java:217)
	at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:252)
	at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:230)
	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.Subscriber.invokeSubscriberMethod(Subscriber.java:91)
	at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)
	at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)
	at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)
	at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)
	at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)
	at com.google.common.eventbus.EventBus.post(EventBus.java:217)
	at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:147)
	at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:570)
	at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:227)
	at net.minecraft.client.Minecraft.init(Minecraft.java:508)
	at net.minecraft.client.Minecraft.run(Minecraft.java:416)
	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)
Caused by: java.lang.ClassNotFoundException: Entity404.Proxy.ClientProxy
	at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191)
	at java.lang.ClassLoader.loadClass(Unknown Source)
	at java.lang.ClassLoader.loadClass(Unknown Source)
	at net.minecraftforge.fml.common.ModClassLoader.loadClass(ModClassLoader.java:75)
	at java.lang.Class.forName0(Native Method)
	at java.lang.Class.forName(Unknown Source)
	at net.minecraftforge.fml.common.ProxyInjector.inject(ProxyInjector.java:85)
	... 43 more
Caused by: java.lang.NullPointerException
	at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182)
	... 49 more


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

-- System Details --
Details:
	Minecraft Version: 1.12
	Operating System: Windows 10 (amd64) version 10.0
	Java Version: 1.8.0_131, Oracle Corporation
	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
	Memory: 827026072 bytes (788 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)
	JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
	IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
	FML: MCP 9.40 Powered by Forge 14.21.1.2443 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.12} [Minecraft] (minecraft.jar) 
	UC	mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) 
	UC	FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.12-14.21.1.2443.jar) 
	UC	forge{14.21.1.2443} [Minecraft Forge] (forgeSrc-1.12-14.21.1.2443.jar) 
	UE	entity303{666} [Entity303] (bin) 
	Loaded coremods (and transformers): 
	GL info: ' Vendor: 'Intel' Version: '4.4.0 - Build 20.19.15.4463' Renderer: 'Intel(R) HD Graphics 5500'
[17:59:49] [main/INFO] [STDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:630]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\ethan\Desktop\Modding\run\.\crash-reports\crash-2017-08-26_17.59.49-client.txt

I will show you any class you need to see to help.

Link to comment
Share on other sites

Still can't /summon the entity, don't know if I should make a separate thread because of the length

Render Class

package Entity303.Entity;

import net.minecraft.client.model.ModelBase;
import net.minecraft.client.renderer.entity.RenderLiving;
import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.util.ResourceLocation;
import Entity303.Referance;

public class RenderEntity303 extends RenderLiving
{
    protected ResourceLocation Entity303Texture;

    public RenderEntity303(RenderManager renderManager, ModelBase par1ModelBase, float parShadowSize)
    {
        super(renderManager, par1ModelBase, parShadowSize);
        setEntityTexture();        
    }
 
    @Override
    protected void preRenderCallback(EntityLivingBase entity, float f)
    {
        preRenderCallbackEntity303((Entity303) entity, f);
    }
  
    protected void preRenderCallbackEntity303(Entity303 entity, float f)
    {
        // some people do some G11 transformations or blends here, like you can do
        // GL11.glScalef(2F, 2F, 2F); to scale up the entity
        // which is used for Slime entities.  I suggest having the entity cast to
        // your custom type to make it easier to access fields from your 
        // custom entity, eg. GL11.glScalef(entity.scaleFactor, entity.scaleFactor, 
        // entity.scaleFactor); 
    }

    protected void setEntityTexture()
    {
        Entity303Texture = new ResourceLocation(Referance.MODID+":textures/entity/Entity303.png");
    }

    /**
    * Returns the location of an entity's texture. Doesn't seem to be called 
    * unless you call Render.bindEntityTexture.
    */
    @Override
    protected ResourceLocation getEntityTexture(Entity par1Entity)
    {
        return Entity303Texture;
    }
}

Entity Class

package Entity303.Entity;

import net.minecraft.block.Block;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.EnumCreatureAttribute;
import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.entity.ai.EntityAIHurtByTarget;
import net.minecraft.entity.ai.EntityAILookIdle;
import net.minecraft.entity.ai.EntityAIMoveTowardsRestriction;
import net.minecraft.entity.ai.EntityAINearestAttackableTarget;
import net.minecraft.entity.ai.EntityAISwimming;
import net.minecraft.entity.ai.EntityAIWanderAvoidWater;
import net.minecraft.entity.ai.EntityAIWatchClosest;
import net.minecraft.entity.monster.EntityCreeper;
import net.minecraft.entity.monster.EntityMob;
import net.minecraft.entity.monster.EntityPigZombie;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Items;
import net.minecraft.init.SoundEvents;
import net.minecraft.item.ItemStack;
import net.minecraft.util.DamageSource;
import net.minecraft.util.SoundEvent;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;

public class Entity303 extends EntityMob {
	
	 public Entity303(World worldIn)
	    {
	        super(worldIn);
	        this.setSize(0.6F, 1.95F);
	    }

	    protected void initEntityAI()
	    {
	        this.tasks.addTask(0, new EntityAISwimming(this));
	        this.tasks.addTask(5, new EntityAIMoveTowardsRestriction(this, 1.0D));
	        this.tasks.addTask(7, new EntityAIWanderAvoidWater(this, 1.0D));
	        this.tasks.addTask(8, new EntityAIWatchClosest(this, EntityPlayer.class, 8.0F));
	        this.tasks.addTask(8, new EntityAILookIdle(this));
	        this.applyEntityAI();
	    }

	    protected void applyEntityAI()
	    {
	        this.targetTasks.addTask(1, new EntityAIHurtByTarget(this, true, new Class[] {EntityPigZombie.class}));
	        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityPlayer.class, true));
	    }

	    protected void applyEntityAttributes()
	    {
	        super.applyEntityAttributes();
	        this.getEntityAttribute(SharedMonsterAttributes.FOLLOW_RANGE).setBaseValue(35.0D);
	        this.getEntityAttribute(SharedMonsterAttributes.MOVEMENT_SPEED).setBaseValue(0.23000000417232513D);
	        this.getEntityAttribute(SharedMonsterAttributes.ATTACK_DAMAGE).setBaseValue(3.0D);
	    }

	    protected void entityInit()
	    {
	        super.entityInit();
	    }
	    protected int getExperiencePoints(EntityPlayer player)
	    {
	        this.experienceValue = (int)((float)this.experienceValue * 2.5F);
	        return super.getExperiencePoints(player);
	    }
	    //Entity Update
	    public void onLivingUpdate()
	    {
	        super.onLivingUpdate();
	    }
	    //When attacked
	    public boolean attackEntityFrom(DamageSource source, float amount)
	    {
	        if (super.attackEntityFrom(source, amount))
	        {
	            EntityLivingBase entitylivingbase = this.getAttackTarget();

	            if (entitylivingbase == null && source.getTrueSource() instanceof EntityLivingBase)
	            {
	                entitylivingbase = (EntityLivingBase)source.getTrueSource();
	            }
	        }
	        else
	        {
	            return false;
	        }
			return false;
	    }
	    protected SoundEvent getAmbientSound()
	    {
	        return SoundEvents.ENTITY_ZOMBIE_AMBIENT;
	    }

	    protected SoundEvent getHurtSound(DamageSource p_184601_1_)
	    {
	        return SoundEvents.ENTITY_ZOMBIE_HURT;
	    }

	    protected SoundEvent getDeathSound()
	    {
	        return SoundEvents.ENTITY_ZOMBIE_DEATH;
	    }

	    protected SoundEvent getStepSound()
	    {
	        return SoundEvents.ENTITY_ZOMBIE_STEP;
	    }

	    protected void playStepSound(BlockPos pos, Block blockIn)
	    {
	        this.playSound(this.getStepSound(), 0.15F, 1.0F);
	    }

	    /**
	     * Get this Entity's EnumCreatureAttribute
	     */
	    public EnumCreatureAttribute getCreatureAttribute()
	    {
	        return EnumCreatureAttribute.UNDEAD;
	    }
	    public void onDeath(DamageSource cause)
	    {
	        super.onDeath(cause);

	        if (cause.getTrueSource() instanceof EntityPlayer)
	        {
	            EntityPlayer player = (EntityPlayer)cause.getTrueSource();
	            ItemStack itemstack = this.getSkullDrop();
	        }
	    }
	    protected ItemStack getSkullDrop()
	    {
	        return new ItemStack(Items.SKULL, 1, 2);
	    }
}

Model Class

package Entity303.Entity;

import net.minecraft.client.model.ModelBiped;
import net.minecraft.entity.Entity;
import net.minecraft.entity.monster.EntityZombie;
import net.minecraft.util.math.MathHelper;

public class ModelEntity303 extends ModelBiped {
	 public ModelEntity303()
	    {
	        this(0.0F, false);
	    }

	    public ModelEntity303(float modelSize, boolean p_i1168_2_)
	    {
	        super(modelSize, 0.0F, 64, p_i1168_2_ ? 32 : 64);
	    }

	    /**
	     * Sets the model's various rotation angles. For bipeds, par1 and par2 are used for animating the movement of arms
	     * and legs, where par1 represents the time(so that arms and legs swing back and forth) and par2 represents how
	     * "far" arms and legs can swing at most.
	     */
	    public void setRotationAngles(float limbSwing, float limbSwingAmount, float ageInTicks, float netHeadYaw, float headPitch, float scaleFactor, Entity entityIn)
	    {
	        super.setRotationAngles(limbSwing, limbSwingAmount, ageInTicks, netHeadYaw, headPitch, scaleFactor, entityIn);
	        boolean flag = entityIn instanceof EntityZombie && ((EntityZombie)entityIn).isArmsRaised();
	        float f = MathHelper.sin(this.swingProgress * (float)Math.PI);
	        float f1 = MathHelper.sin((1.0F - (1.0F - this.swingProgress) * (1.0F - this.swingProgress)) * (float)Math.PI);
	        this.bipedRightArm.rotateAngleZ = 0.0F;
	        this.bipedLeftArm.rotateAngleZ = 0.0F;
	        this.bipedRightArm.rotateAngleY = -(0.1F - f * 0.6F);
	        this.bipedLeftArm.rotateAngleY = 0.1F - f * 0.6F;
	        float f2 = -(float)Math.PI / (flag ? 1.5F : 2.25F);
	        this.bipedRightArm.rotateAngleX = f2;
	        this.bipedLeftArm.rotateAngleX = f2;
	        this.bipedRightArm.rotateAngleX += f * 1.2F - f1 * 0.4F;
	        this.bipedLeftArm.rotateAngleX += f * 1.2F - f1 * 0.4F;
	        this.bipedRightArm.rotateAngleZ += MathHelper.cos(ageInTicks * 0.09F) * 0.05F + 0.05F;
	        this.bipedLeftArm.rotateAngleZ -= MathHelper.cos(ageInTicks * 0.09F) * 0.05F + 0.05F;
	        this.bipedRightArm.rotateAngleX += MathHelper.sin(ageInTicks * 0.067F) * 0.05F;
	        this.bipedLeftArm.rotateAngleX -= MathHelper.sin(ageInTicks * 0.067F) * 0.05F;
	    }
}

Main Class

package Entity303;

import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.SidedProxy;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import Entity303.Proxy.CommonProxy;

@Mod(modid = Referance.MODID, name = Referance.NAME, version = Referance.VERSION)
public class entity303 {
	@SidedProxy(clientSide = Referance.CLIENTPROXY, serverSide = Referance.COMMONPROXY)
	public static CommonProxy proxy;
	
	@EventHandler
	public void preInit(FMLPreInitializationEvent event) {
		proxy.preInit(event);
	}
	@EventHandler
	public void Init(FMLInitializationEvent event) {
		proxy.Init(event);
	}
	@EventHandler
	public void postInit(FMLPostInitializationEvent event) {
		proxy.postInit(event);
	}
}

 

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

    • I was wondering how to get modpacks to work in my mod folder well there a zip file, I tried to change the file to jar but nothing. Anyone have a answer?
    • I'm making a modpack and VS and VS eureka are a big part of it but I can't get them to work without crashes, I'm hoping there is some problem I'm overlooking or unable to find. Can anyone help?   ---- Minecraft Crash Report ---- // This doesn't make any sense! Time: 5/26/24 1:19 AM Description: Initializing game org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:154) ~[modlauncher-8.1.3.jar:8.1.3+8.1.3+main-8.1.x.c94d18ec] {} at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:85) ~[modlauncher-8.1.3.jar:?] {} at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-8.1.3.jar:?] {} at cpw.mods.modlauncher.TransformingClassLoader$DelegatedClassLoader.findClass(TransformingClassLoader.java:265) ~[modlauncher-8.1.3.jar:?] {} at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:136) ~[modlauncher-8.1.3.jar:?] {re:classloading} at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:98) ~[modlauncher-8.1.3.jar:?] {re:classloading} at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ~[?:1.8.0_51] {} at net.minecraft.client.Minecraft.<init>(Minecraft.java:469) [?:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:modernfix-forge.mixins.json:perf.skip_first_datapack_reload.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:mine-mine-no-mi.mixins.json:client.MinecraftMixin,pl:mixin:APP:abnormals_core.mixins.json:client.MinecraftMixin,pl:mixin:APP:flywheel.mixins.json:ShaderCloseMixin,pl:mixin:APP:valkyrienskies-common.mixins.json:client.MixinMinecraft,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.main(Main.java:149) [?:?] {re:classloading,pl:runtimedistcleaner:A} at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_51] {} at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_51] {} at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_51] {} at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_51] {} at net.minecraftforge.fml.loading.FMLClientLaunchProvider.lambda$launchService$0(FMLClientLaunchProvider.java:51) [forge-1.16.5-36.2.34.jar:36.2] {} at net.minecraftforge.fml.loading.FMLClientLaunchProvider$$Lambda$464/492045670.call(Unknown Source) [forge-1.16.5-36.2.34.jar:36.2] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.1.3.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.1.3.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.1.3.jar:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.1.3.jar:?] {re:classloading} at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.1.3.jar:?] {re:classloading} Caused by: org.spongepowered.asm.mixin.injection.throwables.InjectionError: Critical injection failure: Redirector modifyCrosshairTargetEntities(Lnet/minecraft/entity/Entity;Lnet/minecraft/util/math/vector/Vector3d;Lnet/minecraft/util/math/vector/Vector3d;Lnet/minecraft/util/math/AxisAlignedBB;Ljava/util/function/Predicate;D)Lnet/minecraft/util/math/EntityRayTraceResult; in valkyrienskies-common.mixins.json:client.renderer.MixinGameRenderer failed injection check, (0/1) succeeded. Scanned 1 target(s). Using refmap valkyrienskies-116-common-refmap.json at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.postInject(InjectionInfo.java:468) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {re:classloading,re:classloading} at org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1362) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {re:classloading} at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1051) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:400) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:325) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:383) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {re:classloading} at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:365) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {re:classloading} at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} ... 23 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Stacktrace: at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.4.jar:0.8.4+Jenkins-b308.git-2accda5000f7602229606b39437565542cc6fba4] {} at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:154) ~[modlauncher-8.1.3.jar:8.1.3+8.1.3+main-8.1.x.c94d18ec] {} at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:85) ~[modlauncher-8.1.3.jar:?] {} at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-8.1.3.jar:?] {} at cpw.mods.modlauncher.TransformingClassLoader$DelegatedClassLoader.findClass(TransformingClassLoader.java:265) ~[modlauncher-8.1.3.jar:?] {} at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:136) ~[modlauncher-8.1.3.jar:?] {re:classloading} at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:98) ~[modlauncher-8.1.3.jar:?] {re:classloading} at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ~[?:1.8.0_51] {} at net.minecraft.client.Minecraft.<init>(Minecraft.java:469) ~[?:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:modernfix-forge.mixins.json:perf.skip_first_datapack_reload.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:mine-mine-no-mi.mixins.json:client.MinecraftMixin,pl:mixin:APP:abnormals_core.mixins.json:client.MinecraftMixin,pl:mixin:APP:flywheel.mixins.json:ShaderCloseMixin,pl:mixin:APP:valkyrienskies-common.mixins.json:client.MixinMinecraft,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A} -- Initialization -- Details: Stacktrace: at net.minecraft.client.main.Main.main(Main.java:149) [?:?] {re:classloading,pl:runtimedistcleaner:A} at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_51] {} at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_51] {} at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_51] {} at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_51] {} at net.minecraftforge.fml.loading.FMLClientLaunchProvider.lambda$launchService$0(FMLClientLaunchProvider.java:51) [forge-1.16.5-36.2.34.jar:36.2] {} at net.minecraftforge.fml.loading.FMLClientLaunchProvider$$Lambda$464/492045670.call(Unknown Source) [forge-1.16.5-36.2.34.jar:36.2] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.1.3.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.1.3.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.1.3.jar:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.1.3.jar:?] {re:classloading} at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.1.3.jar:?] {re:classloading} -- System Details -- Details: Minecraft Version: 1.16.5 Minecraft Version ID: 1.16.5 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_51, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 924240536 bytes (881 MB) / 1713373184 bytes (1634 MB) up to 10141302784 bytes (9671 MB) CPUs: 12 JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx10880m -Xms256m ModLauncher: 8.1.3+8.1.3+main-8.1.x.c94d18ec ModLauncher launch target: fmlclient ModLauncher naming: srg ModLauncher services: /mixin-0.8.4.jar mixin PLUGINSERVICE /eventbus-4.0.0.jar eventbus PLUGINSERVICE /forge-1.16.5-36.2.34.jar object_holder_definalize PLUGINSERVICE /forge-1.16.5-36.2.34.jar runtime_enum_extender PLUGINSERVICE /accesstransformers-3.0.1.jar accesstransformer PLUGINSERVICE /forge-1.16.5-36.2.34.jar capability_inject_definalize PLUGINSERVICE /forge-1.16.5-36.2.34.jar runtimedistcleaner PLUGINSERVICE /mixin-0.8.4.jar mixin TRANSFORMATIONSERVICE /forge-1.16.5-36.2.34.jar fml TRANSFORMATIONSERVICE FML: 36.2 Forge: net.minecraftforge:36.2.34 FML Language Providers: [email protected] minecraft@1 [email protected] Mod List: litewolfcore-1.16.5v1.0.1.jar |LiteWolf Core |litewolfcore |1.16.5v1.0 |CREATE_REG|Manifest: NOSIGNATURE BetterDungeons-1.16.4-1.2.1.jar |YUNG's Better Dungeons |betterdungeons |1.16.4-1.2.1 |CREATE_REG|Manifest: NOSIGNATURE TRansliterationLib-1.0.4.jar |TRansliterationLib Mod |transliterationlib |1.0.4 |CREATE_REG|Manifest: NOSIGNATURE Philips ruins 1.16.5-2.8.jar |Philips ruins1.16.5 |philips_ruins1_16_5 |2.8 |CREATE_REG|Manifest: NOSIGNATURE mcw-windows-2.2.1-mc1.16.5forge.jar |Macaw's Windows |mcwwindows |2.2.1 |CREATE_REG|Manifest: NOSIGNATURE immersive_aircraft-0.5.2+1.16.5-forge.jar |Immersive Aircraft |immersive_aircraft |0.5.2+1.16.5 |CREATE_REG|Manifest: NOSIGNATURE InsaneLib-1.4.2-mc1.16.5.jar |InsaneLib |insanelib |1.4.2 |CREATE_REG|Manifest: NOSIGNATURE Controlling-7.0.0.31.jar |Controlling |controlling |7.0.0.31 |CREATE_REG|Manifest: NOSIGNATURE modernfix-forge-5.17.0+mc1.16.5.jar |ModernFix |modernfix |5.17.0+mc1.16.5 |CREATE_REG|Manifest: NOSIGNATURE citadel-1.8.1-1.16.5.jar |Citadel |citadel |1.8.1 |CREATE_REG|Manifest: NOSIGNATURE alexsmobs-1.12.1.jar |Alex's Mobs |alexsmobs |1.12.1 |CREATE_REG|Manifest: NOSIGNATURE YungsApi-1.16.4-Forge-13.jar |YUNG's API |yungsapi |1.16.4-Forge-13 |CREATE_REG|Manifest: NOSIGNATURE prehistoric_delight_2.2.0_forge_1.16.5.jar |Prehistoric Delight |pre_delight |2.2.0 |CREATE_REG|Manifest: NOSIGNATURE Bookshelf-Forge-1.16.5-10.4.33.jar |Bookshelf |bookshelf |10.4.33 |CREATE_REG|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 sophisticatedbackpacks-1.16.5-3.15.20.755.jar |Sophisticated Backpacks |sophisticatedbackpacks |1.16.5-3.15.20.755 |CREATE_REG|Manifest: NOSIGNATURE guardvillagers-1.16.5.1.2.6.jar |Guard Villagers |guardvillagers |1.2.6 |CREATE_REG|Manifest: NOSIGNATURE mcw-doors-1.1.0forge-mc1.16.5.jar |Macaw's Doors |mcwdoors |1.1.0 |CREATE_REG|Manifest: NOSIGNATURE SnowRealMagic-1.16.5-2.10.0.jar |Snow! Real Magic! |snowrealmagic |2.10.0 |CREATE_REG|Manifest: NOSIGNATURE carryon-1.16.5-1.15.6.24.jar |Carry On |carryon |1.15.6.24 |CREATE_REG|Manifest: NOSIGNATURE JustEnoughResources-1.16.5-0.12.1.128.jar |Just Enough Resources |jeresources |0.12.1.128 |CREATE_REG|Manifest: NOSIGNATURE islands-1.16.5-1.4.2.jar |Islands |islands |1.4.1 |CREATE_REG|Manifest: NOSIGNATURE dummmmmmy-1.16.5-1.3.3.jar |MmmMmmMmmMmm |dummmmmmy |1.3.0 |CREATE_REG|Manifest: NOSIGNATURE supplementaries-1.16.5-0.18.5.jar |Supplementaries |supplementaries |0.18.3 |CREATE_REG|Manifest: NOSIGNATURE explorations-forge-1.16.5-1.5.3.jar |Explorations+ |explorations |1.16.5-1.5.3 |CREATE_REG|Manifest: NOSIGNATURE corpse-1.16.5-1.0.6.jar |Corpse |corpse |1.16.5-1.0.6 |CREATE_REG|Manifest: NOSIGNATURE FarmersDelight-1.16.5-0.6.0.jar |Farmer's Delight |farmersdelight |1.16.5-0.6.0 |CREATE_REG|Manifest: NOSIGNATURE MobHeads-2.0.1-mc1.16.5.jar |Mob Heads |mobheads |2.0.1-mc1.16.5 |CREATE_REG|Manifest: NOSIGNATURE BiomesOPlenty-1.16.5-13.1.0.477-universal.jar |Biomes O' Plenty |biomesoplenty |1.16.5-13.1.0.477 |CREATE_REG|Manifest: NOSIGNATURE Chunky-1.2.123.jar |Chunky |chunky |1.2.123 |CREATE_REG|Manifest: NOSIGNATURE mcw-trapdoors-1.1.3-mc1.16.5forge.jar |Macaw's Trapdoors |mcwtrpdoors |1.1.3 |CREATE_REG|Manifest: NOSIGNATURE mcw-fences-1.1.1-mc1.16.5forge.jar |Macaw's Fences and Walls |mcwfences |1.1.1 |CREATE_REG|Manifest: NOSIGNATURE YungsBridges-Forge-1.16.4-1.0.1.jar |YUNG's Bridges |yungsbridges |1.16.4-1.0.1 |CREATE_REG|Manifest: NOSIGNATURE cavesandcliffs-1.16.5-7.2.0.jar |Caves and Cliffs Backport |cavesandcliffs |1.16.5-7.2.0 |CREATE_REG|Manifest: NOSIGNATURE Curses' Naturals 1.0.0 - 1.16.5.jar |Curses' Naturals |curses_naturals |1.0.0 |CREATE_REG|Manifest: NOSIGNATURE curios-forge-1.16.5-4.1.0.0.jar |Curios API |curios |1.16.5-4.1.0.0 |CREATE_REG|Manifest: NOSIGNATURE Searchables-forge-1.16.5-1.0.7.jar |Searchables |searchables |1.0.7 |CREATE_REG|Manifest: NOSIGNATURE YungsExtras-Forge-1.16.4-1.0.jar |YUNG's Extras |yungsextras |Forge-1.16.4-1.0 |CREATE_REG|Manifest: NOSIGNATURE bettervillage-forge-1.16.5-3.2.0.jar |Better village |bettervillage |3.1.0 |CREATE_REG|Manifest: NOSIGNATURE BetterStrongholds-1.16.4-1.2.1.jar |YUNG's Better Strongholds |betterstrongholds |1.16.4-1.2.1 |CREATE_REG|Manifest: NOSIGNATURE cavebiomeapi-1.16.5-1.4.2.jar |CaveBiomeAPI |cavebiomeapi |1.16.5-1.4.2 |CREATE_REG|Manifest: NOSIGNATURE cfm-7.0.0pre22-1.16.3.jar |MrCrayfish's Furniture Mod |cfm |7.0.0-pre22 |CREATE_REG|Manifest: NOSIGNATURE architectury-1.32.68.jar |Architectury |architectury |1.32.68 |CREATE_REG|Manifest: NOSIGNATURE mcw-furniture-3.2.2-mc1.16.5forge.jar |Macaw's Furniture |mcwfurnitures |3.2.2 |CREATE_REG|Manifest: NOSIGNATURE cloth-config-4.17.101-forge.jar |Cloth Config v4 API |cloth-config |4.17.101 |CREATE_REG|Manifest: NOSIGNATURE smallships-1.16.5-1.10.1.jar |Small Ships Mod |smallships |1.10.1 |CREATE_REG|Manifest: NOSIGNATURE FastLeafDecay-v25.2.jar |FastLeafDecay |fastleafdecay |v25.2 |CREATE_REG|Manifest: NOSIGNATURE Kiwi-1.16.5-3.6.1.jar |Kiwi |kiwi |3.6.1 |CREATE_REG|Manifest: NOSIGNATURE mine-mine-no-mi-1.16.5-0.9.5.jar |Mine Mine no Mi |mineminenomi |0.9.5 |ERROR |Manifest: NOSIGNATURE jei-1.16.5-7.8.0.1009.jar |Just Enough Items |jei |7.8.0.1009 |CREATE_REG|Manifest: NOSIGNATURE JEIEnchantmentInfo-1.16.5-1.3.0.jar |JEI Enchantment Info |jeienchantmentinfo |1.16.5-1.3.0 |CREATE_REG|Manifest: NOSIGNATURE AttributeFix-1.16.5-10.1.4.jar |AttributeFix |attributefix |10.1.4 |CREATE_REG|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 abnormals_core-1.16.5-3.3.1.jar |Abnormals Core |abnormals_core |3.3.1 |ERROR |Manifest: NOSIGNATURE environmental-1.16.5-1.1.1.jar |Environmental |environmental |1.1.1 |CREATE_REG|Manifest: NOSIGNATURE libraryferret-forge-1.16.5-4.0.0.jar |Library ferret |libraryferret |4.0.0 |CREATE_REG|Manifest: NOSIGNATURE realmrpg_fallen_adventurers_0.2.0_forge_1.16.5.jar|Realm RPG: Fallen Adventurers |realmrpg_skeletons |0.2.0 |CREATE_REG|Manifest: NOSIGNATURE Clumps-6.0.0.28.jar |Clumps |clumps |6.0.0.28 |CREATE_REG|Manifest: NOSIGNATURE mgui-1.16.5-3.3.0.jar |mgui |mgui |3.3.0 |CREATE_REG|Manifest: NOSIGNATURE comforts-forge-1.16.5-4.0.1.5.jar |Comforts |comforts |1.16.5-4.0.1.5 |CREATE_REG|Manifest: NOSIGNATURE Artifacts-1.16.5-2.10.5.jar |Artifacts |artifacts |1.16.5-2.10.5 |CREATE_REG|Manifest: NOSIGNATURE untamedwilds-1.16.5-1.5.8.jar |Untamed Wilds |untamedwilds |1.5.8 |CREATE_REG|Manifest: NOSIGNATURE lazydfu-0.1.3.jar |LazyDFU |lazydfu |0.1.3 |CREATE_REG|Manifest: NOSIGNATURE Phantoms of The End[1.0.0][1.16.5].jar |Phantoms of The End |esendphantoms |1.0.0 |CREATE_REG|Manifest: NOSIGNATURE farsight-1.7.jar |Farsight mod |farsight_view |1.7 |CREATE_REG|Manifest: NOSIGNATURE PineappleDelight-1.16.5-1.0.1.jar |Pineapple Delight |pineapple_delight |1.0 |CREATE_REG|Manifest: NOSIGNATURE iChunUtil-1.16.5-10.7.0.jar |iChunUtil |ichunutil |10.7.0 |CREATE_REG|Manifest: NOSIGNATURE skinlayers3d-forge-1.6.5-mc1.16.5.jar |3d-Skin-Layers |skinlayers3d |1.6.5 |CREATE_REG|Manifest: NOSIGNATURE forge-1.16.5-36.2.34-universal.jar |Forge |forge |36.2.34 |CREATE_REG|Manifest: 22:af:21:d8:19:82:7f:93:94:fe:2b:ac:b7:e4:41:57:68:39:87:b1:a7:5c:c6:44:f9:25:74:21:14:f5:0d:90 culturaldelights-1.16.5-0.9.2.jar |Cultural Delights |culturaldelights |0.9.2 |CREATE_REG|Manifest: NOSIGNATURE Prehistoric_Fauna-2.2.5.jar |Prehistoric Fauna |prehistoricfauna |2.2.5 |CREATE_REG|Manifest: NOSIGNATURE Farmers_Extra_Foods_1.2.jar |Farmer's Extra Foods |farmers_extra_foods |1.0.0 |CREATE_REG|Manifest: NOSIGNATURE selene-1.16.5-1.9.0.jar |Selene |selene |1.16.5-1.0 |CREATE_REG|Manifest: NOSIGNATURE antiqueatlas-6.2.4-forge-mc1.16.5.jar |Antique Atlas |antiqueatlas |6.2.4-forge-mc1.16.5|CREATE_REG|Manifest: NOSIGNATURE hakibar-1.16.5-1.7.jar |Haki Bar |hakibar |1.7 |CREATE_REG|Manifest: NOSIGNATURE forge-1.16.5-36.2.34-client.jar |Minecraft |minecraft |1.16.5 |CREATE_REG|Manifest: NOSIGNATURE smoothchunk1.16.5-2.0.jar |Smoothchunk mod |smoothchunk |2.0 |CREATE_REG|Manifest: NOSIGNATURE voicechat-forge-1.16.5-2.5.15.jar |Simple Voice Chat |voicechat |1.16.5-2.5.15 |CREATE_REG|Manifest: NOSIGNATURE Alex's Delight 1.1.3 - Forge 1.16.5.jar |Alex's Delight |amfd |1.1.3 |CREATE_REG|Manifest: NOSIGNATURE Jade-1.16.4-2.8.3.jar |Jade |jade |2.8.3 |CREATE_REG|Manifest: NOSIGNATURE ShoulderSurfing-Forge-1.16.5-3.2.0.jar |Shoulder Surfing Reloaded |shouldersurfing |1.16.5-3.2.0 |CREATE_REG|Manifest: NOSIGNATURE betterfpsdist-1.2.jar |betterfpsdist mod |betterfpsdist |1.2 |CREATE_REG|Manifest: NOSIGNATURE notenoughanimations-1.2.4.jar |NotEnoughAnimations Mod |notenoughanimations |1.2.4 |CREATE_REG|Manifest: NOSIGNATURE flywheel-1.16-0.2.5.jar |Flywheel |flywheel |1.16-0.2.5 |CREATE_REG|Manifest: NOSIGNATURE create-mc1.16.5_v0.3.2g.jar |Create |create |v0.3.2g |CREATE_REG|Manifest: NOSIGNATURE savageandravage-1.16.5-3.2.0.jar |Savage & Ravage |savageandravage |3.2.0 |CREATE_REG|Manifest: NOSIGNATURE MorePlayerModels-1.16.5.20220731.jar |More Player Models |moreplayermodels |1.16.5.20220731 |CREATE_REG|Manifest: NOSIGNATURE polymorph-forge-1.16.5-0.41.jar |Polymorph |polymorph |1.16.5-0.41 |CREATE_REG|Manifest: NOSIGNATURE AutoRegLib-1.6-49.jar |AutoRegLib |autoreglib |1.6-49 |CREATE_REG|Manifest: NOSIGNATURE Quark-r2.4-322.jar |Quark |quark |r2.4-322 |CREATE_REG|Manifest: NOSIGNATURE StorageDrawers-1.16.3-8.5.2.jar |Storage Drawers |storagedrawers |8.5.2 |CREATE_REG|Manifest: NOSIGNATURE sit-1.16.5-v1.3.2.jar |Sit |sit |v1.3.2 |CREATE_REG|Manifest: NOSIGNATURE nethers_delight-2.1.jar |Nethers Delight |nethers_delight |2.1 |CREATE_REG|Manifest: NOSIGNATURE mvs-2.6.1.jar |Moog's Voyager Structures |mvs |2.6.1 |CREATE_REG|Manifest: NOSIGNATURE appleskin-forge-mc1.16.x-2.5.1.jar |AppleSkin |appleskin |2.5.1+mc1.16.4 |CREATE_REG|Manifest: NOSIGNATURE ferritecore-2.1.1-forge.jar |Ferrite Core |ferritecore |2.1.1 |CREATE_REG|Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a BackTools-1.16.5-10.2.0.jar |Back Tools |backtools |10.2.0 |CREATE_REG|Manifest: NOSIGNATURE largemeals-1.16.5-2.2.jar |Large Meals |largemeals |1.16.5-2.2 |CREATE_REG|Manifest: NOSIGNATURE byg-1.3.6.jar |Oh The Biomes You'll Go |byg |1.3.4 |CREATE_REG|Manifest: NOSIGNATURE Aquaculture-1.16.5-2.1.23.jar |Aquaculture 2 |aquaculture |1.16.5-2.1.23 |CREATE_REG|Manifest: NOSIGNATURE illagers_plus-1.16.5v1.0.3.jar |Illagers+ |illagers_plus |1.16.5v1.0.2 |CREATE_REG|Manifest: NOSIGNATURE farmerstea-1.16.5-1.3.jar |Farmer's Tea - A Compat Mod |farmerstea |1.16.5-1.3 |CREATE_REG|Manifest: NOSIGNATURE valkyrienskies-116-2.0.0-alpha6.jar |Valkyrien Skies 2 |valkyrienskies |2.0.0-alpha6 |CREATE_REG|Manifest: NOSIGNATURE eureka-1.0.0-alpha7.jar |VS Eureka Mod |vs_eureka |1.0.0-alpha7 |CREATE_REG|Manifest: NOSIGNATURE expandability-2.0.1-forge.jar |ExpandAbility |expandability |2.0.1 |CREATE_REG|Manifest: NOSIGNATURE CosmeticArmorReworked-1.16.5-v5a.jar |CosmeticArmorReworked |cosmeticarmorreworked |1.16.5-v5a |CREATE_REG|Manifest: 5e:ed:25:99:e4:44:14:c0:dd:89:c1:a9:4c:10:b5:0d:e4:b1:52:50:45:82:13:d8:d0:32:89:67:56:57:01:53 overloadedarmorbar-5.1.0.jar |Overloaded Armor Bar |overloadedarmorbar |5.1.0 |CREATE_REG|Manifest: NOSIGNATURE Crash Report UUID: ce8bf211-492e-4707-b7b8-a48f9c6d9b79 Launched Version: forge-36.2.34 Backend library: LWJGL version 3.2.2 build 10 Backend API: AMD Radeon(TM) Graphics GL version 4.6.0 Compatibility Profile Context 24.3.1.240312, ATI Technologies Inc. GL Caps: Using framebuffer using OpenGL 3.0 Using VBOs: Yes Is Modded: Definitely; Client brand changed to 'forge' Type: Client (map_client.txt) CPU: 12x AMD Ryzen 5 7600X 6-Core Processor I would really like to keep VS and VS Eureka so if any other mods have to go it's fine by me
    • I was in urgent need of a hacker to help recover my lost files and hack my partner phone. I met a hacker who scammed me of my money. I was scared of hiring another hacker not until i saw good recommendations about ( spyrecovery36) of his good works. i gave him a try cos i was desperate to get my files back and hack my partner phone, Good to see there are still great hackers like ( spyrecovery36 @ gm ail com ). i got my job done and can recommend him to anyone else. He also offer services like delete criminal record, recover wallet, track GPS, facebook recovery and many more...
    • Hi I was trying to prevent entity in the level from being pushed by flowing fluid. I found in class 'FluidType' the method 'boolean canPushEntity(entity)' Will using mixin here cause problems? If so what are the other ways to achieve this?
  • Topics

×
×
  • Create New...

Important Information

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