Jump to content

[1.7.10] [Solved] Manipulating the players model.


Recommended Posts

Posted

Hi, I would like to know how to manipulate the player's model when he/she is holding a certain item. It would be very simple to how flans mod does it when the player holds a gun. I tried RenderPlayerEvent but nothing changed.

Posted

I've tried this:

 

package com.awsp8.wizardry.Events;

import com.awsp8.wizardry.Wizardry;
import com.awsp8.wizardry.Items.CondencedMagic;

import net.minecraftforge.client.event.RenderPlayerEvent;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;

public class PlayerRender {

@SubscribeEvent
public void renderPlayer(RenderPlayerEvent event){
	if (event.entityPlayer.inventory.getCurrentItem() == CondencedMagic.condensedMagic){
		event.renderer.modelBipedMain.bipedLeftArm.rotateAngleY = 180;
	}
}
}

Posted

I tried that and got this crash when I went into F5 mode:

 

[16:28:50] [main/INFO] [GradleStart]: Extra: []
[16:28:51] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Wyatt/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker]
[16:28:51] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[16:28:51] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[16:28:51] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker
[16:28:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
[16:28:51] [main/INFO] [FML]: Forge Mod Loader version 7.10.85.1232 for Minecraft 1.7.10 loading
[16:28:51] [main/INFO] [FML]: Java is Java HotSpot(TM) Client VM, version 1.8.0_11, running on Windows 8.1:x86:6.3, installed at C:\Users\Wyatt\Documents\eclipse\jre
[16:28:51] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[16:28:51] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker
[16:28:51] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin
[16:28:51] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[16:28:51] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[16:28:51] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
[16:28:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[16:28:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[16:28:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[16:28:52] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[16:29:00] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[16:29:00] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[16:29:00] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
[16:29:01] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker
[16:29:02] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker
[16:29:02] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[16:29:04] [main/INFO]: Setting user: Player582
[16:29:09] [Client thread/INFO]: LWJGL Version: 2.9.1
[16:29:11] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
[16:29:11] [Client thread/INFO] [FML]: MinecraftForge v10.13.2.1232 Initialized
[16:29:11] [Client thread/INFO] [FML]: Replaced 182 ore recipies
[16:29:11] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
[16:29:13] [Client thread/INFO] [FML]: Searching C:\Users\Wyatt\Desktop\Mods\1.7.10\Wizardry\eclipse\mods for mods
[16:29:21] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
[16:29:22] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, wizardry] at CLIENT
[16:29:22] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, wizardry] at SERVER
[16:29:23] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Wizardry
[16:29:23] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[16:29:23] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations
[16:29:23] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.InstantiationException
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at sun.reflect.InstantiationExceptionConstructorAccessorImpl.newInstance(Unknown Source)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.lang.reflect.Constructor.newInstance(Unknown Source)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at cpw.mods.fml.common.eventhandler.EventBus.register(EventBus.java:103)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at cpw.mods.fml.common.eventhandler.EventBus.register(EventBus.java:85)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at com.awsp8.wizardry.Wizardry.Preinit(Wizardry.java:132)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.lang.reflect.Method.invoke(Unknown Source)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.lang.reflect.Method.invoke(Unknown Source)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at com.google.common.eventbus.EventBus.post(EventBus.java:275)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:208)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.lang.reflect.Method.invoke(Unknown Source)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at com.google.common.eventbus.EventBus.post(EventBus.java:275)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:118)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:513)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:239)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.client.Minecraft.startGame(Minecraft.java:522)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.client.Minecraft.run(Minecraft.java:931)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.client.main.Main.main(Main.java:164)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at java.lang.reflect.Method.invoke(Unknown Source)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78)
[16:29:23] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: 	at GradleStart.main(GradleStart.java:45)
[16:29:23] [Client thread/INFO] [wizardry]: Initializing Items...
[16:29:23] [Client thread/INFO] [wizardry]: Initializing Blocks...
[16:29:23] [Client thread/INFO] [wizardry]: Initalizing Creative Tabs...
[16:29:23] [Client thread/INFO] [wizardry]: Initializing (And Registering, Because of Errors) Fluids...
[16:29:23] [Client thread/INFO] [FML]: Applying holder lookups
[16:29:23] [Client thread/INFO] [FML]: Holder lookups applied
[16:29:24] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[16:29:24] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
[16:29:24] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[16:29:24] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[16:29:24] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[16:29:25] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[16:29:25] [sound Library Loader/INFO]: Sound engine started
[16:29:33] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
[16:29:33] [Client thread/INFO]: Created: 256x256 textures/items-atlas
[16:29:33] [Client thread/INFO] [wizardry]: [Wizardry] Wow, Wizardry hasn't imploded yet. 
[16:29:33] [Client thread/INFO] [wizardry]: [Wizardry] WizardryRegistry? Wake up! It's your turn!
[16:29:33] [Client thread/INFO] [wizardry]: [WizardryRegistry] Preparing to start registering...
[16:29:33] [Client thread/INFO] [wizardry]: [WizardryRegistry] Registering Items...
[16:29:33] [Client thread/INFO] [wizardry]: [WizardryRegistry] Registering Blocks...
[16:29:33] [Client thread/INFO] [wizardry]: [WizardryRegistry] Registering Entities...
[16:29:33] [Client thread/INFO] [wizardry]: [WizardryRegistry] Registering Creative Tabs...
[16:29:33] [Client thread/INFO] [wizardry]: [WizardryRegistry] Registering Creative Tab Items...
[16:29:33] [Client thread/INFO] [wizardry]: [WizardryRegistry] Registering Creative Tab Blocks...
[16:29:33] [Client thread/INFO] [wizardry]: [WizardryRegistry] Registering Crafting Recipes...
[16:29:33] [Client thread/INFO] [wizardry]: [WizardryRegistry] Registering Furnace/Smelting Recipes...
[16:29:33] [Client thread/INFO] [wizardry]: [WizardryRegistry] Registering Events...
[16:29:33] [Client thread/INFO] [wizardry]: [WizardryRegistry] Registering Other Stuff...
[16:29:34] [Client thread/INFO] [wizardry]: [WizardryRegistry] Finished Registering! Here is a Bit of a Recap:
[16:29:34] [Client thread/INFO] [wizardry]: [WizardryRegistry] 20Items Registed.
[16:29:34] [Client thread/INFO] [wizardry]: [WizardryRegistry] 4Blocks Registed.
[16:29:34] [Client thread/INFO] [wizardry]: [WizardryRegistry] 4Entities Registed.
[16:29:34] [Client thread/INFO] [wizardry]: [WizardryRegistry] 1Creative Tabs Registed.
[16:29:34] [Client thread/INFO] [wizardry]: [WizardryRegistry] 20Creative Tab Items Registed.
[16:29:34] [Client thread/INFO] [wizardry]: [WizardryRegistry] 4Creative Tab Blocks Registed.
[16:29:34] [Client thread/INFO] [wizardry]: [WizardryRegistry] 20Crafting Recipes Registed.
[16:29:34] [Client thread/INFO] [wizardry]: [WizardryRegistry] 4Furnace/Smelting Recipes Registed.
[16:29:34] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
[16:29:34] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Wizardry
[16:29:35] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
[16:29:35] [Client thread/ERROR]: Using missing texture, unable to load wizardry:textures/items/arcanicIron.png
java.io.FileNotFoundException: wizardry:textures/items/arcanicIron.png
at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?]
at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]
at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]
at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]
at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?]
at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_11]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_11]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_11]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_11]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]
at GradleStart.main(GradleStart.java:45) [start/:?]
[16:29:35] [Client thread/ERROR]: Using missing texture, unable to load wizardry:textures/items/arcanicIronOre.png
java.io.FileNotFoundException: wizardry:textures/items/arcanicIronOre.png
at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?]
at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]
at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]
at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]
at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?]
at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_11]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_11]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_11]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_11]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]
at GradleStart.main(GradleStart.java:45) [start/:?]
[16:29:36] [Client thread/INFO]: Created: 256x256 textures/items-atlas
[16:29:36] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[16:29:36] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
[16:29:36] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:     Author: Paul Lamb, www.paulscode.com
[16:29:36] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[16:29:36] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[16:29:36] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
[16:29:36] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[16:29:36] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[16:29:36] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[16:29:36] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[16:29:36] [sound Library Loader/INFO]: Sound engine started
[16:29:50] [server thread/INFO]: Starting integrated minecraft server version 1.7.10
[16:29:50] [server thread/INFO]: Generating keypair
[16:29:51] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance
[16:29:51] [server thread/INFO] [FML]: Applying holder lookups
[16:29:51] [server thread/INFO] [FML]: Holder lookups applied
[16:29:51] [server thread/INFO] [FML]: Loading dimension 0 (Non-Dragon Infested Test World) (net.minecraft.server.integrated.IntegratedServer@12e9976)
[16:29:51] [server thread/INFO] [FML]: Loading dimension 1 (Non-Dragon Infested Test World) (net.minecraft.server.integrated.IntegratedServer@12e9976)
[16:29:52] [server thread/INFO] [FML]: Loading dimension -1 (Non-Dragon Infested Test World) (net.minecraft.server.integrated.IntegratedServer@12e9976)
[16:29:52] [server thread/INFO]: Preparing start region for level 0
[16:29:53] [server thread/INFO]: Preparing spawn area: 0%
[16:29:54] [server thread/INFO]: Preparing spawn area: 16%
[16:29:55] [server thread/INFO]: Preparing spawn area: 48%
[16:29:56] [server thread/INFO]: Preparing spawn area: 84%
[16:29:56] [server thread/INFO]: Changing view distance to 8, from 10
[16:29:58] [Netty Client IO #0/INFO] [FML]: Server protocol version 1
[16:29:58] [Netty IO #1/INFO] [FML]: Client protocol version 1
[16:29:58] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]
[16:29:58] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT
[16:29:58] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER
[16:29:58] [server thread/INFO] [FML]: [server thread] Server side modded connection established
[16:29:58] [server thread/INFO]: Player582[local:E:0e09bf4c] logged in with entity id 183 at (118.22986346607115, 64.0, -317.73952345010827)
[16:29:58] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established
[16:29:58] [server thread/INFO]: Player582 joined the game
[16:29:59] [Client thread/INFO]: [CHAT] §3Thank you for downloading Wizardry!
[16:30:09] [Client thread/ERROR] [FML]: Exception caught during firing event net.minecraftforge.client.event.RenderPlayerEvent$Pre@1a4637c:
java.lang.NullPointerException
at com.awsp8.wizardry.Events.PlayerRender.preRenderPlayer(PlayerRender.java:17) ~[PlayerRender.class:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler_8_PlayerRender_preRenderPlayer_Pre.invoke(.dynamic) ~[?:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54) ~[ASMEventHandler.class:?]
at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:138) [EventBus.class:?]
at net.minecraft.client.renderer.entity.RenderPlayer.doRender(RenderPlayer.java:140) [RenderPlayer.class:?]
at net.minecraft.client.renderer.entity.RenderPlayer.doRender(RenderPlayer.java:565) [RenderPlayer.class:?]
at net.minecraft.client.renderer.entity.RenderManager.func_147939_a(RenderManager.java:300) [RenderManager.class:?]
at net.minecraft.client.renderer.entity.RenderManager.renderEntityStatic(RenderManager.java:278) [RenderManager.class:?]
at net.minecraft.client.renderer.entity.RenderManager.renderEntitySimple(RenderManager.java:251) [RenderManager.class:?]
at net.minecraft.client.renderer.RenderGlobal.renderEntities(RenderGlobal.java:527) [RenderGlobal.class:?]
at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1300) [EntityRenderer.class:?]
at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1087) [EntityRenderer.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1056) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:951) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_11]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_11]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_11]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_11]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]
at GradleStart.main(GradleStart.java:45) [start/:?]
[16:30:09] [Client thread/ERROR] [FML]: Index: 1 Listeners:
[16:30:09] [Client thread/ERROR] [FML]: 0: NORMAL
[16:30:09] [Client thread/ERROR] [FML]: 1: ASM: com.awsp8.wizardry.Events.PlayerRender@38a038 preRenderPlayer(Lnet/minecraftforge/client/event/RenderPlayerEvent$Pre;)V
[16:30:10] [server thread/INFO]: Stopping server
[16:30:10] [server thread/INFO]: Saving players
[16:30:11] [server thread/INFO]: Saving worlds
[16:30:11] [server thread/INFO]: Saving chunks for level 'Non-Dragon Infested Test World'/Overworld
[16:30:11] [server thread/INFO]: Saving chunks for level 'Non-Dragon Infested Test World'/Nether
[16:30:11] [server thread/INFO]: Saving chunks for level 'Non-Dragon Infested Test World'/The End
[16:30:13] [server thread/INFO] [FML]: Unloading dimension 0
[16:30:13] [server thread/INFO] [FML]: Unloading dimension -1
[16:30:13] [server thread/INFO] [FML]: Unloading dimension 1
[16:30:13] [server thread/INFO] [FML]: Applying holder lookups
[16:30:13] [server thread/INFO] [FML]: Holder lookups applied
[16:30:14] [Client thread/FATAL]: Reported exception thrown!
net.minecraft.util.ReportedException: Rendering entity in world
at net.minecraft.client.renderer.entity.RenderManager.func_147939_a(RenderManager.java:346) ~[RenderManager.class:?]
at net.minecraft.client.renderer.entity.RenderManager.renderEntityStatic(RenderManager.java:278) ~[RenderManager.class:?]
at net.minecraft.client.renderer.entity.RenderManager.renderEntitySimple(RenderManager.java:251) ~[RenderManager.class:?]
at net.minecraft.client.renderer.RenderGlobal.renderEntities(RenderGlobal.java:527) ~[RenderGlobal.class:?]
at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1300) ~[EntityRenderer.class:?]
at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1087) ~[EntityRenderer.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1056) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:951) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_11]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_11]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_11]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_11]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]
at GradleStart.main(GradleStart.java:45) [start/:?]
Caused by: java.lang.NullPointerException
at com.awsp8.wizardry.Events.PlayerRender.preRenderPlayer(PlayerRender.java:17) ~[PlayerRender.class:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler_8_PlayerRender_preRenderPlayer_Pre.invoke(.dynamic) ~[?:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54) ~[ASMEventHandler.class:?]
at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:138) ~[EventBus.class:?]
at net.minecraft.client.renderer.entity.RenderPlayer.doRender(RenderPlayer.java:140) ~[RenderPlayer.class:?]
at net.minecraft.client.renderer.entity.RenderPlayer.doRender(RenderPlayer.java:565) ~[RenderPlayer.class:?]
at net.minecraft.client.renderer.entity.RenderManager.func_147939_a(RenderManager.java:300) ~[RenderManager.class:?]
... 16 more
[16:30:14] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ----
// Ouch. That hurt 

