Résolu Events qui ne sont pas activé
-
Bonjour
J’ai un petit problème avec ma class des Events :
Mes events ne sont pas activéspackage com.SpyMan.morestuffs.common; import cpw.mods.fml.common.eventhandler.SubscribeEvent; import cpw.mods.fml.common.gameevent.TickEvent.PlayerTickEvent; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.potion.Potion; import net.minecraft.potion.PotionEffect; import net.minecraft.util.DamageSource; import net.minecraftforge.event.entity.living.LivingHurtEvent; public class MoreStuffsEvent { @SubscribeEvent public void onPlayerTickEvent(PlayerTickEvent event) { // –----------------------------------------------------------- if (event.player.getCurrentArmor(4).getItem() == MoreStuffs.fireBoots) { event.player.addPotionEffect(new PotionEffect(Potion.fireResistance.id, 1, 0)); } // ------------------------------------------------------------- if (event.player.getCurrentArmor(2).getItem() == MoreStuffs.wings) { event.player.capabilities.allowFlying = true; event.player.capabilities.isFlying = true; } else { event.player.capabilities.allowFlying = false; event.player.capabilities.isFlying = false; } // ------------------------------------------------------------- if(event.player.getCurrentArmor(3).getItem() == MoreStuffs.speedLeggings) { event.player.capabilities.setFlySpeed(1.5F); event.player.capabilities.setPlayerWalkSpeed(0.5F); } else { event.player.capabilities.setFlySpeed(0.5F); event.player.capabilities.setPlayerWalkSpeed(0.1F); } // ------------------------------------------------------------- if(event.player.getCurrentArmor(1).getItem() == MoreStuffs.divingHelmet) { event.player.canBreatheUnderwater(); } else { } } }
-
Salut,
Mes events ne sont pas activés
C’est à dire ?
Ils ne fond rien ?
Est-ce que tu les as enregistré ? -
il ne fonctionne pas
oui je les est enregistrer dans ma class principale dans la method preInit -
Envoies la fonction preInit de ta classe principale.
-
@EventHandler public void preInit(FMLPreInitializationEvent event) { proxy.registerRender(); divingHelmet = new ItemSuperArmor(superArmorArmorMaterial, 0, "divingHelmet"); GameRegistry.registerItem(divingHelmet, "divingHelmet"); wings = new ItemSuperArmor(superArmorArmorMaterial, 1, "wings"); GameRegistry.registerItem(wings, "wings"); speedLeggings = new ItemSuperArmor(superArmorArmorMaterial, 2, "speedLeggings"); GameRegistry.registerItem(speedLeggings, "speedLeggings"); fireBoots = new ItemSuperArmor(superArmorArmorMaterial, 3, "fireBoots"); GameRegistry.registerItem(fireBoots, "fireBoots"); MinecraftForge.EVENT_BUS.register(new MoreStuffsEvent()); }
-
PlayerTickEvent est un event FML. Il faut l’enregistrer avec FMLCommoHandler.instance().bus().register(new MoreStuffsEvent());
-
mon jeux crash
cette ligne verifie bien si l’item est une paire de bottes ?
if (event.player.getCurrentArmor(4).getItem() == MoreStuffs.fireBoots)
[15:59:04] [main/INFO] [GradleStart]: username: fcastaing@live.fr
[15:59:04] [main/INFO] [GradleStart]: Extra: []
[15:59:04] [main/INFO] [GradleStart]: Password found, attempting login
[15:59:04] [main/INFO]: Logging in with username & password
[15:59:07] [main/INFO] [GradleStart]: Login Succesful!
[15:59:08] [main/INFO] [GradleStart]: Running with arguments: [–userProperties, {}, --assetsDir, C:/Users/Family/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --userType, mojang, --accessToken, {REDACTED}, --version, 1.7.10, --uuid, ce3b7cfd347f47c2a60d143a93e67d78, --username, SpyMan, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[15:59:08] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[15:59:08] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[15:59:08] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[15:59:08] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
[15:59:08] [main/INFO] [FML]: Forge Mod Loader version 7.99.30.1492 for Minecraft 1.7.10 loading
[15:59:08] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.8.0_60, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre1.8.0_60
[15:59:08] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[15:59:08] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[15:59:08] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin
[15:59:08] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[15:59:08] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[15:59:08] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
[15:59:08] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[15:59:08] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[15:59:08] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[15:59:08] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[15:59:09] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[15:59:14] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[15:59:14] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[15:59:14] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
[15:59:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[15:59:15] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker
[15:59:15] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker
[15:59:15] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[15:59:18] [main/INFO]: Setting user: SpyMan
[15:59:20] [Client thread/INFO]: LWJGL Version: 2.9.1
[15:59:22] [Client thread/INFO] [STDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: –-- Minecraft Crash Report ----
// Surprise! Haha. Well, this is awkward.Time: 19/11/15 15:59
Description: Loading screen debug infoThis is just a prompt for computer specs to be printed. THIS IS NOT A ERROR
A detailed walkthrough of the error, its code path and all known details is as follows:
– System Details –
Details:
Minecraft Version: 1.7.10
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.8.0_60, Oracle Corporation
Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 935578080 bytes (892 MB) / 1056309248 bytes (1007 MB) up to 1056309248 bytes (1007 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: 0, tallocated: 0
FML:
GL info: ’ Vendor: ‘Intel’ Version: ‘2.1.0 - Build 8.15.10.2302’ Renderer: ‘Mobile Intel 4 Series Express Chipset Family’
[15:59:22] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
[15:59:22] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1492 Initialized
[15:59:22] [Client thread/INFO] [FML]: Replaced 183 ore recipies
[15:59:22] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
[15:59:23] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[15:59:23] [Client thread/INFO] [FML]: Searching C:\Users\Family\Desktop\Java Modding\MoreStuffs v2\eclipse\mods for mods
[15:59:41] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
[15:59:42] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, MoreStuffs] at CLIENT
[15:59:42] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, MoreStuffs] at SERVER
[15:59:43] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:MoreStuffs
[15:59:43] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[15:59:43] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations
[15:59:43] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
[15:59:43] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
[15:59:43] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[15:59:43] [Client thread/INFO] [FML]: Applying holder lookups
[15:59:43] [Client thread/INFO] [FML]: Holder lookups applied
[15:59:43] [Client thread/INFO] [FML]: Injecting itemstacks
[15:59:43] [Client thread/INFO] [FML]: Itemstack injection complete
[15:59:44] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[15:59:44] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem…
[15:59:45] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[15:59:45] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
[15:59:50] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas
[15:59:50] [Client thread/INFO]: Created: 16x16 textures/items-atlas
[15:59:50] [Client thread/INFO] [FML]: Injecting itemstacks
[15:59:50] [Client thread/INFO] [FML]: Itemstack injection complete
[15:59:51] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
[15:59:51] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:MoreStuffs
[15:59:51] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
[15:59:52] [Client thread/INFO]: Created: 256x256 textures/items-atlas
[15:59:52] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[15:59:52] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem…
[15:59:53] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[15:59:53] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[15:59:53] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
[16:00:02] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[16:00:02] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
[16:00:02] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[16:00:02] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN morestuffs
[16:00:02] [Client thread/ERROR] [TEXTURE ERRORS]: –------------------------------------------------
[16:00:02] [Client thread/ERROR] [TEXTURE ERRORS]: domain morestuffs is missing 3 textures
[16:00:02] [Client thread/ERROR] [TEXTURE ERRORS]: domain morestuffs has 1 location:
[16:00:02] [Client thread/ERROR] [TEXTURE ERRORS]: mod MoreStuffs resources at C:\Users\Family\Desktop\Java Modding\MoreStuffs v2\bin
[16:00:02] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
[16:00:02] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain morestuffs are:
[16:00:02] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/speedLeggings.png
[16:00:02] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/fireBoots.png
[16:00:02] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/divingHelmet.png
[16:00:02] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
[16:00:02] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain morestuffs
[16:00:02] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[16:00:02] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[16:00:32] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: ERROR MESSAGE:
[16:00:32] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem did not load after 30 seconds.
[16:00:32] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[16:00:32] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem…
[16:00:33] [Thread-12/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Switching to No Sound
[16:00:33] [Thread-12/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (Silent Mode)
[16:00:33] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[16:00:33] [Sound Library Loader/INFO]: Sound engine started
[16:00:33] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[16:00:33] [Sound Library Loader/INFO]: Sound engine started
[16:06:55] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10
[16:06:55] [Server thread/INFO]: Generating keypair
[16:06:57] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance
[16:06:57] [Server thread/INFO] [FML]: Applying holder lookups
[16:06:57] [Server thread/INFO] [FML]: Holder lookups applied
[16:06:59] [Server thread/INFO] [FML]: Loading dimension 0 (World) (net.minecraft.server.integrated.IntegratedServer@40b326e3)
[16:06:59] [Server thread/INFO] [FML]: Loading dimension 1 (World) (net.minecraft.server.integrated.IntegratedServer@40b326e3)
[16:06:59] [Server thread/INFO] [FML]: Loading dimension -1 (World) (net.minecraft.server.integrated.IntegratedServer@40b326e3)
[16:06:59] [Server thread/INFO]: Preparing start region for level 0
[16:07:00] [Server thread/INFO]: Preparing spawn area: 92%
[16:07:00] [Server thread/INFO]: Changing view distance to 2, from 10
[16:07:03] [Netty Client IO #0/INFO] [FML]: Server protocol version 2
[16:07:03] [Netty IO #1/INFO] [FML]: Client protocol version 2
[16:07:03] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : FML@7.10.99.99,Forge@10.13.4.1492,mcp@9.05,MoreStuffs@0.0.1
[16:07:03] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT
[16:07:03] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER
[16:07:03] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
[16:07:03] [Server thread/INFO]: SpyMan[local:E:44b903ac] logged in with entity id 182 at (821.5467899364213, 4.0, 21.881910917484714)
[16:07:03] [Server thread/INFO]: SpyMan joined the game
[16:07:03] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established
[16:07:04] [Server thread/ERROR] [FML]: Exception caught during firing event cpw.mods.fml.common.gameevent.TickEvent$PlayerTickEvent@23cb63eb:
java.lang.ArrayIndexOutOfBoundsException: 4
at net.minecraft.entity.player.InventoryPlayer.armorItemInSlot(InventoryPlayer.java:691) ~[InventoryPlayer.class:?]
at net.minecraft.entity.player.EntityPlayer.getCurrentArmor(EntityPlayer.java:2078) ~[EntityPlayer.class:?]
at com.SpyMan.morestuffs.common.MoreStuffsEvent.onPlayerTickEvent(MoreStuffsEvent.java:17) ~[MoreStuffsEvent.class:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler_6_MoreStuffsEvent_onPlayerTickEvent_PlayerTickEvent.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 cpw.mods.fml.common.FMLCommonHandler.onPlayerPreTick(FMLCommonHandler.java:345) [FMLCommonHandler.class:?]
at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:259) [EntityPlayer.class:?]
at net.minecraft.entity.player.EntityPlayerMP.onUpdateEntity(EntityPlayerMP.java:330) [EntityPlayerMP.class:?]
at net.minecraft.network.NetHandlerPlayServer.processPlayer(NetHandlerPlayServer.java:329) [NetHandlerPlayServer.class:?]
at net.minecraft.network.play.client.C03PacketPlayer.processPacket(C03PacketPlayer.java:37) [C03PacketPlayer.class:?]
at net.minecraft.network.play.client.C03PacketPlayer$C06PacketPlayerPosLook.processPacket(C03PacketPlayer.java:271) [C03PacketPlayer$C06PacketPlayerPosLook.class:?]
at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241) [NetworkManager.class:?]
at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:182) [NetworkSystem.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:726) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) [IntegratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [MinecraftServer$2.class:?]
[16:07:04] [Server thread/ERROR] [FML]: Index: 1 Listeners:
[16:07:04] [Server thread/ERROR] [FML]: 0: NORMAL
[16:07:04] [Server thread/ERROR] [FML]: 1: ASM: com.SpyMan.morestuffs.common.MoreStuffsEvent@684682e4 onPlayerTickEvent(Lcpw/mods/fml/common/gameevent/TickEvent$PlayerTickEvent;)V
[16:07:04] [Server thread/ERROR]: Encountered an unexpected exception
net.minecraft.util.ReportedException: Ticking player
at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:198) ~[NetworkSystem.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:726) ~[MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) ~[MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) ~[IntegratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [MinecraftServer$2.class:?]
Caused by: java.lang.ArrayIndexOutOfBoundsException: 4
at net.minecraft.entity.player.InventoryPlayer.armorItemInSlot(InventoryPlayer.java:691) ~[InventoryPlayer.class:?]
at net.minecraft.entity.player.EntityPlayer.getCurrentArmor(EntityPlayer.java:2078) ~[EntityPlayer.class:?]
at com.SpyMan.morestuffs.common.MoreStuffsEvent.onPlayerTickEvent(MoreStuffsEvent.java:17) ~[MoreStuffsEvent.class:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler_6_MoreStuffsEvent_onPlayerTickEvent_PlayerTickEvent.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 cpw.mods.fml.common.FMLCommonHandler.onPlayerPreTick(FMLCommonHandler.java:345) ~[FMLCommonHandler.class:?]
at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:259) ~[EntityPlayer.class:?]
at net.minecraft.entity.player.EntityPlayerMP.onUpdateEntity(EntityPlayerMP.java:330) ~[EntityPlayerMP.class:?]
at net.minecraft.network.NetHandlerPlayServer.processPlayer(NetHandlerPlayServer.java:329) ~[NetHandlerPlayServer.class:?]
at net.minecraft.network.play.client.C03PacketPlayer.processPacket(C03PacketPlayer.java:37) ~[C03PacketPlayer.class:?]
at net.minecraft.network.play.client.C03PacketPlayer$C06PacketPlayerPosLook.processPacket(C03PacketPlayer.java:271) ~[C03PacketPlayer$C06PacketPlayerPosLook.class:?]
at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241) ~[NetworkManager.class:?]
at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:182) ~[NetworkSystem.class:?]
… 5 more
[16:07:04] [Server thread/ERROR]: This crash report has been saved to: C:\Users\Family\Desktop\Java Modding\MoreStuffs v2\eclipse.\crash-reports\crash-2015-11-19_16.07.04-server.txt
[16:07:04] [Server thread/INFO]: Stopping server
[16:07:04] [Server thread/INFO]: Saving players
[16:07:04] [Server thread/INFO]: Saving worlds
[16:07:04] [Server thread/INFO]: Saving chunks for level ‘World’/Overworld
[16:07:04] [Client thread/ERROR] [FML]: Exception caught during firing event cpw.mods.fml.common.gameevent.TickEvent$PlayerTickEvent@4186bce2:
java.lang.ArrayIndexOutOfBoundsException: 4
at net.minecraft.entity.player.InventoryPlayer.armorItemInSlot(InventoryPlayer.java:691) ~[InventoryPlayer.class:?]
at net.minecraft.entity.player.EntityPlayer.getCurrentArmor(EntityPlayer.java:2078) ~[EntityPlayer.class:?]
at com.SpyMan.morestuffs.common.MoreStuffsEvent.onPlayerTickEvent(MoreStuffsEvent.java:17) ~[MoreStuffsEvent.class:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler_6_MoreStuffsEvent_onPlayerTickEvent_PlayerTickEvent.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 cpw.mods.fml.common.FMLCommonHandler.onPlayerPreTick(FMLCommonHandler.java:345) [FMLCommonHandler.class:?]
at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:259) [EntityPlayer.class:?]
at net.minecraft.client.entity.EntityClientPlayerMP.onUpdate(EntityClientPlayerMP.java:96) [EntityClientPlayerMP.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2298) [World.class:?]
at net.minecraft.world.World.updateEntity(World.java:2258) [World.class:?]
at net.minecraft.world.World.updateEntities(World.java:2108) [World.class:?]
at net.minecraft.client.Minecraft.runTick(Minecraft.java:2098) [Minecraft.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1040) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_60]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
at GradleStart.main(Unknown Source) [start/:?]
[16:07:04] [Client thread/ERROR] [FML]: Index: 1 Listeners:
[16:07:04] [Client thread/ERROR] [FML]: 0: NORMAL
[16:07:04] [Client thread/ERROR] [FML]: 1: ASM: com.SpyMan.morestuffs.common.MoreStuffsEvent@684682e4 onPlayerTickEvent(Lcpw/mods/fml/common/gameevent/TickEvent$PlayerTickEvent;)V
[16:07:05] [Server thread/INFO]: Saving chunks for level ‘World’/Nether
[16:07:05] [Server thread/INFO]: Saving chunks for level ‘World’/The End
[16:07:05] [Server thread/INFO] [FML]: Unloading dimension 0
[16:07:05] [Server thread/INFO] [FML]: Unloading dimension -1
[16:07:05] [Server thread/INFO] [FML]: Unloading dimension 1
[16:07:05] [Server thread/INFO] [FML]: Applying holder lookups
[16:07:05] [Server thread/INFO] [FML]: Holder lookups applied
[16:07:05] [Server thread/INFO] [FML]: The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded.
[16:07:06] [Client thread/FATAL]: Reported exception thrown!
net.minecraft.util.ReportedException: Ticking entity
at net.minecraft.world.World.updateEntities(World.java:2123) ~[World.class:?]
at net.minecraft.client.Minecraft.runTick(Minecraft.java:2098) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1040) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_60]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
at GradleStart.main(Unknown Source) [start/:?]
Caused by: java.lang.ArrayIndexOutOfBoundsException: 4
at net.minecraft.entity.player.InventoryPlayer.armorItemInSlot(InventoryPlayer.java:691) ~[InventoryPlayer.class:?]
at net.minecraft.entity.player.EntityPlayer.getCurrentArmor(EntityPlayer.java:2078) ~[EntityPlayer.class:?]
at com.SpyMan.morestuffs.common.MoreStuffsEvent.onPlayerTickEvent(MoreStuffsEvent.java:17) ~[MoreStuffsEvent.class:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler_6_MoreStuffsEvent_onPlayerTickEvent_PlayerTickEvent.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 cpw.mods.fml.common.FMLCommonHandler.onPlayerPreTick(FMLCommonHandler.java:345) ~[FMLCommonHandler.class:?]
at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:259) ~[EntityPlayer.class:?]
at net.minecraft.client.entity.EntityClientPlayerMP.onUpdate(EntityClientPlayerMP.java:96) ~[EntityClientPlayerMP.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2298) ~[World.class:?]
at net.minecraft.world.World.updateEntity(World.java:2258) ~[World.class:?]
at net.minecraft.world.World.updateEntities(World.java:2108) ~[World.class:?]
… 12 more
[16:07:06] [Client thread/INFO] [STDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: –-- Minecraft Crash Report ----
// Why did you do that?Time: 19/11/15 16:07
Description: Ticking entityjava.lang.ArrayIndexOutOfBoundsException: 4
at net.minecraft.entity.player.InventoryPlayer.armorItemInSlot(InventoryPlayer.java:691)
at net.minecraft.entity.player.EntityPlayer.getCurrentArmor(EntityPlayer.java:2078)
at com.SpyMan.morestuffs.common.MoreStuffsEvent.onPlayerTickEvent(MoreStuffsEvent.java:17)
at cpw.mods.fml.common.eventhandler.ASMEventHandler_6_MoreStuffsEvent_onPlayerTickEvent_PlayerTickEvent.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 cpw.mods.fml.common.FMLCommonHandler.onPlayerPreTick(FMLCommonHandler.java:345)
at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:259)
at net.minecraft.client.entity.EntityClientPlayerMP.onUpdate(EntityClientPlayerMP.java:96)
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2298)
at net.minecraft.world.World.updateEntity(World.java:2258)
at net.minecraft.world.World.updateEntities(World.java:2108)
at net.minecraft.client.Minecraft.runTick(Minecraft.java:2098)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1040)
at net.minecraft.client.Minecraft.run(Minecraft.java:962)
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(Unknown Source)
at GradleStart.main(Unknown Source)A detailed walkthrough of the error, its code path and all known details is as follows:
– Head –
Stacktrace:
at net.minecraft.entity.player.InventoryPlayer.armorItemInSlot(InventoryPlayer.java:691)
at net.minecraft.entity.player.EntityPlayer.getCurrentArmor(EntityPlayer.java:2078)
at com.SpyMan.morestuffs.common.MoreStuffsEvent.onPlayerTickEvent(MoreStuffsEvent.java:17)
at cpw.mods.fml.common.eventhandler.ASMEventHandler_6_MoreStuffsEvent_onPlayerTickEvent_PlayerTickEvent.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 cpw.mods.fml.common.FMLCommonHandler.onPlayerPreTick(FMLCommonHandler.java:345)
at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:259)
at net.minecraft.client.entity.EntityClientPlayerMP.onUpdate(EntityClientPlayerMP.java:96)
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2298)
at net.minecraft.world.World.updateEntity(World.java:2258)– Entity being ticked –
Details:
Entity Type: null (net.minecraft.client.entity.EntityClientPlayerMP)
Entity ID: 182
Entity Name: SpyMan
Entity’s Exact location: 821,55, 5,62, 21,88
Entity’s Block location: World: (821,5,21), Chunk: (at 5,0,5 in 51,1; contains blocks 816,0,16 to 831,255,31), Region: (1,0; contains chunks 32,0 to 63,31, blocks 512,0,0 to 1023,255,511)
Entity’s Momentum: 0,00, 0,00, 0,00
Stacktrace:
at net.minecraft.world.World.updateEntities(World.java:2108)– Affected level –
Details:
Level name: MpServer
All players: 1 total; [EntityClientPlayerMP[‘SpyMan’/182, l=‘MpServer’, x=821,55, y=5,62, z=21,88]]
Chunk stats: MultiplayerChunkCache: 25, 25
Level seed: 0
Level generator: ID 01 - flat, ver 0. Features enabled: false
Level generator options:
Level spawn location: World: (819,4,-17), Chunk: (at 3,0,15 in 51,-2; contains blocks 816,0,-32 to 831,255,-17), Region: (1,-1; contains chunks 32,-32 to 63,-1, blocks 512,0,-512 to 1023,255,-1)
Level time: 23724 game time, 5000 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: survival (ID 0). Hardcore: false. Cheats: false
Forced entities: 13 total; [EntityPig[‘Pig’/66, l=‘MpServer’, x=788,13, y=4,00, z=-11,16], EntityChicken[‘Chicken’/99, l=‘MpServer’, x=858,47, y=4,00, z=15,47], EntityPig[‘Pig’/67, l=‘MpServer’, x=786,13, y=4,00, z=29,59], EntityChicken[‘Chicken’/100, l=‘MpServer’, x=849,47, y=4,00, z=34,53], EntityChicken[‘Chicken’/68, l=‘MpServer’, x=787,53, y=4,00, z=34,81], EntityPig[‘Pig’/74, l=‘MpServer’, x=810,56, y=4,00, z=24,56], EntityPig[‘Pig’/75, l=‘MpServer’, x=814,06, y=4,00, z=39,84], EntityClientPlayerMP[‘SpyMan’/182, l=‘MpServer’, x=821,55, y=5,62, z=21,88], EntityPig[‘Pig’/90, l=‘MpServer’, x=843,81, y=4,00, z=-7,67], EntityChicken[‘Chicken’/91, l=‘MpServer’, x=835,47, y=4,00, z=-13,41], EntityChicken[‘Chicken’/92, l=‘MpServer’, x=837,19, y=4,00, z=23,81], EntityChicken[‘Chicken’/93, l=‘MpServer’, x=842,44, y=4,00, z=36,56], EntityChicken[‘Chicken’/94, l=‘MpServer’, x=838,73, y=4,00, z=58,93]]
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:2567)
at net.minecraft.client.Minecraft.run(Minecraft.java:983)
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(Unknown Source)
at GradleStart.main(Unknown Source)– System Details –
Details:
Minecraft Version: 1.7.10
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.8.0_60, Oracle Corporation
Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 967524384 bytes (922 MB) / 1056309248 bytes (1007 MB) up to 1056309248 bytes (1007 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: 0, tallocated: 0
FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1492 4 mods loaded, 4 mods active
States: ‘U’ = Unloaded ‘L’ = Loaded ‘C’ = Constructed ‘H’ = Pre-initialized ‘I’ = Initialized ‘J’ = Post-initialized ‘A’ = Available ‘D’ = Disabled ‘E’ = Errored
UCHIJAAAA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)
UCHIJAAAA FML{7.10.99.99} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar)
UCHIJAAAA Forge{10.13.4.1492} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar)
UCHIJAAAA MoreStuffs{0.0.1} [MoreStuffs] (bin)
GL info: ’ Vendor: ‘Intel’ Version: ‘2.1.0 - Build 8.15.10.2302’ Renderer: ‘Mobile Intel 4 Series Express Chipset Family’
Launched Version: 1.7.10
LWJGL: 2.9.1
OpenGL: Mobile Intel 4 Series Express Chipset Family GL version 2.1.0 - Build 8.15.10.2302, Intel
GL Caps: Using GL 1.3 multitexturing.
Using framebuffer objects because EXT_framebuffer_object is supported.
Anisotropic filtering is supported and maximum anisotropy is 2.
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:07:06] [Client thread/INFO] [STDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Family\Desktop\Java Modding\MoreStuffs v2\eclipse.\crash-reports\crash-2015-11-19_16.07.06-client.txt
Exception in thread “Thread-10” Java HotSpot 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release -
Non getCurrentArmor(4) est en dehors du tableau (on commence à 0 en informatique) donc c’est soit 3 soit 0
-
jarrive a lancer mon jeu mais dès que je déséquipe un partie de l’armure ça crash
[16:37:07] [main/INFO] [GradleStart]: username: fcastaing@live.fr
[16:37:07] [main/INFO] [GradleStart]: Extra: []
[16:37:07] [main/INFO] [GradleStart]: Password found, attempting login
[16:37:08] [main/INFO]: Logging in with username & password
[16:37:11] [main/INFO] [GradleStart]: Login Succesful!
[16:37:11] [main/INFO] [GradleStart]: Running with arguments: [–userProperties, {}, --assetsDir, C:/Users/Family/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --userType, mojang, --accessToken, {REDACTED}, --version, 1.7.10, --uuid, ce3b7cfd347f47c2a60d143a93e67d78, --username, SpyMan, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[16:37:11] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[16:37:11] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[16:37:11] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[16:37:11] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
[16:37:12] [main/INFO] [FML]: Forge Mod Loader version 7.99.30.1492 for Minecraft 1.7.10 loading
[16:37:12] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.8.0_60, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre1.8.0_60
[16:37:12] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[16:37:12] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[16:37:12] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin
[16:37:12] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[16:37:12] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[16:37:12] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
[16:37:12] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[16:37:12] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[16:37:12] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[16:37:12] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[16:37:13] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[16:37:18] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[16:37:18] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[16:37:18] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
[16:37:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[16:37:19] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker
[16:37:19] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker
[16:37:19] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[16:37:22] [main/INFO]: Setting user: SpyMan
[16:37:26] [Client thread/INFO]: LWJGL Version: 2.9.1
[16:37:28] [Client thread/INFO] [STDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: –-- Minecraft Crash Report ----
// Would you like a cupcake?Time: 19/11/15 16:37
Description: Loading screen debug infoThis is just a prompt for computer specs to be printed. THIS IS NOT A ERROR
A detailed walkthrough of the error, its code path and all known details is as follows:
– System Details –
Details:
Minecraft Version: 1.7.10
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.8.0_60, Oracle Corporation
Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 948223544 bytes (904 MB) / 1056309248 bytes (1007 MB) up to 1056309248 bytes (1007 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: 0, tallocated: 0
FML:
GL info: ’ Vendor: ‘Intel’ Version: ‘2.1.0 - Build 8.15.10.2302’ Renderer: ‘Mobile Intel 4 Series Express Chipset Family’
[16:37:28] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
[16:37:28] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1492 Initialized
[16:37:29] [Client thread/INFO] [FML]: Replaced 183 ore recipies
[16:37:29] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
[16:37:30] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[16:37:30] [Client thread/INFO] [FML]: Searching C:\Users\Family\Desktop\Java Modding\MoreStuffs v2\eclipse\mods for mods
[16:37:50] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
[16:37:52] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, MoreStuffs] at CLIENT
[16:37:52] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, MoreStuffs] at SERVER
[16:37:53] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:MoreStuffs
[16:37:54] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[16:37:54] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations
[16:37:54] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
[16:37:54] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
[16:37:55] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[16:37:55] [Client thread/INFO] [FML]: Applying holder lookups
[16:37:55] [Client thread/INFO] [FML]: Holder lookups applied
[16:37:55] [Client thread/INFO] [FML]: Injecting itemstacks
[16:37:55] [Client thread/INFO] [FML]: Itemstack injection complete
[16:37:56] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[16:37:56] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem…
[16:37:56] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[16:37:56] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
[16:37:57] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[16:37:57] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[16:37:57] [Sound Library Loader/INFO]: Sound engine started
[16:38:10] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas
[16:38:10] [Client thread/INFO]: Created: 16x16 textures/items-atlas
[16:38:10] [Client thread/INFO] [FML]: Injecting itemstacks
[16:38:10] [Client thread/INFO] [FML]: Itemstack injection complete
[16:38:11] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
[16:38:11] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:MoreStuffs
[16:38:12] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
[16:38:12] [Client thread/INFO]: Created: 256x256 textures/items-atlas
[16:38:12] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[16:38:12] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down…
[16:38:12] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com
[16:38:12] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[16:38:12] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[16:38:12] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem…
[16:38:13] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[16:38:13] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
[16:38:13] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[16:38:13] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
[16:38:13] [Sound Library Loader/INFO]: Sound engine started
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN morestuffs
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: –------------------------------------------------
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: domain morestuffs is missing 4 textures
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: domain morestuffs has 1 location:
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: mod MoreStuffs resources at C:\Users\Family\Desktop\Java Modding\MoreStuffs v2\bin
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain morestuffs are:
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/speedLeggings.png
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/fireBoots.png
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/divingHelmet.png
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/healingWand.png
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain morestuffs
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[16:38:16] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[16:39:15] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10
[16:39:15] [Server thread/INFO]: Generating keypair
[16:39:15] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance
[16:39:15] [Server thread/INFO] [FML]: Injecting new block and item data into this server instance.
[16:39:15] [Server thread/INFO] [FML]: Injected new block/item MoreStuffs:healingWand: 4100 (init) -> 4100 (map).
[16:39:15] [Server thread/INFO] [FML]: Applying holder lookups
[16:39:15] [Server thread/INFO] [FML]: Holder lookups applied
[16:39:16] [Server thread/INFO] [FML]: Loading dimension 0 (World) (net.minecraft.server.integrated.IntegratedServer@46c02daa)
[16:39:16] [Server thread/INFO] [FML]: Loading dimension 1 (World) (net.minecraft.server.integrated.IntegratedServer@46c02daa)
[16:39:16] [Server thread/INFO] [FML]: Loading dimension -1 (World) (net.minecraft.server.integrated.IntegratedServer@46c02daa)
[16:39:16] [Server thread/INFO]: Preparing start region for level 0
[16:39:17] [Server thread/INFO]: Preparing spawn area: 49%
[16:39:19] [Server thread/INFO]: Changing view distance to 2, from 10
[16:39:21] [Netty Client IO #0/INFO] [FML]: Server protocol version 2
[16:39:21] [Netty IO #1/INFO] [FML]: Client protocol version 2
[16:39:22] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : FML@7.10.99.99,Forge@10.13.4.1492,mcp@9.05,MoreStuffs@0.0.1
[16:39:22] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT
[16:39:22] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER
[16:39:22] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established
[16:39:22] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
[16:39:22] [Server thread/INFO]: SpyMan[local:E:1d4cdbe9] logged in with entity id 182 at (821.5467899364213, 4.0, 21.881910917484714)
[16:39:22] [Server thread/INFO]: SpyMan joined the game
[16:39:29] [Client thread/WARN]: Failed to load texture: morestuffs:textures/models/armor/flyingChestplate_layer_1.png
java.io.FileNotFoundException: morestuffs:textures/models/armor/flyingChestplate_layer_1.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.SimpleTexture.loadTexture(SimpleTexture.java:35) ~[SimpleTexture.class:?]
at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]
at net.minecraft.client.renderer.texture.TextureManager.bindTexture(TextureManager.java:45) [TextureManager.class:?]
at net.minecraft.client.renderer.entity.Render.bindTexture(Render.java:60) [Render.class:?]
at net.minecraft.client.renderer.entity.RenderPlayer.shouldRenderPass(RenderPlayer.java:70) [RenderPlayer.class:?]
at net.minecraft.client.renderer.entity.RenderPlayer.shouldRenderPass(RenderPlayer.java:517) [RenderPlayer.class:?]
at net.minecraft.client.renderer.entity.RendererLivingEntity.doRender(RendererLivingEntity.java:173) [RendererLivingEntity.class:?]
at net.minecraft.client.renderer.entity.RenderPlayer.doRender(RenderPlayer.java:167) [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.renderEntityWithPosYaw(RenderManager.java:283) [RenderManager.class:?]
at net.minecraft.client.gui.inventory.GuiInventory.func_147046_a(GuiInventory.java:112) [GuiInventory.class:?]
at net.minecraft.client.gui.inventory.GuiInventory.drawGuiContainerBackgroundLayer(GuiInventory.java:86) [GuiInventory.class:?]
at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:93) [GuiContainer.class:?]
at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:44) [InventoryEffectRenderer.class:?]
at net.minecraft.client.gui.inventory.GuiInventory.drawScreen(GuiInventory.java:74) [GuiInventory.class:?]
at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137) [EntityRenderer.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1068) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_60]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
at GradleStart.main(Unknown Source) [start/:?]
[16:39:29] [Client thread/WARN]: Failed to load texture: morestuffs:textures/models/armor/flyingChestplate_layer_2.png
java.io.FileNotFoundException: morestuffs:textures/models/armor/flyingChestplate_layer_2.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.SimpleTexture.loadTexture(SimpleTexture.java:35) ~[SimpleTexture.class:?]
at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]
at net.minecraft.client.renderer.texture.TextureManager.bindTexture(TextureManager.java:45) [TextureManager.class:?]
at net.minecraft.client.renderer.entity.Render.bindTexture(Render.java:60) [Render.class:?]
at net.minecraft.client.renderer.entity.RenderPlayer.shouldRenderPass(RenderPlayer.java:70) [RenderPlayer.class:?]
at net.minecraft.client.renderer.entity.RenderPlayer.shouldRenderPass(RenderPlayer.java:517) [RenderPlayer.class:?]
at net.minecraft.client.renderer.entity.RendererLivingEntity.doRender(RendererLivingEntity.java:173) [RendererLivingEntity.class:?]
at net.minecraft.client.renderer.entity.RenderPlayer.doRender(RenderPlayer.java:167) [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.renderEntityWithPosYaw(RenderManager.java:283) [RenderManager.class:?]
at net.minecraft.client.gui.inventory.GuiInventory.func_147046_a(GuiInventory.java:112) [GuiInventory.class:?]
at net.minecraft.client.gui.inventory.GuiInventory.drawGuiContainerBackgroundLayer(GuiInventory.java:86) [GuiInventory.class:?]
at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:93) [GuiContainer.class:?]
at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:44) [InventoryEffectRenderer.class:?]
at net.minecraft.client.gui.inventory.GuiInventory.drawScreen(GuiInventory.java:74) [GuiInventory.class:?]
at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137) [EntityRenderer.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1068) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_60]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
at GradleStart.main(Unknown Source) [start/:?]
[16:39:30] [Client thread/ERROR] [FML]: Exception caught during firing event cpw.mods.fml.common.gameevent.TickEvent$PlayerTickEvent@5eb4764b:
java.lang.NullPointerException
at com.SpyMan.morestuffs.common.MoreStuffsEvent.onPlayerTickEvent(MoreStuffsEvent.java:33) ~[MoreStuffsEvent.class:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler_6_MoreStuffsEvent_onPlayerTickEvent_PlayerTickEvent.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 cpw.mods.fml.common.FMLCommonHandler.onPlayerPreTick(FMLCommonHandler.java:345) [FMLCommonHandler.class:?]
at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:259) [EntityPlayer.class:?]
at net.minecraft.client.entity.EntityClientPlayerMP.onUpdate(EntityClientPlayerMP.java:96) [EntityClientPlayerMP.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2298) [World.class:?]
at net.minecraft.world.World.updateEntity(World.java:2258) [World.class:?]
at net.minecraft.world.World.updateEntities(World.java:2108) [World.class:?]
at net.minecraft.client.Minecraft.runTick(Minecraft.java:2098) [Minecraft.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1040) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_60]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
at GradleStart.main(Unknown Source) [start/:?]
[16:39:30] [Client thread/ERROR] [FML]: Index: 1 Listeners:
[16:39:30] [Client thread/ERROR] [FML]: 0: NORMAL
[16:39:30] [Client thread/ERROR] [FML]: 1: ASM: com.SpyMan.morestuffs.common.MoreStuffsEvent@4adbf21c onPlayerTickEvent(Lcpw/mods/fml/common/gameevent/TickEvent$PlayerTickEvent;)V
[16:39:31] [Server thread/INFO]: Stopping server
[16:39:31] [Server thread/INFO]: Saving players
[16:39:31] [Server thread/INFO]: Saving worlds
[16:39:31] [Server thread/INFO]: Saving chunks for level ‘World’/Overworld
[16:39:31] [Server thread/INFO]: Saving chunks for level ‘World’/Nether
[16:39:31] [Server thread/INFO]: Saving chunks for level ‘World’/The End
[16:39:31] [Server thread/INFO] [FML]: Unloading dimension 0
[16:39:31] [Server thread/INFO] [FML]: Unloading dimension -1
[16:39:31] [Server thread/INFO] [FML]: Unloading dimension 1
[16:39:31] [Server thread/INFO] [FML]: Applying holder lookups
[16:39:31] [Server thread/INFO] [FML]: Holder lookups applied
[16:39:32] [Client thread/FATAL]: Reported exception thrown!
net.minecraft.util.ReportedException: Ticking entity
at net.minecraft.world.World.updateEntities(World.java:2123) ~[World.class:?]
at net.minecraft.client.Minecraft.runTick(Minecraft.java:2098) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1040) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_60]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
at GradleStart.main(Unknown Source) [start/:?]
Caused by: java.lang.NullPointerException
at com.SpyMan.morestuffs.common.MoreStuffsEvent.onPlayerTickEvent(MoreStuffsEvent.java:33) ~[MoreStuffsEvent.class:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler_6_MoreStuffsEvent_onPlayerTickEvent_PlayerTickEvent.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 cpw.mods.fml.common.FMLCommonHandler.onPlayerPreTick(FMLCommonHandler.java:345) ~[FMLCommonHandler.class:?]
at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:259) ~[EntityPlayer.class:?]
at net.minecraft.client.entity.EntityClientPlayerMP.onUpdate(EntityClientPlayerMP.java:96) ~[EntityClientPlayerMP.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2298) ~[World.class:?]
at net.minecraft.world.World.updateEntity(World.java:2258) ~[World.class:?]
at net.minecraft.world.World.updateEntities(World.java:2108) ~[World.class:?]
… 12 more
[16:39:32] [Client thread/INFO] [STDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: –-- Minecraft Crash Report ----
// I bet Cylons wouldn’t have this problem.Time: 19/11/15 16:39
Description: Ticking entityjava.lang.NullPointerException: Ticking entity
at com.SpyMan.morestuffs.common.MoreStuffsEvent.onPlayerTickEvent(MoreStuffsEvent.java:33)
at cpw.mods.fml.common.eventhandler.ASMEventHandler_6_MoreStuffsEvent_onPlayerTickEvent_PlayerTickEvent.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 cpw.mods.fml.common.FMLCommonHandler.onPlayerPreTick(FMLCommonHandler.java:345)
at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:259)
at net.minecraft.client.entity.EntityClientPlayerMP.onUpdate(EntityClientPlayerMP.java:96)
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2298)
at net.minecraft.world.World.updateEntity(World.java:2258)
at net.minecraft.world.World.updateEntities(World.java:2108)
at net.minecraft.client.Minecraft.runTick(Minecraft.java:2098)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1040)
at net.minecraft.client.Minecraft.run(Minecraft.java:962)
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(Unknown Source)
at GradleStart.main(Unknown Source)A detailed walkthrough of the error, its code path and all known details is as follows:
– Head –
Stacktrace:
at com.SpyMan.morestuffs.common.MoreStuffsEvent.onPlayerTickEvent(MoreStuffsEvent.java:33)
at cpw.mods.fml.common.eventhandler.ASMEventHandler_6_MoreStuffsEvent_onPlayerTickEvent_PlayerTickEvent.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 cpw.mods.fml.common.FMLCommonHandler.onPlayerPreTick(FMLCommonHandler.java:345)
at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:259)
at net.minecraft.client.entity.EntityClientPlayerMP.onUpdate(EntityClientPlayerMP.java:96)
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2298)
at net.minecraft.world.World.updateEntity(World.java:2258)– Entity being ticked –
Details:
Entity Type: null (net.minecraft.client.entity.EntityClientPlayerMP)
Entity ID: 182
Entity Name: SpyMan
Entity’s Exact location: 821,55, 5,62, 21,88
Entity’s Block location: World: (821,5,21), Chunk: (at 5,0,5 in 51,1; contains blocks 816,0,16 to 831,255,31), Region: (1,0; contains chunks 32,0 to 63,31, blocks 512,0,0 to 1023,255,511)
Entity’s Momentum: 0,00, -0,08, 0,00
Stacktrace:
at net.minecraft.world.World.updateEntities(World.java:2108)– Affected level –
Details:
Level name: MpServer
All players: 1 total; [EntityClientPlayerMP[‘SpyMan’/182, l=‘MpServer’, x=821,55, y=5,62, z=21,88]]
Chunk stats: MultiplayerChunkCache: 25, 25
Level seed: 0
Level generator: ID 01 - flat, ver 0. Features enabled: false
Level generator options:
Level spawn location: World: (819,4,-17), Chunk: (at 3,0,15 in 51,-2; contains blocks 816,0,-32 to 831,255,-17), Region: (1,-1; contains chunks 32,-32 to 63,-1, blocks 512,0,-512 to 1023,255,-1)
Level time: 23984 game time, 5000 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: survival (ID 0). Hardcore: false. Cheats: false
Forced entities: 12 total; [EntityChicken[‘Chicken’/99, l=‘MpServer’, x=858,47, y=4,00, z=15,47], EntityPig[‘Pig’/67, l=‘MpServer’, x=786,13, y=4,00, z=29,59], EntityChicken[‘Chicken’/100, l=‘MpServer’, x=849,47, y=4,00, z=34,53], EntityChicken[‘Chicken’/68, l=‘MpServer’, x=787,53, y=4,00, z=34,81], EntityClientPlayerMP[‘SpyMan’/182, l=‘MpServer’, x=821,55, y=5,62, z=21,88], EntityPig[‘Pig’/74, l=‘MpServer’, x=805,31, y=4,00, z=30,81], EntityPig[‘Pig’/90, l=‘MpServer’, x=843,41, y=4,00, z=-7,16], EntityPig[‘Pig’/75, l=‘MpServer’, x=814,06, y=4,00, z=39,84], EntityChicken[‘Chicken’/91, l=‘MpServer’, x=835,47, y=4,00, z=-13,41], EntityChicken[‘Chicken’/92, l=‘MpServer’, x=836,53, y=4,00, z=29,41], EntityChicken[‘Chicken’/93, l=‘MpServer’, x=844,19, y=4,00, z=32,13], EntityChicken[‘Chicken’/94, l=‘MpServer’, x=839,34, y=4,00, z=60,06]]
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:2567)
at net.minecraft.client.Minecraft.run(Minecraft.java:983)
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(Unknown Source)
at GradleStart.main(Unknown Source)– System Details –
Details:
Minecraft Version: 1.7.10
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.8.0_60, Oracle Corporation
Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 886944512 bytes (845 MB) / 1056309248 bytes (1007 MB) up to 1056309248 bytes (1007 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: 0, tallocated: 0
FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1492 4 mods loaded, 4 mods active
States: ‘U’ = Unloaded ‘L’ = Loaded ‘C’ = Constructed ‘H’ = Pre-initialized ‘I’ = Initialized ‘J’ = Post-initialized ‘A’ = Available ‘D’ = Disabled ‘E’ = Errored
UCHIJAAAA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)
UCHIJAAAA FML{7.10.99.99} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar)
UCHIJAAAA Forge{10.13.4.1492} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1492-1.7.10.jar)
UCHIJAAAA MoreStuffs{0.0.1} [MoreStuffs] (bin)
GL info: ’ Vendor: ‘Intel’ Version: ‘2.1.0 - Build 8.15.10.2302’ Renderer: ‘Mobile Intel 4 Series Express Chipset Family’
Launched Version: 1.7.10
LWJGL: 2.9.1
OpenGL: Mobile Intel 4 Series Express Chipset Family GL version 2.1.0 - Build 8.15.10.2302, Intel
GL Caps: Using GL 1.3 multitexturing.
Using framebuffer objects because EXT_framebuffer_object is supported.
Anisotropic filtering is supported and maximum anisotropy is 2.
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:39:32] [Client thread/INFO] [STDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Family\Desktop\Java Modding\MoreStuffs v2\eclipse.\crash-reports\crash-2015-11-19_16.39.32-client.txt
AL lib: (EE) alc_cleanup: 1 device not closed
Java HotSpot 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release -
if(event.player.getCurrentArmor(0) != null && event.player.getCurrentArmor(0).getItem() == tonItem)
-
Merci de votre aide mon problème est enfin résolu.
Mais je souhaite également savoir comment annuler les dommages de feu et de noyade sans passé par les PotionEffect ? -
player.isImmuneToFire = true;
Et pour les dommage de noyade, je suis en train de regarder. J edite une fois que j aurai la reponseEDIT : Je ne suis pas sur mon pc, donc j ai pas pu regarder attentivement mais je te conseille de passer par l even LivingHurtEvent et de le cancel si le damagesource est egale a celui de la noyade et si le joueur porte ton armure
-
j’ai réussi à annuler les dommages avec l’event LivingHurtEvent, mais il reste cet “effet de dommages” a annulé aussi, mais ça je ne voit pas du tout comme faire pour l’annuler
-
J’avais aussi essayé, il me semble que ce n’est pas possible
-
peut-être que je ne mi prend pas de la bonne façon alors.
mais alors comment font les potions de fireResistence et waterBreathing ??? -
C’est le problème des events
Il faut que tu approfondisses tes recherche afin de voir quel est le field à passser à true qui te permettrait de retirer les dégâts de noyade. Car pour le jeu je te l’ai déjà donné plus haut -
event.entity.isImmuneToFire = true; ne fonctionne pas, il ya une erreur
-
Laquelle ? Il faut préciser, je ne suis pas là pour deviner…
Et autre question : Tu souhaites rester sur l’event LivingHurtEvent ou t’en passer ? -
dans quel constructeur ??? celui de l’item ?
-
Nop, oublie j’ai dit une bêtise et regarde, j’ai édite mon message