Résolu Dégâts dans le désert
-
Bonjour à tous !
J’ai un petit soucis en modding 1.6.4 pour l’event “LivingUpdateEvent”.
Pour vous expliquer ce que je cherche à faire, c’est, si un joueur est dans le désert il prend des dégâts “onFire”, mais il n’en prend pas si il porte un casque en or, cuir, fer, diamant …
Voici mon code:
:::
@ForgeSubscribe public void livingUpdateEvent(LivingUpdateEvent event) { if (event.entityLiving instanceof EntityPlayer) { //Degat Desert int i = MathHelper.floor_double(this.posX); int j = MathHelper.floor_double(this.posZ); if(event.entityLiving.worldObj.getBiomeGenForCoords(i, j).getFloatTemperature() > 1.0F) { if (event.entityLiving.worldObj.rand.nextInt(100) == 0) { event.entityLiving.attackEntityFrom(DamageSource.onFire, 1.0F); } } } }
:::
Pour le moment c’est ce code qui fait qu’il prend des dégâts quoi qu’il arrive
Donc j’ai fait ce code
:::
//Degat Desert int i = MathHelper.floor_double(this.posX); int j = MathHelper.floor_double(this.posZ); ItemStack helmet = event.entityLiving.getCurrentItemOrArmor(4); if(event.entityLiving.worldObj.getBiomeGenForCoords(i, j).getFloatTemperature() > 1.0F) { if (helmet != null) { if (helmet.getItem() == Item.helmetIron && helmet.getItem() == Item.helmetLeather && helmet.getItem() == Item.helmetDiamond && helmet.getItem() == Item.helmetIron) { return; } } else { if (event.entityLiving.worldObj.rand.nextInt(100) == 0) { event.entityLiving.attackEntityFrom(DamageSource.onFire, 1.0F); } } }
:::
Cela fonctionne, mais j’ai créer des masques qui ce placent dans la case casque, et si je les équipent je ne prend pas de dégâts alors que je veux que ce soit juste le casque en Or, Fer, Diamant et Cuir qui protège le joueur du désert
Comment puis-je faire ?
-
Au lieu de dire qu’il teste si c’est un helmet (car helmet est le slot d’armure) fait un test sur les item directement
-
Comment tu fait ?
-
Ça je ne sais pas, essaye du voir si tu peut faire un if(diamondhelmet dans slot helmet)
-
Essaye ça : http://pastebin.com/dCL1iK2J
-
Tu as modifié quoi ?
Ah oui ok !
-
Dis moi si ça marche normalement c’est bon
-
EDIT: Ne fonctionne pas ta solution Alpha
-
C’est encore comme tout à l’heure ?
Edit : Attends j’ouvre Eclipse et j’essaye de trouver
Edit 2 : Essaye d’enlever le random et de lui mettre le feu tout le temps pour voir ! -
Oui, Ok Merci, après je sais pas si vous avez compris ce que je voulais faire ^^’
Je veux que juste le casque en Or, Diamant, Fer, Cuir protège de la chaleur.
Mes masque eux ne doivent pas protéger, normal c’est des masques ^^ -
Oui oui j’ai compris ^^
Etant donné que je suis en 1.7.2, je suis pas sûr que le code marcheras pour toi, mais j’essaye!
EDIT : C’est bon ça marche !
Je t’envoie la classe entière et tu la convertis au code de la 1.6 c’est facile :package nxs.minextension.event; import net.minecraft.init.Items; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.DamageSource; import net.minecraftforge.event.entity.living.LivingEvent.LivingUpdateEvent; import cpw.mods.fml.common.eventhandler.SubscribeEvent; public class UpdateEvent { @SubscribeEvent public void onEntityUpdate(LivingUpdateEvent event) { int eventPosX = (int) event.entityLiving.posX; int eventPosY = (int) event.entityLiving.posY; int eventPosZ = (int) event.entityLiving.posZ; ItemStack helmet = event.entityLiving.getEquipmentInSlot(4); if (event.entityLiving.worldObj.getBiomeGenForCoords(eventPosX, eventPosZ).getFloatTemperature(eventPosX, eventPosY, eventPosZ) > 1.0F) { if (helmet ! = null && helmet.getItem() == Items.iron_helmet || helmet.getItem() == Items.leather_helmet || helmet.getItem() == Items.golden_helmet || helmet.getItem() == Items.diamond_helmet) { return; } else { if (event.entityLiving.worldObj.rand.nextInt(100) == 0) { event.entityLiving.attackEntityFrom(DamageSource.onFire, 1.0F); } } } } }
Edit : code corrigé par jglrxavpok
-
Merci je fait ça dans quelques minutes et je te dis si ça marche
-
D’accord et de rien
-
Ça ne marchera pas non plus:
-> Vous vérifiez si l’itemstack n’est pas égal à null.
–-> Si oui, vous vérifiez si c’est dans la liste, alors vous ne brûlez pas le joueur
—> Si non, vous brûlez le joueur.Le problème ici est que si vous avez un itemstack ‘helmet’ non nul mais qui n’est pas dans la liste, vous ne faites rien.
Donc le code corrigé est:@ForgeSubscribe public void livingUpdateEvent(LivingUpdateEvent event) { if (event.entityLiving instanceof EntityPlayer) { //Degat Desert int i = MathHelper.floor_double(this.posX); int j = MathHelper.floor_double(this.posZ); ItemStack helmet = event.entityLiving.getCurrentItemOrArmor(4); if(event.entityLiving.worldObj.getBiomeGenForCoords(i, j).getFloatTemperature() > 1.0F) { if (event.entityLiving.worldObj.rand.nextInt(100) == 0) { if(helmet != null && helmet.getItem() == Item.helmetIron && helmet.getItem() == Item.helmetLeather && helmet.getItem() == Item.helmetDiamond && helmet.getItem() == Item.helmetIron) { ; } else event.entityLiving.attackEntityFrom(DamageSource.onFire, 1.0F); } } } }
-
Ah oui c’est vrai !
-
Re, Je vais tester ton code jldqzdqldjqlzjcqbzjd… pok ^^
le ; tout seul est normal ?
Après test mon perso prend des dégâts avec et sans les casques O.o étrange…
-
Bon j’ai tout testé marche pas
-
Essaie le mien je l’ai corrigé
-
Nope je crash !
:::
mars 03, 2014 9:09:46 PM net.minecraft.launchwrapper.LogWrapper log
Infos: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
mars 03, 2014 9:09:46 PM net.minecraft.launchwrapper.LogWrapper log
Infos: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
mars 03, 2014 9:09:46 PM net.minecraft.launchwrapper.LogWrapper log
Infos: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
2014-03-03 21:09:46 [Infos] [ForgeModLoader] Forge Mod Loader version 6.4.49.965 for Minecraft 1.6.4 loading
2014-03-03 21:09:46 [Infos] [ForgeModLoader] Java is Java HotSpot Client VM, version 1.7.0_45, running on Windows 8:x86:6.2, installed at C:\Program Files (x86)\Java\jre7
2014-03-03 21:09:46 [Infos] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
2014-03-03 21:09:46 [Infos] [ForgeModLoader] Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
2014-03-03 21:09:46 [Infos] [ForgeModLoader] Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
2014-03-03 21:09:46 [Infos] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
2014-03-03 21:09:46 [Infos] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
2014-03-03 21:09:46 [Infos] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
2014-03-03 21:09:46 [Infos] [STDOUT] Loaded 40 rules from AccessTransformer config file fml_at.cfg
2014-03-03 21:09:46 [Grave] [ForgeModLoader] The binary patch set is missing. Either you are in a development environment, or things are not going to work!
2014-03-03 21:09:47 [Infos] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
2014-03-03 21:09:47 [Infos] [STDOUT] Loaded 110 rules from AccessTransformer config file forge_at.cfg
2014-03-03 21:09:47 [Infos] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
2014-03-03 21:09:47 [Infos] [ForgeModLoader] Launching wrapped minecraft {net.minecraft.client.main.Main}
2014-03-03 21:09:48 [Infos] [Minecraft-Client] Setting user: TheAmateis
2014-03-03 21:09:48 [Infos] [Minecraft-Client] LWJGL Version: 2.9.0
2014-03-03 21:09:49 [Infos] [Minecraft-Client] Reloading ResourceManager: Default
2014-03-03 21:09:50 [Infos] [MinecraftForge] Attempting early MinecraftForge initialization
2014-03-03 21:09:50 [Infos] [STDOUT] MinecraftForge v9.11.1.965 Initialized
2014-03-03 21:09:50 [Infos] [ForgeModLoader] MinecraftForge v9.11.1.965 Initialized
2014-03-03 21:09:50 [Infos] [STDOUT] Replaced 111 ore recipies
2014-03-03 21:09:50 [Infos] [MinecraftForge] Completed early MinecraftForge initialization
2014-03-03 21:09:50 [Infos] [ForgeModLoader] Reading custom logging properties from C:\Users\Jean-Baptiste\Desktop\Modding\JAVA\ViruZ Core Forge 1.6.4_9.11.1.953\forge\mcp\jars\config\logging.properties
2014-03-03 21:09:50 [Désactivé] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL
2014-03-03 21:09:50 [Infos] [ForgeModLoader] Searching C:\Users\Jean-Baptiste\Desktop\Modding\JAVA\ViruZ Core Forge 1.6.4_9.11.1.953\forge\mcp\jars\mods for mods
2014-03-03 21:09:52 [Infos] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load
2014-03-03 21:09:52 [Infos] [mcp] Activating mod mcp
2014-03-03 21:09:52 [Infos] [FML] Activating mod FML
2014-03-03 21:09:52 [Infos] [Forge] Activating mod Forge
2014-03-03 21:09:52 [Infos] [ViruZ] Activating mod ViruZ
2014-03-03 21:09:52 [Avertissement] [Forge Mod Loader] Mod Forge Mod Loader is missing a pack.mcmeta file, things may not work well
2014-03-03 21:09:52 [Avertissement] [Minecraft Forge] Mod Minecraft Forge is missing a pack.mcmeta file, things may not work well
2014-03-03 21:09:52 [Avertissement] [ViruZ] Mod ViruZ is missing a pack.mcmeta file, things may not work well
2014-03-03 21:09:52 [Infos] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:ViruZ
2014-03-03 21:09:52 [Infos] [ForgeModLoader] Registering Forge Packet Handler
2014-03-03 21:09:52 [Infos] [ForgeModLoader] Succeeded registering Forge Packet Handler
2014-03-03 21:09:53 [Infos] [ForgeModLoader] Configured a dormant chunk cache size of 0
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemViruZWeapon with ID 609 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemViruZWeapon with ID 610 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemViruZWeapon with ID 611 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemViruZWeapon with ID 612 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemViruZWeapon with ID 613 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemViruZWeapon with ID 614 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemViruZWeapon with ID 615 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemViruZWeapon with ID 616 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemViruZWeapon with ID 617 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemViruZWeapon with ID 618 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemViruZWeapon with ID 619 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class net.minecraft.item.Item with ID 856 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemMedicaments with ID 857 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemAdrenaline with ID 858 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemProteins with ID 859 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemMedicaments with ID 860 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemVitamins with ID 861 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemAntiPoison with ID 862 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemAntiDote with ID 867 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class net.minecraft.item.ItemFood with ID 869 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class net.minecraft.item.ItemFood with ID 870 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class net.minecraft.item.ItemFood with ID 871 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class net.minecraft.item.ItemFood with ID 872 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemMaskDayZ with ID 874 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemMaskDayZ with ID 875 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemMaskDayZ with ID 876 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemMaskDayZ with ID 877 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemBeer with ID 878 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemTShirt with ID 881 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemTShirt with ID 882 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemTShirt with ID 883 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemTShirt with ID 884 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemBloodSyringue with ID 885 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemCactusSoup with ID 886 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemDrinks with ID 887 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemDrinks with ID 888 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemDrinks with ID 889 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemDrinks with ID 890 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class net.minecraft.item.ItemFood with ID 891 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemDrinks with ID 892 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemBandages with ID 893 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class net.minecraft.item.ItemSeeds with ID 31992 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class net.minecraft.item.Item with ID 31993 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemMatches with ID 31994 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemViruZBucketMilk with ID 31995 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class net.minecraft.item.Item with ID 31996 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class net.minecraft.item.Item with ID 31997 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class net.minecraft.item.Item with ID 31998 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class net.minecraft.item.Item with ID 31999 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
2014-03-03 21:09:53 [Grave] [Minecraft-Client] Using missing texture, unable to load: viruz:textures/blocks/presents.png
2014-03-03 21:09:53 [Grave] [Minecraft-Client] Using missing texture, unable to load: minecraft:textures/blocks/MISSING_ICON_TILE_511_NormalWardrobe.png
2014-03-03 21:09:54 [Infos] [ForgeModLoader] Forge Mod Loader has successfully loaded 4 mods
2014-03-03 21:09:54 [Avertissement] [Forge Mod Loader] Mod Forge Mod Loader is missing a pack.mcmeta file, things may not work well
2014-03-03 21:09:54 [Avertissement] [Minecraft Forge] Mod Minecraft Forge is missing a pack.mcmeta file, things may not work well
2014-03-03 21:09:54 [Avertissement] [ViruZ] Mod ViruZ is missing a pack.mcmeta file, things may not work well
2014-03-03 21:09:54 [Infos] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:ViruZ
2014-03-03 21:09:54 [Grave] [Minecraft-Client] Using missing texture, unable to load: viruz:textures/blocks/presents.png
2014-03-03 21:09:54 [Grave] [Minecraft-Client] Using missing texture, unable to load: minecraft:textures/blocks/MISSING_ICON_TILE_511_NormalWardrobe.png
2014-03-03 21:09:54 [Infos] [STDOUT]
2014-03-03 21:09:54 [Infos] [STDOUT] Starting up SoundSystem…
2014-03-03 21:09:55 [Infos] [STDOUT] Initializing LWJGL OpenAL
2014-03-03 21:09:55 [Infos] [STDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
2014-03-03 21:09:55 [Infos] [STDOUT] OpenAL initialized.
2014-03-03 21:09:55 [Infos] [STDOUT]
2014-03-03 21:09:56 [Grave] [Minecraft-Client] Realms: Server not available!
2014-03-03 21:10:05 [Infos] [Minecraft-Server] Starting integrated minecraft server version 1.6.4
2014-03-03 21:10:05 [Infos] [Minecraft-Server] Generating keypair
2014-03-03 21:10:05 [Infos] [ForgeModLoader] Loading dimension 0 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@1378b53)
2014-03-03 21:10:05 [Infos] [ForgeModLoader] Loading dimension 1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@1378b53)
2014-03-03 21:10:05 [Infos] [ForgeModLoader] Loading dimension -1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@1378b53)
2014-03-03 21:10:05 [Infos] [Minecraft-Server] Preparing start region for level 0
2014-03-03 21:10:07 [Infos] [Minecraft-Server] Preparing spawn area: 65%
2014-03-03 21:10:07 [Infos] [STDOUT] loading single player
2014-03-03 21:10:07 [Infos] [Minecraft-Server] TheAmateis[/127.0.0.1:0] logged in with entity id 114 at (-1003.2453824727012, 64.0, -526.3619428089247)
2014-03-03 21:10:07 [Infos] [Minecraft-Server] TheAmateis a rejoint le jeu
2014-03-03 21:10:07 [Infos] [STDOUT] Setting up custom skins
2014-03-03 21:10:13 [Avertissement] [Minecraft-Client] Failed to load texture: viruz:/mob/zombies/zombie.png
java.io.FileNotFoundException: viruz:/mob/zombies/zombie.png
at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:64)
at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:63)
at net.minecraft.client.renderer.texture.SimpleTexture.loadTexture(SimpleTexture.java:31)
at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:84)
at net.minecraft.client.renderer.texture.TextureManager.bindTexture(TextureManager.java:41)
at net.minecraft.client.renderer.entity.Render.bindTexture(Render.java:53)
at net.minecraft.client.renderer.entity.Render.bindEntityTexture(Render.java:48)
at net.minecraft.client.renderer.entity.RendererLivingEntity.renderModel(RendererLivingEntity.java:296)
at net.minecraft.client.renderer.entity.RendererLivingEntity.doRenderLiving(RendererLivingEntity.java:156)
at net.minecraft.client.renderer.entity.RenderLiving.doRenderLiving(RenderLiving.java:28)
at net.minecraft.client.renderer.entity.RenderLiving.doRender(RenderLiving.java:142)
at net.minecraft.client.renderer.entity.RenderManager.renderEntityWithPosYaw(RenderManager.java:312)
at net.minecraft.client.renderer.entity.RenderManager.renderEntity(RenderManager.java:281)
at net.minecraft.client.renderer.RenderGlobal.renderEntities(RenderGlobal.java:524)
at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1160)
at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1002)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:947)
at net.minecraft.client.Minecraft.run(Minecraft.java:839)
at net.minecraft.client.main.Main.main(Main.java:95)
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:131)
at net.minecraft.launchwrapper.Launch.main(Launch.java:27)
2014-03-03 21:10:13 [Avertissement] [Minecraft-Client] Failed to load texture: viruz:zombie.png
java.io.FileNotFoundException: viruz:zombie.png
at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:64)
at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:63)
at net.minecraft.client.renderer.texture.SimpleTexture.loadTexture(SimpleTexture.java:31)
at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:84)
at net.minecraft.client.renderer.texture.TextureManager.bindTexture(TextureManager.java:41)
at net.minecraft.client.renderer.entity.Render.bindTexture(Render.java:53)
at net.minecraft.client.renderer.entity.Render.bindEntityTexture(Render.java:48)
at net.minecraft.client.renderer.entity.RendererLivingEntity.renderModel(RendererLivingEntity.java:296)
at net.minecraft.client.renderer.entity.RendererLivingEntity.doRenderLiving(RendererLivingEntity.java:156)
at net.minecraft.client.renderer.entity.RenderLiving.doRenderLiving(RenderLiving.java:28)
at net.minecraft.client.renderer.entity.RenderLiving.doRender(RenderLiving.java:142)
at net.minecraft.client.renderer.entity.RenderManager.renderEntityWithPosYaw(RenderManager.java:312)
at net.minecraft.client.renderer.entity.RenderManager.renderEntity(RenderManager.java:281)
at net.minecraft.client.renderer.RenderGlobal.renderEntities(RenderGlobal.java:524)
at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1160)
at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1002)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:947)
at net.minecraft.client.Minecraft.run(Minecraft.java:839)
at net.minecraft.client.main.Main.main(Main.java:95)
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:131)
at net.minecraft.launchwrapper.Launch.main(Launch.java:27)
2014-03-03 21:10:14 [Infos] [Minecraft-Server] Saving and pausing game…
2014-03-03 21:10:14 [Infos] [Minecraft-Server] Saving chunks for level ‘Nouveau monde’/Overworld
2014-03-03 21:10:14 [Infos] [Minecraft-Server] Saving chunks for level ‘Nouveau monde’/Nether
2014-03-03 21:10:14 [Infos] [Minecraft-Server] Saving chunks for level ‘Nouveau monde’/The End
2014-03-03 21:10:30 [Infos] [Minecraft-Server] Stopping server
2014-03-03 21:10:30 [Infos] [Minecraft-Server] Saving players
2014-03-03 21:10:30 [Infos] [Minecraft-Server] TheAmateis a quitté le jeu
2014-03-03 21:10:30 [Infos] [Minecraft-Server] Saving worlds
2014-03-03 21:10:30 [Infos] [Minecraft-Server] Saving chunks for level ‘Nouveau monde’/Overworld
2014-03-03 21:10:30 [Infos] [Minecraft-Server] Saving chunks for level ‘Nouveau monde’/Nether
2014-03-03 21:10:30 [Infos] [Minecraft-Server] Saving chunks for level ‘Nouveau monde’/The End
2014-03-03 21:10:30 [Infos] [ForgeModLoader] Unloading dimension 0
2014-03-03 21:10:30 [Infos] [ForgeModLoader] Unloading dimension -1
2014-03-03 21:10:30 [Infos] [ForgeModLoader] Unloading dimension 1
2014-03-03 21:10:31 [Infos] [STDERR] net.minecraft.util.ReportedException: Ticking entity
2014-03-03 21:10:31 [Infos] [STDERR] at net.minecraft.world.World.updateEntities(World.java:2172)
2014-03-03 21:10:31 [Infos] [STDERR] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1922)
2014-03-03 21:10:31 [Infos] [STDERR] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:911)
2014-03-03 21:10:31 [Infos] [STDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:839)
2014-03-03 21:10:31 [Infos] [STDERR] at net.minecraft.client.main.Main.main(Main.java:95)
2014-03-03 21:10:31 [Infos] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2014-03-03 21:10:31 [Infos] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2014-03-03 21:10:31 [Infos] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2014-03-03 21:10:31 [Infos] [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
2014-03-03 21:10:31 [Infos] [STDERR] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)
2014-03-03 21:10:31 [Infos] [STDERR] at net.minecraft.launchwrapper.Launch.main(Launch.java:27)
2014-03-03 21:10:31 [Infos] [STDERR] Caused by: java.lang.NullPointerException
2014-03-03 21:10:31 [Infos] [STDERR] at viruz.zeamateis.manage.LivingEventManager.livingUpdateEvent(LivingEventManager.java:133)
2014-03-03 21:10:31 [Infos] [STDERR] at net.minecraftforge.event.ASMEventHandler_7_LivingEventManager_livingUpdateEvent_LivingUpdateEvent.invoke(.dynamic)
2014-03-03 21:10:31 [Infos] [STDERR] at net.minecraftforge.event.ASMEventHandler.invoke(ASMEventHandler.java:39)
2014-03-03 21:10:31 [Infos] [STDERR] at net.minecraftforge.event.EventBus.post(EventBus.java:108)
2014-03-03 21:10:31 [Infos] [STDERR] at net.minecraftforge.common.ForgeHooks.onLivingUpdate(ForgeHooks.java:337)
2014-03-03 21:10:31 [Infos] [STDERR] at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:1776)
2014-03-03 21:10:31 [Infos] [STDERR] at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:342)
2014-03-03 21:10:31 [Infos] [STDERR] at net.minecraft.client.entity.EntityClientPlayerMP.onUpdate(EntityClientPlayerMP.java:78)
2014-03-03 21:10:31 [Infos] [STDERR] at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2350)
2014-03-03 21:10:31 [Infos] [STDERR] at net.minecraft.world.World.updateEntity(World.java:2311)
2014-03-03 21:10:31 [Infos] [STDERR] at net.minecraft.world.World.updateEntities(World.java:2157)
2014-03-03 21:10:31 [Infos] [STDERR] … 10 more
2014-03-03 21:10:31 [Infos] [STDOUT] –-- Minecraft Crash Report ----
2014-03-03 21:10:31 [Infos] [STDOUT] // Quite honestly, I wouldn’t worry myself about that.
2014-03-03 21:10:31 [Infos] [STDOUT]
2014-03-03 21:10:31 [Infos] [STDOUT] Time: 03/03/14 21:10
2014-03-03 21:10:31 [Infos] [STDOUT] Description: Ticking entity
2014-03-03 21:10:31 [Infos] [STDOUT]
2014-03-03 21:10:31 [Infos] [STDOUT] java.lang.NullPointerException
2014-03-03 21:10:31 [Infos] [STDOUT] at viruz.zeamateis.manage.LivingEventManager.livingUpdateEvent(LivingEventManager.java:133)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraftforge.event.ASMEventHandler_7_LivingEventManager_livingUpdateEvent_LivingUpdateEvent.invoke(.dynamic)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraftforge.event.ASMEventHandler.invoke(ASMEventHandler.java:39)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraftforge.event.EventBus.post(EventBus.java:108)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraftforge.common.ForgeHooks.onLivingUpdate(ForgeHooks.java:337)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:1776)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:342)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.client.entity.EntityClientPlayerMP.onUpdate(EntityClientPlayerMP.java:78)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2350)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.world.World.updateEntity(World.java:2311)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.world.World.updateEntities(World.java:2157)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1922)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:911)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.client.Minecraft.run(Minecraft.java:839)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.client.main.Main.main(Main.java:95)
2014-03-03 21:10:31 [Infos] [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2014-03-03 21:10:31 [Infos] [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2014-03-03 21:10:31 [Infos] [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2014-03-03 21:10:31 [Infos] [STDOUT] at java.lang.reflect.Method.invoke(Unknown Source)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:27)
2014-03-03 21:10:31 [Infos] [STDOUT]
2014-03-03 21:10:31 [Infos] [STDOUT]
2014-03-03 21:10:31 [Infos] [STDOUT] A detailed walkthrough of the error, its code path and all known details is as follows:
2014-03-03 21:10:31 [Infos] [STDOUT] –-------------------------------------------------------------------------------------
2014-03-03 21:10:31 [Infos] [STDOUT]
2014-03-03 21:10:31 [Infos] [STDOUT] – Head –
2014-03-03 21:10:31 [Infos] [STDOUT] Stacktrace:
2014-03-03 21:10:31 [Infos] [STDOUT] at viruz.zeamateis.manage.LivingEventManager.livingUpdateEvent(LivingEventManager.java:133)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraftforge.event.ASMEventHandler_7_LivingEventManager_livingUpdateEvent_LivingUpdateEvent.invoke(.dynamic)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraftforge.event.ASMEventHandler.invoke(ASMEventHandler.java:39)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraftforge.event.EventBus.post(EventBus.java:108)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraftforge.common.ForgeHooks.onLivingUpdate(ForgeHooks.java:337)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:1776)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:342)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.client.entity.EntityClientPlayerMP.onUpdate(EntityClientPlayerMP.java:78)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2350)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.world.World.updateEntity(World.java:2311)
2014-03-03 21:10:31 [Infos] [STDOUT]
2014-03-03 21:10:31 [Infos] [STDOUT] – Entity being ticked –
2014-03-03 21:10:31 [Infos] [STDOUT] Details:
2014-03-03 21:10:31 [Infos] [STDOUT] Entity Type: null (net.minecraft.client.entity.EntityClientPlayerMP)
2014-03-03 21:10:31 [Infos] [STDOUT] Entity ID: 114
2014-03-03 21:10:31 [Infos] [STDOUT] Entity Name: TheAmateis
2014-03-03 21:10:31 [Infos] [STDOUT] Entity’s Exact location: -1014,41, 65,62, -514,07
2014-03-03 21:10:31 [Infos] [STDOUT] Entity’s Block location: World: (-1015,65,-515), Chunk: (at 9,4,13 in -64,-33; contains blocks -1024,0,-528 to -1009,255,-513), Region: (-2,-2; contains chunks -64,-64 to -33,-33, blocks -1024,0,-1024 to -513,255,-513)
2014-03-03 21:10:31 [Infos] [STDOUT] Entity’s Momentum: 0,00, -0,08, 0,00
2014-03-03 21:10:31 [Infos] [STDOUT] Stacktrace:
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.world.World.updateEntities(World.java:2157)
2014-03-03 21:10:31 [Infos] [STDOUT]
2014-03-03 21:10:31 [Infos] [STDOUT] – Affected level –
2014-03-03 21:10:31 [Infos] [STDOUT] Details:
2014-03-03 21:10:31 [Infos] [STDOUT] Level name: MpServer
2014-03-03 21:10:31 [Infos] [STDOUT] All players: 1 total; [EntityClientPlayerMP[‘TheAmateis’/114, l=‘MpServer’, x=-1014,41, y=65,62, z=-514,07]]
2014-03-03 21:10:31 [Infos] [STDOUT] Chunk stats: MultiplayerChunkCache: 441
2014-03-03 21:10:31 [Infos] [STDOUT] Level seed: 0
2014-03-03 21:10:31 [Infos] [STDOUT] Level generator: ID 01 - flat, ver 0. Features enabled: false
2014-03-03 21:10:31 [Infos] [STDOUT] Level generator options:
2014-03-03 21:10:31 [Infos] [STDOUT] Level spawn location: World: (-977,4,-545), Chunk: (at 15,0,15 in -62,-35; contains blocks -992,0,-560 to -977,255,-545), Region: (-2,-2; contains chunks -64,-64 to -33,-33, blocks -1024,0,-1024 to -513,255,-513)
2014-03-03 21:10:31 [Infos] [STDOUT] Level time: 17739 game time, 2340 day time
2014-03-03 21:10:31 [Infos] [STDOUT] Level dimension: 0
2014-03-03 21:10:31 [Infos] [STDOUT] Level storage version: 0x00000 - Unknown?
2014-03-03 21:10:31 [Infos] [STDOUT] Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
2014-03-03 21:10:31 [Infos] [STDOUT] Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: false
2014-03-03 21:10:31 [Infos] [STDOUT] Forced entities: 54 total; [EntityZombieNoHead[‘Zombi sans tête’/2744, l=‘MpServer’, x=-1057,50, y=38,00, z=-571,50], EntityMinecartChest[‘entity.MinecartChest.name’/7, l=‘MpServer’, x=-1070,50, y=32,50, z=-565,50], EntityZombieNoHead[‘Zombi sans tête’/2742, l=‘MpServer’, x=-1057,50, y=38,00, z=-575,50], EntityMinecartChest[‘entity.MinecartChest.name’/8, l=‘MpServer’, x=-1038,50, y=38,50, z=-581,13], EntityZombieNoHead[‘Zombi sans tête’/2743, l=‘MpServer’, x=-1060,50, y=38,00, z=-571,50], EntityZombieMale[‘Zombi mâle’/128, l=‘MpServer’, x=-1084,28, y=32,00, z=-569,66], EntityMinecartChest[‘entity.MinecartChest.name’/9, l=‘MpServer’, x=-1025,50, y=5,50, z=-562,50], EntityLittleSpider[‘Petite araignée’/131, l=‘MpServer’, x=-1086,53, y=32,00, z=-572,78], EntityBat[‘Chauve-souris’/10, l=‘MpServer’, x=-1030,59, y=37,92, z=-527,13], EntityZombieBabyMale[‘Enfant zombifié’/2741, l=‘MpServer’, x=-1057,50, y=38,00, z=-576,50], EntityScorpion[‘Scorpion’/2432, l=‘MpServer’, x=-1048,50, y=42,00, z=-487,50], EntityMinecartChest[‘entity.MinecartChest.name’/11, l=‘MpServer’, x=-1028,50, y=38,50, z=-481,50], EntityZombieMale[‘Zombi mâle’/130, l=‘MpServer’, x=-1080,50, y=32,00, z=-567,50], EntityMinecartChest[‘entity.MinecartChest.name’/12, l=‘MpServer’, x=-1036,50, y=38,50, z=-477,50], EntityMinecartChest[‘entity.MinecartChest.name’/13, l=‘MpServer’, x=-1008,50, y=10,50, z=-569,50], EntityLittleSpider[‘Petite araignée’/132, l=‘MpServer’, x=-1077,25, y=32,00, z=-567,47], EntityMinecartChest[‘entity.MinecartChest.name’/20, l=‘MpServer’, x=-980,50, y=14,50, z=-554,50], EntityZombieNoHead[‘Zombi sans tête’/145, l=‘MpServer’, x=-1032,50, y=37,00, z=-533,50], EntityZombieCrawler[‘Zombi Rampant’/2058, l=‘MpServer’, x=-937,50, y=28,00, z=-579,50], EntityZombieMale[‘Zombi mâle’/146, l=‘MpServer’, x=-1030,53, y=37,00, z=-524,69], EntityZombieNoHead[‘Zombi sans tête’/147, l=‘MpServer’, x=-1032,69, y=37,00, z=-529,13], EntityZombieNoHead[‘Zombi sans tête’/26, l=‘MpServer’, x=-935,50, y=27,00, z=-595,56], EntityBat[‘Chauve-souris’/29, l=‘MpServer’, x=-943,88, y=10,10, z=-581,25], EntityMinecartChest[‘entity.MinecartChest.name’/28, l=‘MpServer’, x=-937,50, y=9,50, z=-583,50], EntityZombieCrawler[‘Zombi Rampant’/30, l=‘MpServer’, x=-934,50, y=9,00, z=-582,50], EntityZombieHeadinHand[‘Zombi portant sa tête’/34, l=‘MpServer’, x=-935,88, y=30,00, z=-580,38], EntityZombieBabyMale[‘Enfant zombifié’/35, l=‘MpServer’, x=-933,31, y=31,00, z=-590,53], EntityZombieHeadinHand[‘Zombi portant sa tête’/33, l=‘MpServer’, x=-935,69, y=30,00, z=-578,63], EntityZombieCrawler2[‘Zombi Rampant’/38, l=‘MpServer’, x=-941,03, y=9,00, z=-573,09], EntityMinecartChest[‘entity.MinecartChest.name’/39, l=‘MpServer’, x=-938,50, y=31,50, z=-566,50], EntityScorpion[‘Scorpion’/447, l=‘MpServer’, x=-1030,44, y=37,00, z=-536,44], EntityZombieCrawler[‘Zombi Rampant’/918, l=‘MpServer’, x=-958,50, y=26,00, z=-578,50], EntityZombieSlowest[‘Zombi estropié’/42, l=‘MpServer’, x=-939,91, y=27,00, z=-547,09], EntityZombieSlowest[‘Zombi estropié’/41, l=‘MpServer’, x=-939,09, y=27,00, z=-545,88], EntityZombieMale[‘Zombi mâle’/2470, l=‘MpServer’, x=-1066,50, y=38,00, z=-570,50], EntityBat[‘Chauve-souris’/2489, l=‘MpServer’, x=-1074,16, y=38,81, z=-560,47], EntityBat[‘Chauve-souris’/2490, l=‘MpServer’, x=-1067,50, y=37,59, z=-563,59], EntityBat[‘Chauve-souris’/2491, l=‘MpServer’, x=-1069,53, y=37,71, z=-560,97], EntityZombieMale[‘Zombi mâle’/1870, l=‘MpServer’, x=-1081,50, y=39,00, z=-521,50], EntityZombieMale[‘Zombi mâle’/1868, l=‘MpServer’, x=-1071,76, y=39,00, z=-521,38], EntityZombieMale[‘Zombi mâle’/1869, l=‘MpServer’, x=-1072,04, y=39,00, z=-520,50], EntityZombieCrawler[‘Zombi Rampant’/903, l=‘MpServer’, x=-1081,50, y=31,00, z=-593,50], EntityZombieCrawler[‘Zombi Rampant’/900, l=‘MpServer’, x=-1080,50, y=31,00, z=-592,50], EntityBat[‘Chauve-souris’/2487, l=‘MpServer’, x=-1075,50, y=37,27, z=-560,75], EntityBat[‘Chauve-souris’/1960, l=‘MpServer’, x=-1021,84, y=43,00, z=-515,34], EntityZombieCrawler[‘Zombi Rampant’/449, l=‘MpServer’, x=-1029,50, y=37,00, z=-545,50], EntityScorpion[‘Scorpion’/448, l=‘MpServer’, x=-1034,50, y=37,00, z=-546,50], EntityZombieNoHead[‘Zombi sans tête’/1457, l=‘MpServer’, x=-960,50, y=5,00, z=-565,50], EntityZombieCrawler[‘Zombi Rampant’/985, l=‘MpServer’, x=-1086,50, y=31,00, z=-593,22], EntityBat[‘Chauve-souris’/2893, l=‘MpServer’, x=-1017,66, y=38,15, z=-478,53], EntityZombieBabyMale[‘Enfant zombifié’/981, l=‘MpServer’, x=-1091,50, y=31,00, z=-593,50], EntityZombieMale[‘Zombi mâle’/1804, l=‘MpServer’, x=-998,50, y=8,00, z=-556,50], EntityZombieMale[‘Zombi mâle’/1805, l=‘MpServer’, x=-1004,26, y=8,00, z=-557,53], EntityClientPlayerMP[‘TheAmateis’/114, l=‘MpServer’, x=-1014,41, y=65,62, z=-514,07]]
2014-03-03 21:10:31 [Infos] [STDOUT] Retry entities: 0 total; []
2014-03-03 21:10:31 [Infos] [STDOUT] Server brand: fml,forge
2014-03-03 21:10:31 [Infos] [STDOUT] Server type: Integrated singleplayer server
2014-03-03 21:10:31 [Infos] [STDOUT] Stacktrace:
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:440)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2313)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.client.Minecraft.run(Minecraft.java:857)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.client.main.Main.main(Main.java:95)
2014-03-03 21:10:31 [Infos] [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2014-03-03 21:10:31 [Infos] [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2014-03-03 21:10:31 [Infos] [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2014-03-03 21:10:31 [Infos] [STDOUT] at java.lang.reflect.Method.invoke(Unknown Source)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)
2014-03-03 21:10:31 [Infos] [STDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:27)
2014-03-03 21:10:31 [Infos] [STDOUT]
2014-03-03 21:10:31 [Infos] [STDOUT] – System Details –
2014-03-03 21:10:31 [Infos] [STDOUT] Details:
2014-03-03 21:10:31 [Infos] [STDOUT] Minecraft Version: 1.6.4
2014-03-03 21:10:31 [Infos] [STDOUT] Operating System: Windows 8 (x86) version 6.2
2014-03-03 21:10:31 [Infos] [STDOUT] Java Version: 1.7.0_45, Oracle Corporation
2014-03-03 21:10:31 [Infos] [STDOUT] Java VM Version: Java HotSpot Client VM (mixed mode), Oracle Corporation
2014-03-03 21:10:31 [Infos] [STDOUT] Memory: 764709224 bytes (729 MB) / 1046937600 bytes (998 MB) up to 1046937600 bytes (998 MB)
2014-03-03 21:10:31 [Infos] [STDOUT] JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
2014-03-03 21:10:31 [Infos] [STDOUT] AABB Pool Size: 1139 (63784 bytes; 0 MB) allocated, 2 (112 bytes; 0 MB) used
2014-03-03 21:10:31 [Infos] [STDOUT] Suspicious classes: FML and Forge are installed
2014-03-03 21:10:31 [Infos] [STDOUT] IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
2014-03-03 21:10:31 [Infos] [STDOUT] FML: MCP v8.11 FML v6.4.49.965 Minecraft Forge 9.11.1.965 4 mods loaded, 4 mods active
2014-03-03 21:10:31 [Infos] [STDOUT] mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2014-03-03 21:10:31 [Infos] [STDOUT] FML{6.4.49.965} [Forge Mod Loader] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2014-03-03 21:10:31 [Infos] [STDOUT] Forge{9.11.1.965} [Minecraft Forge] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2014-03-03 21:10:31 [Infos] [STDOUT] ViruZ{3.0} [ViruZ] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
2014-03-03 21:10:31 [Infos] [STDOUT] Launched Version: 1.6
2014-03-03 21:10:31 [Infos] [STDOUT] LWJGL: 2.9.0
2014-03-03 21:10:31 [Infos] [STDOUT] OpenGL: Intel HD Graphics 3000 GL version 3.1.0 - Build 9.17.10.3347, Intel
2014-03-03 21:10:31 [Infos] [STDOUT] Is Modded: Definitely; Client brand changed to ‘fml,forge’
2014-03-03 21:10:31 [Infos] [STDOUT] Type: Client (map_client.txt)
2014-03-03 21:10:31 [Infos] [STDOUT] Resource Pack: Default
2014-03-03 21:10:31 [Infos] [STDOUT] Current Language: Français (France)
2014-03-03 21:10:31 [Infos] [STDOUT] Profiler Position: N/A (disabled)
2014-03-03 21:10:31 [Infos] [STDOUT] Vec3 Pool Size: 217 (12152 bytes; 0 MB) allocated, 14 (784 bytes; 0 MB) used
2014-03-03 21:10:31 [Infos] [STDOUT] #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Jean-Baptiste\Desktop\Modding\JAVA\ViruZ Core Forge 1.6.4_9.11.1.953\forge\mcp\jars.\crash-reports\crash-2014-03-03_21.10.31-client.txt
AL lib: (EE) alc_cleanup: 1 device not closed:::
-
LivingEventManager.j?ava:133
Tu as quoi à cette ligne?
De plus,2014-03-03 21:09:53 [Grave] [ForgeModLoader] Found anonymous item of class viruz.zeamateis.items.ItemViruZWeapon with ID 609 owned by mod ViruZ, this item will NOT survive a 1.7 upgrade!
Enregistre tes items, sinon ils ne survivrons pas à une mise à jour de map 1.6 -> 1.7