Time: 11/18/14 4:30 PM
Description: Rendering entity in world

java.lang.NullPointerException: Rendering entity in world
at com.awsp8.wizardry.Events.PlayerRender.preRenderPlayer(PlayerRender.java:17)
at cpw.mods.fml.common.eventhandler.ASMEventHandler_8_PlayerRender_preRenderPlayer_Pre.invoke(.dynamic)
at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54)
at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:138)
at net.minecraft.client.renderer.entity.RenderPlayer.doRender(RenderPlayer.java:140)
at net.minecraft.client.renderer.entity.RenderPlayer.doRender(RenderPlayer.java:565)
at net.minecraft.client.renderer.entity.RenderManager.func_147939_a(RenderManager.java:300)
at net.minecraft.client.renderer.entity.RenderManager.renderEntityStatic(RenderManager.java:278)
at net.minecraft.client.renderer.entity.RenderManager.renderEntitySimple(RenderManager.java:251)
at net.minecraft.client.renderer.RenderGlobal.renderEntities(RenderGlobal.java:527)
at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1300)
at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1087)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1056)
at net.minecraft.client.Minecraft.run(Minecraft.java:951)
at net.minecraft.client.main.Main.main(Main.java:164)
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 net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78)
at GradleStart.main(GradleStart.java:45)


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

