1. Le forum de Minecraft-France va définitivement fermer ses portes. Celui-ci restera en lecture seule mais vous ne pourrez plus y apporter de nouveaux topics. Nous vous invitons à nous rejoindre sur le Discord de Minecraft-France qui permet de présenter vos projets, discuter avec la communauté etc.. Merci à tous d'avoir fait vivre ce forum de nombreuses années. Pour nous rejoindre sur Discord, Cliquez ici

Mob qui n'éxiste pas...

Discussion dans 'Aide à la création de mod' créé par Pumafi, 17 Déc 2013.

  1. Pumafi

    Pumafi Champion d'Odin

    Inscrit:
    24 Nov 2012
    Messages:
    4 221
    Points:
    214
    Sexe:
    Homme
    Salut les moddeurs...
    J’essaie de créer mon mon mob dans un mod, c'est le mob basique et j'ai suivis tout les tuto mais le mob n’apparait pas et si je vais dans la console je remarque ceci:

    2013-12-17 19:39:22 [Infos] [STDERR] at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    2013-12-17 19:39:22 [Infos] [STDERR] at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    2013-12-17 19:39:22 [Infos] [STDERR] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    2013-12-17 19:39:22 [Infos] [STDERR] at java.lang.reflect.Constructor.newInstance(Unknown Source)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.entity.EntityList.createEntityByID(EntityList.java:205)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.item.ItemMonsterPlacer.spawnCreature(ItemMonsterPlacer.java:175)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.item.ItemMonsterPlacer.onItemUse(ItemMonsterPlacer.java:81)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.item.ItemStack.tryPlaceItemIntoWorld(ItemStack.java:153)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.item.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:429)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.network.NetServerHandler.handlePlace(NetServerHandler.java:556)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.network.packet.Packet15Place.processPacket(Packet15Place.java:79)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:141)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:54)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:691)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:587)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:129)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:484)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
    2013-12-17 19:39:22 [Infos] [STDERR] Caused by: java.lang.NullPointerException
    2013-12-17 19:39:22 [Infos] [STDERR] at WarcraftIII.EntityDK.applyEntityAttributes(EntityDK.java:23)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.entity.EntityLivingBase.<init>(EntityLivingBase.java:193)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.entity.EntityLiving.<init>(EntityLiving.java:85)
    2013-12-17 19:39:22 [Infos] [STDERR] at net.minecraft.entity.EntityCreature.<init>(EntityCreature.java:40)
    2013-12-17 19:39:22 [Infos] [STDERR] at WarcraftIII.EntityDK.<init>(EntityDK.java:11)
    2013-12-17 19:39:22 [Infos] [STDERR] ... 20 more
    2013-12-17 19:39:22 [Avertissement] [Minecraft-Server] Skipping Entity with id 3

    Si quelqu'un aurait une idée d’où sa pourrait venir ....
     
  2. Nolan-XX

    Nolan-XX Modérateur
    Staff

    Inscrit:
    29 Déc 2012
    Messages:
    10 234
    Points:
    304
    Sexe:
    Homme
    On peut avoir les codes du mobs ( tous, le mob, le render, la classe principale )
     
  3. Pumafi

    Pumafi Champion d'Odin

    Inscrit:
    24 Nov 2012
    Messages:
    4 221
    Points:
    214
    Sexe:
    Homme
    Code (java):

    package WarcraftIII;
     
    import net.minecraft.client.model.ModelBiped;
    import net.minecraft.client.renderer.entity.RenderBiped;
    import net.minecraft.client.renderer.entity.RenderZombie;
    import net.minecraft.entity.Entity;
    import net.minecraft.util.ResourceLocation;
     
    public class DKRender extends RenderZombie
    {
    protected static final ResourceLocation texture = new ResourceLocation("warcraftiii:DK.png");
     
    public DKRender(ModelBiped par1ModelZombie, float par2) {
            super();
            // TODO Auto-generated constructor stub
     
        }
     
    protected ResourceLocation getDKTextures(EntityDK DK)
    {
    return texture;
    }
     
    protected ResourceLocation getEntityTexture(Entity par1Entity)
    {
    return this.getDKTextures((EntityDK)par1Entity);
    }
     
    }
    [/code=java]
    Code (java):

    package WarcraftIII;
     
    import net.minecraft.entity.EntityCreature;
    import net.minecraft.entity.SharedMonsterAttributes;
    import net.minecraft.world.World;
     
    public class EntityDK extends EntityCreature
    {
     
        public EntityDK(World par1World) {
            super(par1World);
            // TODO Auto-generated constructor stub
     
            }
     
     
        protected void applyEntityAttributes()
            {
            super.applyEntityAttributes();
            this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(40D);
            this.getEntityAttribute(SharedMonsterAttributes.followRange).setAttribute(40.0D);
            this.getEntityAttribute(SharedMonsterAttributes.movementSpeed).setAttribute(0.69);
            this.getEntityAttribute(SharedMonsterAttributes.attackDamage).setAttribute(8.0D);
     
     
     
            }
     
     
     
     
    }
    [/code=java]
    Code (java):

    package WarcraftIII;
     
    import cpw.mods.fml.client.registry.RenderingRegistry;
    import net.minecraft.client.model.ModelBiped;
    import net.minecraft.client.model.ModelZombie;
    import net.minecraft.client.renderer.entity.RenderBiped;
    import net.minecraft.client.renderer.entity.RenderZombie;
    import net.minecraftforge.client.IItemRenderer;
    import net.minecraftforge.client.MinecraftForgeClient;
     
    public class WarcraftIIIClientProxy extends WarcraftIIICommonProxy
    {
     
        @Override
            public void registerTextures()
            {
     
            RenderingRegistry.registerEntityRenderingHandler(EntityDK.class, new RenderZombie());
            }
    }
    [/code=java]
    Code (java):

    package WarcraftIII;
     
    import com.google.common.collect.Ranges;
     
    import net.minecraft.block.Block;
    import net.minecraft.creativetab.CreativeTabs;
    import net.minecraft.enchantment.Enchantment;
    import net.minecraft.entity.Entity;
    import net.minecraft.entity.EntityCreature;
    import net.minecraft.entity.EnumCreatureType;
    import net.minecraft.item.EnumArmorMaterial;
    import net.minecraft.item.EnumToolMaterial;
    import net.minecraft.item.Item;
    import net.minecraft.item.ItemStack;
    import net.minecraftforge.common.EnumHelper;
    import cpw.mods.fml.common.Mod;
    import cpw.mods.fml.common.Mod.EventHandler;
    import cpw.mods.fml.common.Mod.Instance;
    import cpw.mods.fml.common.SidedProxy;
    import cpw.mods.fml.common.event.FMLInitializationEvent;
    import cpw.mods.fml.common.event.FMLPostInitializationEvent;
    import cpw.mods.fml.common.event.FMLPreInitializationEvent;
    import cpw.mods.fml.common.network.NetworkMod;
    import cpw.mods.fml.common.registry.EntityRegistry;
    import cpw.mods.fml.common.registry.GameRegistry;
    import cpw.mods.fml.common.registry.LanguageRegistry;
     
    @Mod(modid = "warcraftiii", name = "World of Warcraft", version = "1.0.0", acceptedMinecraftVersions = "[1.6.2,)")
    @NetworkMod(clientSideRequired = true, serverSideRequired = false)
     
     
    public class WarcraftIII
    {
        @SidedProxy(clientSide = "WarcraftIII.WarcraftIIIClientProxy", serverSide = "WarcraftIII.WarcraftIIICommonProxy")
        public static WarcraftIIICommonProxy proxy;
     
    @Instance("WarcraftIII")
    public static WarcraftIII instance;
    //test
    //Blocks
    public static Block Orchest;
    //Items
    public static Item SoulShard;
    public static Item Pierredelumiere;
    public static Item Pierredombre;
    public static Item Runes;
    public static Item Lingotdesulfuron;
    public static Item Mineraidelementium;
    public static Item Barredelementium;
    public static Item Lienducherchevent;
    public static Item Essencedufleau;
    public static Item Poignee;
    public static Item Garde;
    public static Item Lame;
     
    //Table Creative
    public static CreativeTabs WarcraftCreativeTabs = new WarcraftCreativeTabs("WarcraftCreativeTabs");
     
    //Swords
    public static Item Frostmourne;
    public static Item Sulfuras;
    public static Item Ashbringer;
    public static Item Co_Ashbringer;
    public static Item LameTonnerre;
    public static Item ValAnyr;
    public static Item LameRunique;
    public static Item shadowmourne;
    public static Item Shallator;
    public static Item Ellamayne;
    public static Item Shalamayne;
    //Armors
    public static Item HurleventHelmet, HurleventChestPlate, HurleventLeggings, HurleventBoots;
    public static Item DKHelmet, DKChestPlate, DKLeggings, DKBoots;
    //Mobs
    public static Entity EntityDK;
    //Materiel
    static EnumToolMaterial Legendaire = EnumHelper.addToolMaterial("Legendaire", 3, 25000, 8.0F, 5, 22);
    static EnumToolMaterial Epique = EnumHelper.addToolMaterial("Epique", 3, 10000, 8.0F, 4.5F, 15);
    static EnumToolMaterial Runique = EnumHelper.addToolMaterial("Runique", 2, 300, 6.0F, 2.0F, 25);
    static EnumArmorMaterial Gardes = EnumHelper.addArmorMaterial("Gardes", 15, new int[]{2, 6, 5, 2}, 12);
     
    @EventHandler
    public void PreInit(FMLPreInitializationEvent event)
    {
        //test
        //Blocks
        Orchest = new Orchest(2000).setHardness(5000).setResistance(5000).setStepSound(Block.soundWoodFootstep).setUnlocalizedName("Orchest");
        GameRegistry.registerBlock(Orchest, "Orchest");
     
        //items
        SoulShard = new SoulShard(12000).setUnlocalizedName("SoulShard").setTextureName("warcraftiii:SoulShard");
        Pierredelumiere = new Pierredelumiere(12001).setUnlocalizedName("Pierredelumiere").setTextureName("warcraftiii:Pierredelumiere");
        Pierredombre = new Pierredombre(12002).setUnlocalizedName("Pierredombre").setTextureName("warcraftiii:Pierre dombre");
        Runes = new Runes(12003).setUnlocalizedName("Runes").setTextureName("warcraftiii:Runes");
        Lingotdesulfuron = new Lingotdesulfuron(12004).setUnlocalizedName("Lingotdesulfuron").setTextureName("warcraftiii:Lingotdesulfuron");
        Mineraidelementium = new Mineraidelementium(12005).setUnlocalizedName("Mineraidelementium").setTextureName("warcraftiii:Mineraidelementium");
        Barredelementium = new Barredelementium(12006).setUnlocalizedName("Barredelementium").setTextureName("warcraftiii:barredelementium");
        Lienducherchevent = new Lienducherchevent(12007).setUnlocalizedName("Lienducherchevent").setTextureName("warcraftiii:Lienducherchevent");
        Essencedufleau = new Essencedufleau(12008).setUnlocalizedName("Essencedufleau").setTextureName("warcraftiii:Essencedufleau");
        Poignee = new Poignee(12009).setUnlocalizedName("Poignee").setTextureName("warcraftiii:Poignee");
        Garde = new Garde(12010).setUnlocalizedName("Garde").setTextureName("warcraftiii:Garde");
        Lame = new Lame(12011).setUnlocalizedName("Lame").setTextureName("warcraftiii:Lame");
     
        //Swords
        Frostmourne = new Frostmourne(13000, Legendaire).setUnlocalizedName("Frostmourne").setTextureName("warcraftiii:Frostmourne");
        Sulfuras = new Sulfuras(13001, Legendaire).setUnlocalizedName("Sulfuras").setTextureName("warcraftiii:Sulfuras");
        Ashbringer = new ashbringer(13002, Epique).setUnlocalizedName("ashbringer").setTextureName("warcraftiii:ashbringer");
        Co_Ashbringer = new ashbringercorrupted(13003, Epique).setUnlocalizedName("ashbringercorrupted").setTextureName("warcraftiii:ashbringercorrupted");
        LameTonnerre = new LameTonnerre(13004, Legendaire).setUnlocalizedName("LameTonerre").setTextureName("warcraftiii:LameTonerre");
        ValAnyr = new ValAnyr(13005, Legendaire).setUnlocalizedName("ValAnyr").setTextureName("warcraftiii:ValAnyr");
        LameRunique = new LameRunique(13006, Runique).setUnlocalizedName("LameRunique").setTextureName("warcraftiii:LameRunique");
        shadowmourne = new shadowmourne(13007, Legendaire).setUnlocalizedName("shadowmourne").setTextureName("warcraftiii:shadowmourne");
        Shallator = new Shallator(13008, Epique).setUnlocalizedName("Shallator").setTextureName("warcraftiii:Shallator");
        Ellamayne = new Ellamayne(13009, Epique).setUnlocalizedName("Ellamayne").setTextureName("warcraftiii:Ellamayne");
        Shalamayne = new Shalamayne(13010, Legendaire).setUnlocalizedName("Shalamayne").setTextureName("warcraftiii:Shalamayne");
     
        //Armors
        HurleventHelmet = new ItemHurleventArmor(14002, Gardes, 0,0).setUnlocalizedName("HurleventHelmet").setTextureName("warcraftiii:HelmetHurlevent");
        HurleventChestPlate = new ItemHurleventArmor(14003, Gardes, 0, 1).setUnlocalizedName("HurleventChestPlate").setTextureName("warcraftiii:ChestHurlevent");
        HurleventLeggings = new ItemHurleventArmor(14004, Gardes, 0, 2).setUnlocalizedName("HurleventLeggings").setTextureName("warcraftiii:LeggingsHurlevent");
        HurleventBoots = new ItemHurleventArmor(14005, Gardes, 0, 3).setUnlocalizedName("HurleventBoots").setTextureName("warcraftiii:BootsHurlevent");
     
        DKHelmet = new ItemDKArmor(14006, Gardes, 0,0).setUnlocalizedName("DKHelmet").setTextureName("warcraftiii:DKHelmet");
        DKChestPlate = new ItemDKArmor(14007, Gardes, 0, 1).setUnlocalizedName("DKChestPlate").setTextureName("warcraftiii:DKChestPlate");
        DKLeggings = new ItemDKArmor(14008, Gardes, 0, 2).setUnlocalizedName("DKLeggings").setTextureName("warcraftiii:DkLeggings");
        DKBoots = new ItemDKArmor(14009,Gardes, 0, 3).setUnlocalizedName("DKBoots").setTextureName("warcraftiii:DKBoots");
        //Mobs
     
    }
     
    @EventHandler
    public void Init(FMLInitializationEvent event)
    {
    proxy.registerTextures();
     
    EntityRegistry.registerGlobalEntityID(EntityDK.class, "DK", EntityRegistry.findGlobalUniqueEntityId(), 0x5B6261, 0x53B7AA);
    EntityRegistry.registerModEntity(EntityDK.class, "DK", 250, this, 40, 1, true);
    EntityRegistry.addSpawn(EntityDK.class, 1, 4, 4, EnumCreatureType.creature);
    LanguageRegistry.instance().addStringLocalization("entity.EntityDK.name", "Chevalier de la Mort");
    GameRegistry.addRecipe(new ItemStack(Sulfuras), new Object[] {"XXX", "PZP", "PYP", 'X', WarcraftIII.Lingotdesulfuron, 'Z', Item.flintAndSteel, 'Y', Item.blazeRod, 'P', Item.blazePowder});
     
     
    }
     
    @EventHandler
    public void PostInit(FMLPostInitializationEvent event)
    {
     
    }
    }
    [/code=java]
     
  4. Nolan-XX

    Nolan-XX Modérateur
    Staff

    Inscrit:
    29 Déc 2012
    Messages:
    10 234
    Points:
    304
    Sexe:
    Homme
    Essaye de remplacer l'ID du mob par 1 et mets le code du mob dans @PreInit
    Code (java):
    EntityRegistry.registerGlobalEntityID(EntityDK.class, "DK", EntityRegistry.findGlobalUniqueEntityId(), 0x5B6261, 0x53B7AA);
    EntityRegistry.registerModEntity(EntityDK.class, "DK", 250, this, 40, 1, true);
    EntityRegistry.addSpawn(EntityDK.class, 1, 4, 4, EnumCreatureType.creature);
     
  5. robin4002

    robin4002 Support Technique
    Staff

    Inscrit:
    17 Août 2012
    Messages:
    5 478
    Points:
    229
    Sexe:
    Homme
    this.getEntityAttribute(SharedMonsterAttributes.attackDamage).setAttribute(8.0D);
    Enlève cette ligne tu ne peux pas mettre cette attribue sur un entityCreature.
     
  6. Elliotau78

    Elliotau78 Résident du Nether

    Inscrit:
    8 Déc 2012
    Messages:
    4 614
    Points:
    184
    Sexe:
    Homme
    Par curiosité, pourquoi ?
     
  7. robin4002

    robin4002 Support Technique
    Staff

    Inscrit:
    17 Août 2012
    Messages:
    5 478
    Points:
    229
    Sexe:
    Homme
    Son entité est extends EntityCreature, or un EntityCreature ne peut pas attaquer. Pour appliquer cette attribue il faut faire une entité extends EntityMob
     
  8. Elliotau78

    Elliotau78 Résident du Nether

    Inscrit:
    8 Déc 2012
    Messages:
    4 614
    Points:
    184
    Sexe:
    Homme
    Ah ouai, j'avais pas fait la différence. bah, là c'est sur que ça risque pas de marcher ^^.
     
  9. Pumafi

    Pumafi Champion d'Odin

    Inscrit:
    24 Nov 2012
    Messages:
    4 221
    Points:
    214
    Sexe:
    Homme
    Bon je suis désolé d'encore vous déranger mais le problème n'est pas résolu, en fait il s'est aggravé...
    Maintenant ça crash quand le mob est présent et sa situe au niveau du render mais va savoir ou...

    ---- Minecraft Crash Report ----
    // Quite honestly, I wouldn't worry myself about that.

    Time: 04/01/14 00:12
    Description: Rendering entity in world

    java.lang.ClassCastException: WarcraftIII.EntityDK cannot be cast to net.minecraft.entity.monster.EntityZombie
    at net.minecraft.client.renderer.entity.RenderZombie.doRender(RenderZombie.java:164)
    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:1006)
    at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:946)
    at net.minecraft.client.Minecraft.run(Minecraft.java:838)
    at net.minecraft.client.main.Main.main(Main.java:93)
    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)


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

    -- Head --
    Stacktrace:
    at net.minecraft.client.renderer.entity.RenderZombie.doRender(RenderZombie.java:164)

    -- Entity being rendered --
    Details:
    Entity Type: DK (WarcraftIII.EntityDK)
    Entity ID: 32
    Entity Name: entity.DK.name
    Entity's Exact location: -984,50, 4,00, 671,50
    Entity's Block location: World: (-985,4,671), Chunk: (at 7,0,15 in -62,41; contains blocks -992,0,656 to -977,255,671), Region: (-2,1; contains chunks -64,32 to -33,63, blocks -1024,0,512 to -513,255,1023)
    Entity's Momentum: 0,00, -0,08, 0,00

    -- Renderer details --
    Details:
    Assigned renderer: net.minecraft.client.renderer.entity.RenderZombie@398b7153
    Location: -0,53,-1,07,2,27 - World: (-1,-2,2), Chunk: (at 15,-1,2 in -1,0; contains blocks -16,0,0 to -1,255,15), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)
    Rotation: 109.6875
    Delta: 0.3314786
    Stacktrace:
    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)

    -- Affected level --
    Details:
    Level name: MpServer
    All players: 1 total; [EntityClientPlayerMP['Player934'/30, l='MpServer', x=-983,97, y=4,96, z=669,23]]
    Chunk stats: MultiplayerChunkCache: 5
    Level seed: 0
    Level generator: ID 01 - flat, ver 0. Features enabled: false
    Level generator options:
    Level spawn location: World: (-717,4,465), Chunk: (at 3,0,1 in -45,29; contains blocks -720,0,464 to -705,255,479), Region: (-2,0; contains chunks -64,0 to -33,31, blocks -1024,0,0 to -513,255,511)
    Level time: 111627 game time, 13440 day time
    Level dimension: 0
    Level storage version: 0x00000 - Unknown?
    Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
    Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
    Forced entities: 3 total; [EntityDK['entity.DK.name'/32, l='MpServer', x=-984,50, y=4,00, z=671,50], EntityClientPlayerMP['Player934'/30, l='MpServer', x=-983,97, y=4,96, z=669,23], EntitySlime['Slime'/31, l='MpServer', x=-977,63, y=4,00, z=664,12]]
    Retry entities: 0 total; []
    Server brand: fml,forge
    Server type: Integrated singleplayer server
    Stacktrace:
    at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:440)
    at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2312)
    at net.minecraft.client.Minecraft.run(Minecraft.java:856)
    at net.minecraft.client.main.Main.main(Main.java:93)
    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)

    -- System Details --
    Details:
    Minecraft Version: 1.6.4
    Operating System: Windows 7 (amd64) version 6.1
    Java Version: 1.7.0_45, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 742402864 bytes (708 MB) / 1056309248 bytes (1007 MB) up to 1056309248 bytes (1007 MB)
    JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
    AABB Pool Size: 18931 (1060136 bytes; 1 MB) allocated, 345 (19320 bytes; 0 MB) used
    Suspicious classes: FML and Forge are installed
    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
    FML: MCP v8.11 FML v6.4.38.942 Minecraft Forge 9.11.1.942 4 mods loaded, 4 mods active
    mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    FML{6.4.38.942} [Forge Mod Loader] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Av
     

Partager cette page