-- Head --
Stacktrace:
at com.awsp8.wizardry.Events.PlayerRender.preRenderPlayer(PlayerRender.java:17)
at cpw.mods.fml.common.eventhandler.ASMEventHandler_8_PlayerRender_preRenderPlayer_Pre.invoke(.dynamic)
at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54)
at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:138)
at net.minecraft.client.renderer.entity.RenderPlayer.doRender(RenderPlayer.java:140)
at net.minecraft.client.renderer.entity.RenderPlayer.doRender(RenderPlayer.java:565)

-- Entity being rendered --
Details:
Entity Type: null (net.minecraft.client.entity.EntityClientPlayerMP)
Entity ID: 183
Entity Name: Player582
Entity's Exact location: 118.23, 65.62, -317.74
Entity's Block location: World: (118,65,-318), Chunk: (at 6,4,2 in 7,-20; contains blocks 112,0,-320 to 127,255,-305), Region: (0,-1; contains chunks 0,-32 to 31,-1, blocks 0,0,-512 to 511,255,-1)
Entity's Momentum: 0.00, -0.08, 0.00

-- Renderer details --
Details:
Assigned renderer: net.minecraft.client.renderer.entity.RenderPlayer@baf2c6
Location: 0.00,0.00,0.00 - World: (0,0,0), Chunk: (at 0,0,0 in 0,0; contains blocks 0,0,0 to 15,255,15), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
Rotation: 198.45042
Delta: 0.43047786
Stacktrace:
at net.minecraft.client.renderer.entity.RenderManager.func_147939_a(RenderManager.java:300)
at net.minecraft.client.renderer.entity.RenderManager.renderEntityStatic(RenderManager.java:278)
at net.minecraft.client.renderer.entity.RenderManager.renderEntitySimple(RenderManager.java:251)
at net.minecraft.client.renderer.RenderGlobal.renderEntities(RenderGlobal.java:527)
at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1300)

-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityClientPlayerMP['Player582'/183, l='MpServer', x=118.23, y=65.62, z=-317.74]]
Chunk stats: MultiplayerChunkCache: 286, 286
Level seed: 0
Level generator: ID 00 - default, ver 1. Features enabled: false
Level generator options: 
Level spawn location: World: (149,64,-154), Chunk: (at 5,4,6 in 9,-10; contains blocks 144,0,-160 to 159,255,-145), Region: (0,-1; contains chunks 0,-32 to 31,-1, blocks 0,0,-512 to 511,255,-1)
Level time: 49163 game time, 24036 day time
Level dimension: 0
Level storage version: 0x00000 - Unknown?
Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
Forced entities: 106 total; [EntityCreeper['Creeper'/26, l='MpServer', x=46.50, y=69.00, z=-289.50], EntityCreeper['Creeper'/30, l='MpServer', x=50.84, y=74.00, z=-334.91], EntityZombie['Zombie'/31, l='MpServer', x=56.50, y=16.00, z=-267.50], EntitySkeleton['Skeleton'/32, l='MpServer', x=53.50, y=16.00, z=-267.50], EntitySkeleton['Skeleton'/33, l='MpServer', x=56.50, y=16.00, z=-266.50], EntityCreeper['Creeper'/34, l='MpServer', x=53.44, y=16.00, z=-269.31], EntityZombie['Zombie'/35, l='MpServer', x=52.50, y=16.00, z=-271.50], EntitySkeleton['Skeleton'/38, l='MpServer', x=72.44, y=70.00, z=-330.06], EntitySheep['Sheep'/39, l='MpServer', x=76.53, y=68.00, z=-305.66], EntitySkeleton['Skeleton'/40, l='MpServer', x=73.84, y=46.00, z=-292.44], EntitySkeleton['Skeleton'/41, l='MpServer', x=79.50, y=21.00, z=-277.50], EntityWitch['Witch'/42, l='MpServer', x=75.50, y=19.00, z=-267.50], EntitySheep['Sheep'/43, l='MpServer', x=74.63, y=64.00, z=-270.53], EntityCreeper['Creeper'/44, l='MpServer', x=75.59, y=64.00, z=-260.94], EntitySheep['Sheep'/45, l='MpServer', x=69.91, y=65.00, z=-270.03], EntitySheep['Sheep'/46, l='MpServer', x=66.84, y=69.00, z=-241.66], EntityItem['item.item.sulphur'/50, l='MpServer', x=90.13, y=31.13, z=-350.88], EntityItem['item.item.rottenFlesh'/51, l='MpServer', x=90.31, y=50.13, z=-348.25], EntitySkeleton['Skeleton'/52, l='MpServer', x=84.38, y=27.00, z=-313.00], EntityCreeper['Creeper'/53, l='MpServer', x=84.00, y=27.00, z=-309.44], EntityZombie['Zombie'/54, l='MpServer', x=87.50, y=39.00, z=-295.50], EntityZombie['Zombie'/55, l='MpServer', x=85.50, y=39.00, z=-296.50], EntitySkeleton['Skeleton'/56, l='MpServer', x=89.50, y=39.00, z=-298.50], EntityBat['Bat'/57, l='MpServer', x=93.94, y=47.00, z=-277.28], EntitySheep['Sheep'/58, l='MpServer', x=93.47, y=63.00, z=-288.34], EntitySkeleton['Skeleton'/59, l='MpServer', x=92.50, y=62.00, z=-296.13], EntityCreeper['Creeper'/60, l='MpServer', x=81.00, y=43.00, z=-287.59], EntityClientPlayerMP['Player582'/183, l='MpServer', x=118.23, y=65.62, z=-317.74], EntitySheep['Sheep'/61, l='MpServer', x=84.63, y=64.00, z=-285.19], EntitySkeleton['Skeleton'/62, l='MpServer', x=91.50, y=64.00, z=-283.91], EntitySheep['Sheep'/63, l='MpServer', x=98.41, y=63.00, z=-247.38], EntitySheep['Sheep'/68, l='MpServer', x=107.13, y=63.00, z=-304.63], EntitySpider['Spider'/69, l='MpServer', x=96.72, y=39.00, z=-298.38], EntityZombie['Zombie'/70, l='MpServer', x=100.34, y=33.00, z=-297.66], EntitySpider['Spider'/71, l='MpServer', x=104.50, y=33.00, z=-294.50], EntitySheep['Sheep'/72, l='MpServer', x=107.81, y=64.00, z=-290.41], EntitySheep['Sheep'/73, l='MpServer', x=118.84, y=63.00, z=-277.91], EntityChicken['Chicken'/74, l='MpServer', x=96.44, y=47.00, z=-257.47], EntityChicken['Chicken'/75, l='MpServer', x=104.44, y=62.00, z=-264.56], EntityChicken['Chicken'/76, l='MpServer', x=98.53, y=62.00, z=-259.47], EntityBat['Bat'/83, l='MpServer', x=115.75, y=39.01, z=-353.72], EntityZombie['Zombie'/84, l='MpServer', x=117.50, y=63.00, z=-350.50], EntityZombie['Zombie'/85, l='MpServer', x=121.50, y=63.00, z=-351.50], EntityItem['item.item.orbEmpty'/86, l='MpServer', x=115.84, y=56.13, z=-324.66], EntityItem['item.tile.sparklingWaterBlock'/87, l='MpServer', x=116.06, y=62.13, z=-315.59], EntityItem['item.tile.leavesMaztrix'/88, l='MpServer', x=114.19, y=61.13, z=-318.38], EntityItem['item.item.orbEmpty'/89, l='MpServer', x=116.53, y=62.13, z=-316.53], EntityChicken['Chicken'/90, l='MpServer', x=115.44, y=62.42, z=-309.56], EntitySheep['Sheep'/91, l='MpServer', x=122.41, y=63.00, z=-273.25], EntitySheep['Sheep'/92, l='MpServer', x=116.50, y=66.00, z=-283.75], EntitySkeleton['Skeleton'/93, l='MpServer', x=143.44, y=70.00, z=-350.16], EntityBat['Bat'/94, l='MpServer', x=116.50, y=14.45, z=-325.50], EntitySkeleton['Skeleton'/95, l='MpServer', x=136.31, y=31.00, z=-304.00], EntitySquid['Squid'/96, l='MpServer', x=140.50, y=54.38, z=-288.22], EntityChicken['Chicken'/97, l='MpServer', x=148.44, y=78.00, z=-342.47], EntityZombie['Zombie'/98, l='MpServer', x=152.16, y=69.00, z=-259.13], EntityZombie['Zombie'/103, l='MpServer', x=170.50, y=26.00, z=-333.50], EntityZombie['Zombie'/104, l='MpServer', x=172.50, y=26.00, z=-318.50], EntityCreeper['Creeper'/105, l='MpServer', x=172.50, y=26.00, z=-316.50], EntityCreeper['Creeper'/106, l='MpServer', x=172.50, y=26.00, z=-315.50], EntitySquid['Squid'/107, l='MpServer', x=171.19, y=58.34, z=-276.44], EntitySquid['Squid'/108, l='MpServer', x=164.50, y=55.28, z=-277.84], EntitySquid['Squid'/109, l='MpServer', x=172.38, y=57.34, z=-268.41], EntitySquid['Squid'/110, l='MpServer', x=165.53, y=58.34, z=-270.44], EntitySquid['Squid'/111, l='MpServer', x=171.72, y=58.38, z=-266.53], EntitySquid['Squid'/112, l='MpServer', x=177.44, y=55.09, z=-265.75], EntityCreeper['Creeper'/115, l='MpServer', x=179.00, y=47.00, z=-335.38], EntityChicken['Chicken'/116, l='MpServer', x=182.56, y=74.00, z=-317.44], EntityBat['Bat'/117, l='MpServer', x=176.72, y=23.10, z=-286.25], EntitySquid['Squid'/118, l='MpServer', x=178.28, y=56.28, z=-268.50], EntityZombie['Zombie'/119, l='MpServer', x=180.41, y=68.00, z=-252.59], EntitySkeleton['Skeleton'/121, l='MpServer', x=193.50, y=81.00, z=-350.13], EntitySkeleton['Skeleton'/123, l='MpServer', x=197.34, y=75.00, z=-326.94], EntitySkeleton['Skeleton'/126, l='MpServer', x=198.56, y=13.00, z=-291.44], EntityChicken['Chicken'/129, l='MpServer', x=195.38, y=79.00, z=-289.66], EntityChicken['Chicken'/130, l='MpServer', x=196.53, y=69.00, z=-302.56], EntityChicken['Chicken'/132, l='MpServer', x=197.34, y=72.00, z=-272.53], EntityBat['Bat'/184, l='MpServer', x=115.25, y=39.76, z=-352.78], EntityZombie['Zombie'/185, l='MpServer', x=97.50, y=38.00, z=-365.50], EntityZombie['Zombie'/186, l='MpServer', x=94.50, y=67.00, z=-364.50], EntityZombie['Zombie'/187, l='MpServer', x=94.00, y=67.00, z=-365.56], EntityChicken['Chicken'/188, l='MpServer', x=150.47, y=70.00, z=-364.47], EntitySkeleton['Skeleton'/189, l='MpServer', x=121.50, y=20.00, z=-377.50], EntitySkeleton['Skeleton'/190, l='MpServer', x=113.50, y=32.00, z=-383.50], EntityBat['Bat'/192, l='MpServer', x=97.22, y=16.04, z=-384.16], EntityChicken['Chicken'/193, l='MpServer', x=127.56, y=67.14, z=-386.09], EntityChicken['Chicken'/194, l='MpServer', x=142.50, y=69.00, z=-382.50], EntityChicken['Chicken'/195, l='MpServer', x=130.59, y=68.00, z=-372.44], EntityChicken['Chicken'/196, l='MpServer', x=140.41, y=69.00, z=-375.41], EntitySkeleton['Skeleton'/197, l='MpServer', x=168.50, y=20.00, z=-357.50], EntityZombie['Zombie'/198, l='MpServer', x=87.50, y=69.00, z=-373.50], EntityChicken['Chicken'/199, l='MpServer', x=135.17, y=62.00, z=-379.63], EntityChicken['Chicken'/200, l='MpServer', x=147.53, y=65.00, z=-369.47], EntityBat['Bat'/201, l='MpServer', x=64.16, y=46.98, z=-368.91], EntityChicken['Chicken'/202, l='MpServer', x=124.47, y=64.00, z=-391.47], EntityItem['item.item.rottenFlesh'/1483, l='MpServer', x=113.22, y=63.13, z=-375.28], EntityCreeper['Creeper'/204, l='MpServer', x=100.47, y=14.00, z=-384.13], EntityChicken['Chicken'/205, l='MpServer', x=154.47, y=68.00, z=-390.53], EntityChicken['Chicken'/206, l='MpServer', x=153.59, y=73.00, z=-396.59], EntitySheep['Sheep'/207, l='MpServer', x=48.53, y=74.00, z=-379.81], EntitySkeleton['Skeleton'/208, l='MpServer', x=162.50, y=62.00, z=-385.50], EntityChicken['Chicken'/209, l='MpServer', x=198.63, y=98.00, z=-361.34], EntityChicken['Chicken'/220, l='MpServer', x=194.47, y=91.00, z=-386.44], EntityChicken['Chicken'/226, l='MpServer', x=192.63, y=89.00, z=-391.34], EntityZombie['Zombie'/229, l='MpServer', x=111.50, y=36.00, z=-387.50], EntityZombie['Zombie'/230, l='MpServer', x=106.50, y=36.00, z=-392.50]]
Retry entities: 0 total; []
Server brand: fml,forge
Server type: Integrated singleplayer server
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:415)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2555)
at net.minecraft.client.Minecraft.run(Minecraft.java:973)
at net.minecraft.client.main.Main.main(Main.java:164)
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 net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78)
at GradleStart.main(GradleStart.java:45)

-- System Details --
Details:
Minecraft Version: 1.7.10
Operating System: Windows 8.1 (x86) version 6.3
Java Version: 1.8.0_11, Oracle Corporation
Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
Memory: 856768744 bytes (817 MB) / 1046937600 bytes (998 MB) up to 1046937600 bytes (998 MB)
JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95
FML: MCP v9.05 FML v7.10.85.1232 Minecraft Forge 10.13.2.1232 4 mods loaded, 4 mods active
mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
FML{7.10.85.1232} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1232.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Forge{10.13.2.1232} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1232.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
wizardry{1.0} [Wizardry] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Launched Version: 1.7.10
LWJGL: 2.9.1
OpenGL: Intel(R) HD Graphics GL version 4.0.0 - Build 10.18.10.3349, Intel
GL Caps: Using GL 1.3 multitexturing.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Anisotropic filtering is supported and maximum anisotropy is 16.
Shaders are available because OpenGL 2.1 is supported.

Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Packs: []
Current Language: English (US)
Profiler Position: N/A (disabled)
Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Anisotropic Filtering: Off (1)
[16:30:14] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Wyatt\Desktop\Mods\1.7.10\Wizardry\eclipse\.\crash-reports\crash-2014-11-18_16.30.14-client.txt
AL lib: (EE) alc_cleanup: 1 device not closed
Java HotSpot(TM) Client VM warning: Using incremental CMS is deprecated and will likely be removed in a future release

 

Here is my code, maybe I am doing something wrong?

 

package com.awsp8.wizardry.Events;

import com.awsp8.wizardry.Wizardry;
import com.awsp8.wizardry.Items.CondencedMagic;

import net.minecraft.client.model.ModelRenderer;
import net.minecraftforge.client.event.RenderPlayerEvent;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;

public class PlayerRender {

ModelRenderer leftArm;
ModelRenderer rightArm;

@SubscribeEvent
public void preRenderPlayer(RenderPlayerEvent.Pre event){
	event.renderer.modelBipedMain.bipedLeftArm.showModel = false;
	event.renderer.modelBipedMain.bipedRightArm.showModel = false;
}

@SubscribeEvent
public void renderPlayer(RenderPlayerEvent event){
	if (event.entityPlayer.inventory.getCurrentItem() == CondencedMagic.condensedMagic){
		leftArm = event.renderer.modelBipedMain.bipedLeftArm;
		leftArm.rotateAngleY = 90;
		leftArm.rotateAngleX = 45;
		leftArm.showModel = true;

		rightArm = event.renderer.modelBipedMain.bipedRightArm;
		rightArm.rotateAngleY = 90;
		rightArm.rotateAngleX = 45;
		rightArm.showModel = true;
	}
}

@SubscribeEvent
public void postRenderPlayer(RenderPlayerEvent.Post event){
	event.renderer.modelBipedMain.bipedLeftArm = leftArm;
	event.renderer.modelBipedMain.bipedRightArm = rightArm;
}
}

 

Edit: Oh and the screen also was all blue when I went into F5 mode, then it crashed.

Posted

Null Pointer Exceptions are very easy to diagnose.  It tells you what line it happened on (17):

 

event.renderer.modelBipedMain.bipedLeftArm.showModel = false;

 

Something there is null.

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

 

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

 

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

Posted

That will not work. You need to create a new arm.

 

Oh, sorry, you mean with the "new" keyword thingy? I'll try that.

Posted

Uhh.. Look mom, no hands!

UrRFcY8.png

 

Here's my code, it's acting wierd as you can see:

package com.awsp8.wizardry.Events;

import com.awsp8.wizardry.Wizardry;
import com.awsp8.wizardry.Items.CondencedMagic;

import net.minecraft.client.model.ModelRenderer;
import net.minecraftforge.client.event.RenderPlayerEvent;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;

public class PlayerRender {

@SubscribeEvent
public void preRenderPlayer(RenderPlayerEvent.Pre event){
	event.renderer.modelBipedMain.bipedLeftArm.showModel = false;
	event.renderer.modelBipedMain.bipedRightArm.showModel = false;
}

@SubscribeEvent
public void renderPlayer(RenderPlayerEvent event){
	if (event.entityPlayer.inventory.getCurrentItem() == CondencedMagic.condensedMagic){
		event.renderer.modelBipedMain.bipedLeftArm = new ModelRenderer(event.renderer.modelBipedMain);
		event.renderer.modelBipedMain.bipedLeftArm.rotateAngleY = 90;
		event.renderer.modelBipedMain.bipedLeftArm.rotateAngleX = 45;

		event.renderer.modelBipedMain.bipedRightArm = new ModelRenderer(event.renderer.modelBipedMain);
		event.renderer.modelBipedMain.bipedRightArm.rotateAngleY = 90;
		event.renderer.modelBipedMain.bipedRightArm.rotateAngleX = 45;
	}
}

@SubscribeEvent
public void postRenderPlayer(RenderPlayerEvent.Post event){
	event.renderer.modelBipedMain.bipedLeftArm.showModel = true;
	event.renderer.modelBipedMain.bipedRightArm.showModel = true;
}
}

Posted

No no no... Don't modify the model's arm at all except telling it to not render.

 

Ok, i got that then what?

Posted

Then you should see the model except the left arm, right? Now draw your own left arm.

 

Yes I can see the model except for the arm. Would I draw the new arm with addBox or what?

Posted

You can draw it however you want.

 

Still not working:

package com.awsp8.wizardry.Events;

import com.awsp8.wizardry.Wizardry;
import com.awsp8.wizardry.Items.CondencedMagic;

import net.minecraft.client.model.ModelRenderer;
import net.minecraftforge.client.event.RenderPlayerEvent;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;

public class PlayerRender {

@SubscribeEvent
public void preRenderPlayer(RenderPlayerEvent.Pre event){
	event.renderer.modelBipedMain.bipedLeftArm.showModel = false;
	event.renderer.modelBipedMain.bipedRightArm.showModel = false;
}

@SubscribeEvent
public void renderPlayer(RenderPlayerEvent event){
	if (event.entityPlayer.inventory.getCurrentItem() == CondencedMagic.condensedMagic){
		event.renderer.modelBipedMain.bipedLeftArm.addBox(-1F, -2F, -2F, 4, 12, 4);
		event.renderer.modelBipedMain.bipedLeftArm.rotateAngleY = 90;
		event.renderer.modelBipedMain.bipedLeftArm.rotateAngleX = 45;

		event.renderer.modelBipedMain.bipedRightArm.addBox(-2F, 0F, -2F, 4, 12, 4);
		event.renderer.modelBipedMain.bipedRightArm.rotateAngleY = 90;
		event.renderer.modelBipedMain.bipedRightArm.rotateAngleX = 45;
	}
}

@SubscribeEvent
public void postRenderPlayer(RenderPlayerEvent.Post event){
	event.renderer.modelBipedMain.bipedLeftArm.showModel = true;
	event.renderer.modelBipedMain.bipedRightArm.showModel = true;
}
}

Posted

How often do I need to say this? You must not modify the player's model. Only tell the arm to not render. Then do you own thing. Completely unrelated to the player model.

 

Oh ok.

 

Edit: Well it works now (sort of). Thanks for all the help! :)

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

    • New users at Temu receive a $100 discount on orders over $100 Use the code [aci789589] during checkout to get Temu Coupon Code $100 off For New Users. Yes, Temu offers $100 off coupon code “aci789589” for first-time users. Temu 100% Off coupon code "aci789589" will save you $100 on your order. To get a discount, click on the item to purchase and enter the code. Yes, Temu offers $100 off coupon code “aci789589” for first-time users. You can get a$100 bonus plus 30% off any purchase at Temu with the$100 Coupon Bundle at Temu if you sign up with the referral code [aci789589] and make a first purchase of$50 or more. The Temu $100 Off coupon code (aci789589) will save you $100 on your order. To get a discount, click on the item to purchase and enter the code. Yes Temu offers $100 Off Coupon Code “aci789589” for First Time Users. Yes, Temu offers $100 off coupon code {aci789589} for first-time users. You can get a $100 bonus plus 100% off any purchase at Temu with the $100 Coupon Bundle if you sign up with the referral code [aci789589] and make a first purchase of $100 or more. If you are who wish to join Temu, then you should use this exclusive Temu coupon code $100 off (aci789589) and get $100 off on your purchase with Temu. You can get a $100 discount with Temu coupon code {aci789589}. This exclusive offer is for existing customers and can be used for a $100 reduction on your total purchase. Enter coupon code {aci789589} at checkout to avail of the discount. You can use the code {aci789589} to get a $100 off Temu coupon as a new customer. Apply this Temu coupon code $100 off (aci789589) to get a $100 discount on your shopping with Temu. If you’re a first-time user and looking for a Temu coupon code $100 first time user(aci789589) then using this code will give you a flat $100 Off and a 90% discount on your Temu shopping. Temu $100% Off Coupon Code "aci789589" will save you $100 on your order. To get a discount, click on the item to purchase and enter the code. Temu coupon code$100off-{aci789589} Temu coupon code -{aci789589} Temu coupon code$50 off-{aci789589} Temu Coupon code [aci789589] for existing users can get up to 50% discount on product during checkout. Temu Coupon Codes for Existing Customers-aci789589 Temu values its loyal customers and offers various promo codes, including the Legit Temu Coupon Code (aci789589]) or (aci789589), which existing users can use. This ensures that repeat shoppers can also benefit from significant discounts on their purchases. Keep an eye out for special promotions and offers that are periodically available to enhance your shopping experience.
    • Verified user can get a $100 off Temu   Coupon code using the code ((“aci789589”)). This Temu   $100 Off code is specifically for new and existing customers both and can be redeemed to receive a $100 discount on your purchase. Our exclusive Temu   Coupon code offers a flat $100 off your purchase, plus an additional 100% discount on top of that. You can slash prices by up to $100 as a new Temu   customer using code ((“aci789589”)). Existing users can enjoy $100 off their next haul with this code. But that’s not all! With our Temu   Coupon codes for 2025, you can get up to 90% discount on select items and clearance sales. Whether you’re a new customer or an existing shopper, our Temu   codes provide extra discounts tailored just for you. Save up to 100% with these current Temu   Coupons ["^"aci789589 "^"] for April 2025. The latest Temu   coupon codes at here. New users at Temu   receive a $100 discount on orders over $100 Use the code ((“aci789589”)) during checkout to get Temu   Coupon $100 Off For New Users. You can save $100 Off your first order with the coupon code available for a limited time only. Temu   90% Off promo code ((“aci789589”)) will save you $100 on your order. To get a discount, click on the item to purchase and enter the code. Yes, Temu   offers $100 Off coupon code “aci789589” for first time users. You can get a $100 bonus plus $100 Off any purchase at Temu   with the $100 Coupon Bundle at Temu   if you sign up with the referral code ((“aci789589”)) and make a first purchase of $100 or more. Free Temu   codes $100 off — ((“aci789589”)) Temu Coupon $100 off — ((“aci789589”)) Temu Coupon 100% off — ((“aci789589”)) Temu Memorial Day Sale $100 off — ((“aci789589”)) Temu Coupon code today — ((“aci789589”)) Temu free gift code — ["^"aci789589"^"](Without inviting friends or family member) Temu Coupon code for  USA      - $100 Off— ((“aci789589”)) Temu Coupon code  USA     - $100 Off— ((“aci789589”)) Temu Coupon code USA  - $100 Off — ((“aci789589”)) Temu Coupon code Japan - $100 Off — ((“aci789589”)) Temu Coupon code Mexico - $100 Off — ((“aci789589”)) Temu Coupon code Chile - $100 Off — ((“aci789589”)) Temu Coupon code USA - $100 Off — ((“aci789589”)) Temu Coupon code Colombia - $100 Off — ((“aci789589”)) Temu Coupon code Malaysia - $100 Off — ((“aci789589”)) Temu Coupon code Philippines - $100 Off — ((“aci789589”)) Temu Coupon code South Korea - $100 Off — ((“aci789589”)) Redeem Free Temu   Coupon Code ["^"aci789589"^"] for first-time users Get a $100 discount on your Temu   order with the promo code "aci789589". You can get a discount by clicking on the item to purchase and entering this Temu   Coupon code $100 off ((“aci789589”)). Temu   New User Coupon ((“aci789589)): Up To $100 OFF For First-Time Users Our Temu   first-time user coupon codes are designed just for new customers, offering the biggest discounts and the best deals currently available on Temu  . To maximize your savings, download the Temu   app and apply our Temu   new user coupon during checkout. Temu   Coupon Codes For Existing Users ((“aci789589”)): $100 Price Slash Have you been shopping on Temu   for a while? Our Temu   Coupon for existing customers is here to reward you for your continued support, offering incredible discounts on your favorite products. Temu   Coupon For $100 Off ((“aci789589”)): Get A Flat $100 Discount On Order Value Get ready to save big with our incredible Temu   Coupon for $100 off! Our amazing Temu   $100 off coupon code will give you a flat $100 discount on your order value, making your shopping experience even more rewarding. Temu   Coupon Code For $100 Off ((“aci789589”)): For Both New And Existing Customers Our incredible Temu   Coupon code for $100 off is here to help you save big on your purchases. Whether you’re a new user or an existing customer, our $100 off code for Temu   will give you an additional discount! Temu   Coupon Bundle ((“aci789589”)): Flat $100 Off + Up To $100 Discount Get ready for an unbelievable deal with our Temu   Coupon bundle for 2025! Our Temu   Coupon bundles will give you a flat $100 discount and an additional $100 off on top of it. Free Temu   Coupons ((“aci789589”)): Unlock Unlimited Savings! Get ready to unlock a world of savings with our free Temu   Coupons! We’ve got you covered with a wide range of Temu   Coupon code options that will help you maximize your shopping experience. 100% Off Temu   Coupons, Promo Codes + 25% Cash Back ((“aci789589”)) Redeem Temu   Coupon Code ((“aci789589”)) Temu Coupon $100 OFF ((“aci789589”)) Temu Coupon $100 OFF FOR EXISTING CUSTOMERS ((“aci789589”)) Temu Coupon $100 OFF FIRST ORDER ((“aci789589”)) Temu Coupon $100 OFF REDDIT ((“aci789589”)) Temu Coupon $100 OFF FOR EXISTING CUSTOMERS REDDIT ((“aci789589”)) Temu $100 OFF CODE ((“aci789589”)) Temu 70 OFF COUPON 2025 ((“aci789589”)) DOMINOS 70 RS OFF COUPON CODE ((“aci789589”)) WHAT IS A COUPON RATE ((“aci789589”)) Temu $100 OFF FOR EXISTING CUSTOMERS ((“aci789589”)) Temu $100 OFF FIRST ORDER ((“aci789589”)) Temu $100 OFF FREE SHIPPING ((“aci789589”)) You can get an exclusive $100 off discount on your Temu   purchase with the code [aci789589] Or [aci789589].This code is specially designed for new customers and offers a significant price cut on your shopping. Make your first purchase on Temu   more rewarding by using this code to get $100 off instantly. Temu   Coupon Code For $100 Off [aci789589] Or [aci789589]: Get A Flat $100 Discount On Order Value Get ready to save big with our incredible Temu   coupon for $100 off! Our coupon code will give you a flat $100 discount on your order value, making your shopping experience even more rewarding. Exclusive Temu   Discount Code [aci789589] Or [aci789589]: Flat $200 OFF for New and Existing Customers Using our Temu   promo code you can get A$ 200 off your order and 100% off using our Temu   promo code [aci789589] Or [aci789589]. As a new Temu   customer, you can save up to $100 using this promo code. For returning users, our Temu   promo code offers a $100 price slash on your next shopping spree. This is our way of saying thank you for shopping with us! Best Temu   Deals and Coupons [aci789589] Or [aci789589]: During 2025, Temu   coupon codes offer discounts of up to 90% on select items, making it possible for both new and existing users to get incredible deals. From $100 off deals to 100% discounts, our Temu   promo codes make shopping more affordable than ever. Temu   Coupon Code For $100% Off [aci789589] Or [aci789589]: For Both New And Existing Customers Free Temu   $100 Off Code — [aci789589] Or [aci789589] Temu Coupon 100% Off — [aci789589] Or [aci789589] Temu Memorial Day Sale - $100 Off — [aci789589] Or [aci789589] Temu Free Gift Code — [aci789589] Or [aci789589] Temu $500 Off Code — [aci789589 ] Or [aci789589] Best Temu   $200 Off Code — [aci789589 ] Or [aci789589] Temu Coupon Code first order — [aci789589] Or [aci789589] Temu Coupon Code for New user — [aci789589] Or [aci789589] Temu Coupon Code A$100 off — [aci789589] Or [aci789589] Temu Coupon Code $50 off — [aci789589] Or [aci789589] Temu Coupon Code $100 off — [aci789589] Or [aci789589] Temu Promo Code 2025 — [aci789589] Or [aci789589] Temu Coupon Code $200 off — [aci789589] Or [aci789589] Temu Coupon Code $90 off — [aci789589] Or [aci789589] Temu Sign up Bonus Code — [aci789589] Or [aci789589] Temu Coupon Code A$120 off — [aci789589] Or [aci789589] Our exclusive Temu   coupon code allows you to take a flat $200 off your purchase with an added 100% discount on top. As a new Temu   shopper, you can save up to $100 using code [aci789589] Or [aci789589]. Returning customers can also enjoy a $100 discount on their next purchases with this code. Temu Coupon Code for Your Country Sign-up Bonus Temu $100 Off Code  USA      [aci789589] Or [aci789589] - 100% off Temu $100 Off Code  USA     [aci789589] Or [aci789589] - 100% off Temu $100 Off Code USA  [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Japan [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Mexico [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Chile [aci789589] Or [aci789589] - 100% off Temu $100 Off Code USA [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Colombia [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Malaysia [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Philippines [aci789589] Or [aci789589] - 100% off Temu $100 Off Code South Korea [aci789589] Or [aci789589] - 100% off Temu $100 Off Code  USA      [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Pakistan [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Finland [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Saudi Arabia [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Qatar [aci789589] Or [aci789589] - 100% off Temu $100 Off Code France [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Germany [aci789589] Or [aci789589] - 100% off Temu $100 Off Code  USA   [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Israel [aci789589] Or [aci789589] - 100% off Get a $100 discount on your Temu   order with the promo code [aci789589] Or [aci789589]. You can get a discount by clicking on the item to purchase and entering this Temu   coupon code $100 off [aci789589] Or [aci789589]. Temu   Coupon Code [aci789589] Or [aci789589]: Get Up To 90% OFF In NOV 2025 Are you looking for the best Temu   coupon codes to get amazing discounts? Our Temu   coupons are perfect for getting those extra savings you crave. We regularly test our coupon codes for Temu   to ensure they work flawlessly, giving you a guaranteed discount every time. Temu   New User Coupon [aci789589] Or [aci789589]: Up To $100 OFF For First-Time Users Our Temu   first-time user coupon codes are designed just for new customers, offering the biggest discounts and the best deals currently available on Temu  . To maximize your savings, download the Temu   app and apply our Temu   new user coupon during checkout.
    • Verified user can get a $100 off Temu   Coupon code using the code ((“aci789589”)). This Temu   $100 Off code is specifically for new and existing customers both and can be redeemed to receive a $100 discount on your purchase. Our exclusive Temu   Coupon code offers a flat $100 off your purchase, plus an additional 100% discount on top of that. You can slash prices by up to $100 as a new Temu   customer using code ((“aci789589”)). Existing users can enjoy $100 off their next haul with this code. But that’s not all! With our Temu   Coupon codes for 2025, you can get up to 90% discount on select items and clearance sales. Whether you’re a new customer or an existing shopper, our Temu   codes provide extra discounts tailored just for you. Save up to 100% with these current Temu   Coupons ["^"aci789589 "^"] for April 2025. The latest Temu   coupon codes at here. New users at Temu   receive a $100 discount on orders over $100 Use the code ((“aci789589”)) during checkout to get Temu   Coupon $100 Off For New Users. You can save $100 Off your first order with the coupon code available for a limited time only. Temu   90% Off promo code ((“aci789589”)) will save you $100 on your order. To get a discount, click on the item to purchase and enter the code. Yes, Temu   offers $100 Off coupon code “aci789589” for first time users. You can get a $100 bonus plus $100 Off any purchase at Temu   with the $100 Coupon Bundle at Temu   if you sign up with the referral code ((“aci789589”)) and make a first purchase of $100 or more. Free Temu   codes $100 off — ((“aci789589”)) Temu Coupon $100 off — ((“aci789589”)) Temu Coupon 100% off — ((“aci789589”)) Temu Memorial Day Sale $100 off — ((“aci789589”)) Temu Coupon code today — ((“aci789589”)) Temu free gift code — ["^"aci789589"^"](Without inviting friends or family member) Temu Coupon code for  USA      - $100 Off— ((“aci789589”)) Temu Coupon code  USA     - $100 Off— ((“aci789589”)) Temu Coupon code USA  - $100 Off — ((“aci789589”)) Temu Coupon code Japan - $100 Off — ((“aci789589”)) Temu Coupon code Mexico - $100 Off — ((“aci789589”)) Temu Coupon code Chile - $100 Off — ((“aci789589”)) Temu Coupon code USA - $100 Off — ((“aci789589”)) Temu Coupon code Colombia - $100 Off — ((“aci789589”)) Temu Coupon code Malaysia - $100 Off — ((“aci789589”)) Temu Coupon code Philippines - $100 Off — ((“aci789589”)) Temu Coupon code South Korea - $100 Off — ((“aci789589”)) Redeem Free Temu   Coupon Code ["^"aci789589"^"] for first-time users Get a $100 discount on your Temu   order with the promo code "aci789589". You can get a discount by clicking on the item to purchase and entering this Temu   Coupon code $100 off ((“aci789589”)). Temu   New User Coupon ((“aci789589)): Up To $100 OFF For First-Time Users Our Temu   first-time user coupon codes are designed just for new customers, offering the biggest discounts and the best deals currently available on Temu  . To maximize your savings, download the Temu   app and apply our Temu   new user coupon during checkout. Temu   Coupon Codes For Existing Users ((“aci789589”)): $100 Price Slash Have you been shopping on Temu   for a while? Our Temu   Coupon for existing customers is here to reward you for your continued support, offering incredible discounts on your favorite products. Temu   Coupon For $100 Off ((“aci789589”)): Get A Flat $100 Discount On Order Value Get ready to save big with our incredible Temu   Coupon for $100 off! Our amazing Temu   $100 off coupon code will give you a flat $100 discount on your order value, making your shopping experience even more rewarding. Temu   Coupon Code For $100 Off ((“aci789589”)): For Both New And Existing Customers Our incredible Temu   Coupon code for $100 off is here to help you save big on your purchases. Whether you’re a new user or an existing customer, our $100 off code for Temu   will give you an additional discount! Temu   Coupon Bundle ((“aci789589”)): Flat $100 Off + Up To $100 Discount Get ready for an unbelievable deal with our Temu   Coupon bundle for 2025! Our Temu   Coupon bundles will give you a flat $100 discount and an additional $100 off on top of it. Free Temu   Coupons ((“aci789589”)): Unlock Unlimited Savings! Get ready to unlock a world of savings with our free Temu   Coupons! We’ve got you covered with a wide range of Temu   Coupon code options that will help you maximize your shopping experience. 100% Off Temu   Coupons, Promo Codes + 25% Cash Back ((“aci789589”)) Redeem Temu   Coupon Code ((“aci789589”)) Temu Coupon $100 OFF ((“aci789589”)) Temu Coupon $100 OFF FOR EXISTING CUSTOMERS ((“aci789589”)) Temu Coupon $100 OFF FIRST ORDER ((“aci789589”)) Temu Coupon $100 OFF REDDIT ((“aci789589”)) Temu Coupon $100 OFF FOR EXISTING CUSTOMERS REDDIT ((“aci789589”)) Temu $100 OFF CODE ((“aci789589”)) Temu 70 OFF COUPON 2025 ((“aci789589”)) DOMINOS 70 RS OFF COUPON CODE ((“aci789589”)) WHAT IS A COUPON RATE ((“aci789589”)) Temu $100 OFF FOR EXISTING CUSTOMERS ((“aci789589”)) Temu $100 OFF FIRST ORDER ((“aci789589”)) Temu $100 OFF FREE SHIPPING ((“aci789589”)) You can get an exclusive $100 off discount on your Temu   purchase with the code [aci789589] Or [aci789589].This code is specially designed for new customers and offers a significant price cut on your shopping. Make your first purchase on Temu   more rewarding by using this code to get $100 off instantly. Temu   Coupon Code For $100 Off [aci789589] Or [aci789589]: Get A Flat $100 Discount On Order Value Get ready to save big with our incredible Temu   coupon for $100 off! Our coupon code will give you a flat $100 discount on your order value, making your shopping experience even more rewarding. Exclusive Temu   Discount Code [aci789589] Or [aci789589]: Flat $200 OFF for New and Existing Customers Using our Temu   promo code you can get A$ 200 off your order and 100% off using our Temu   promo code [aci789589] Or [aci789589]. As a new Temu   customer, you can save up to $100 using this promo code. For returning users, our Temu   promo code offers a $100 price slash on your next shopping spree. This is our way of saying thank you for shopping with us! Best Temu   Deals and Coupons [aci789589] Or [aci789589]: During 2025, Temu   coupon codes offer discounts of up to 90% on select items, making it possible for both new and existing users to get incredible deals. From $100 off deals to 100% discounts, our Temu   promo codes make shopping more affordable than ever. Temu   Coupon Code For $100% Off [aci789589] Or [aci789589]: For Both New And Existing Customers Free Temu   $100 Off Code — [aci789589] Or [aci789589] Temu Coupon 100% Off — [aci789589] Or [aci789589] Temu Memorial Day Sale - $100 Off — [aci789589] Or [aci789589] Temu Free Gift Code — [aci789589] Or [aci789589] Temu $500 Off Code — [aci789589 ] Or [aci789589] Best Temu   $200 Off Code — [aci789589 ] Or [aci789589] Temu Coupon Code first order — [aci789589] Or [aci789589] Temu Coupon Code for New user — [aci789589] Or [aci789589] Temu Coupon Code A$100 off — [aci789589] Or [aci789589] Temu Coupon Code $50 off — [aci789589] Or [aci789589] Temu Coupon Code $100 off — [aci789589] Or [aci789589] Temu Promo Code 2025 — [aci789589] Or [aci789589] Temu Coupon Code $200 off — [aci789589] Or [aci789589] Temu Coupon Code $90 off — [aci789589] Or [aci789589] Temu Sign up Bonus Code — [aci789589] Or [aci789589] Temu Coupon Code A$120 off — [aci789589] Or [aci789589] Our exclusive Temu   coupon code allows you to take a flat $200 off your purchase with an added 100% discount on top. As a new Temu   shopper, you can save up to $100 using code [aci789589] Or [aci789589]. Returning customers can also enjoy a $100 discount on their next purchases with this code. Temu Coupon Code for Your Country Sign-up Bonus Temu $100 Off Code  USA      [aci789589] Or [aci789589] - 100% off Temu $100 Off Code  USA     [aci789589] Or [aci789589] - 100% off Temu $100 Off Code USA  [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Japan [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Mexico [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Chile [aci789589] Or [aci789589] - 100% off Temu $100 Off Code USA [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Colombia [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Malaysia [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Philippines [aci789589] Or [aci789589] - 100% off Temu $100 Off Code South Korea [aci789589] Or [aci789589] - 100% off Temu $100 Off Code  USA      [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Pakistan [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Finland [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Saudi Arabia [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Qatar [aci789589] Or [aci789589] - 100% off Temu $100 Off Code France [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Germany [aci789589] Or [aci789589] - 100% off Temu $100 Off Code  USA   [aci789589] Or [aci789589] - 100% off Temu $100 Off Code Israel [aci789589] Or [aci789589] - 100% off Get a $100 discount on your Temu   order with the promo code [aci789589] Or [aci789589]. You can get a discount by clicking on the item to purchase and entering this Temu   coupon code $100 off [aci789589] Or [aci789589]. Temu   Coupon Code [aci789589] Or [aci789589]: Get Up To 90% OFF In NOV 2025 Are you looking for the best Temu   coupon codes to get amazing discounts? Our Temu   coupons are perfect for getting those extra savings you crave. We regularly test our coupon codes for Temu   to ensure they work flawlessly, giving you a guaranteed discount every time. Temu   New User Coupon [aci789589] Or [aci789589]: Up To $100 OFF For First-Time Users Our Temu   first-time user coupon codes are designed just for new customers, offering the biggest discounts and the best deals currently available on Temu  . To maximize your savings, download the Temu   app and apply our Temu   new user coupon during checkout.
    • New users at Temu receive a $100 discount on orders over $100 Use the code [aci789589] during checkout to get Temu Coupon Code $100 off For New Users. Yes, Temu offers $100 off coupon code “aci789589” for first-time users. Temu 100% Off coupon code "aci789589" will save you $100 on your order. To get a discount, click on the item to purchase and enter the code. Yes, Temu offers $100 off coupon code “aci789589” for first-time users. You can get a$100 bonus plus 30% off any purchase at Temu with the$100 Coupon Bundle at Temu if you sign up with the referral code [aci789589] and make a first purchase of$50 or more. The Temu $100 Off coupon code (aci789589) will save you $100 on your order. To get a discount, click on the item to purchase and enter the code. Yes Temu offers $100 Off Coupon Code “aci789589” for First Time Users. Yes, Temu offers $100 off coupon code {aci789589} for first-time users. You can get a $100 bonus plus 100% off any purchase at Temu with the $100 Coupon Bundle if you sign up with the referral code [aci789589] and make a first purchase of $100 or more. If you are who wish to join Temu, then you should use this exclusive Temu coupon code $100 off (aci789589) and get $100 off on your purchase with Temu. You can get a $100 discount with Temu coupon code {aci789589}. This exclusive offer is for existing customers and can be used for a $100 reduction on your total purchase. Enter coupon code {aci789589} at checkout to avail of the discount. You can use the code {aci789589} to get a $100 off Temu coupon as a new customer. Apply this Temu coupon code $100 off (aci789589) to get a $100 discount on your shopping with Temu. If you’re a first-time user and looking for a Temu coupon code $100 first time user(aci789589) then using this code will give you a flat $100 Off and a 90% discount on your Temu shopping. Temu $100% Off Coupon Code "aci789589" will save you $100 on your order. To get a discount, click on the item to purchase and enter the code. Temu coupon code$100off-{aci789589} Temu coupon code -{aci789589} Temu coupon code$50 off-{aci789589} Temu Coupon code [aci789589] for existing users can get up to 50% discount on product during checkout. Temu Coupon Codes for Existing Customers-aci789589 Temu values its loyal customers and offers various promo codes, including the Legit Temu Coupon Code (aci789589]) or (aci789589), which existing users can use. This ensures that repeat shoppers can also benefit from significant discounts on their purchases. Keep an eye out for special promotions and offers that are periodically available to enhance your shopping experience.
    • not too sure what the issue is as i got no idea how to read these logs  https://paste.ee/p/yT39ed47#goHy1J7L0S8m3mFCUGnIhNkxaGrm8gEM
  • Topics

×
×
  • Create New...

Important Information

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