MFF

    Minecraft Forge France
    • Récent
    • Mots-clés
    • Populaire
    • Utilisateurs
    • Groupes
    • Forge Events
      • Automatique
      • Foncé
      • Clair
    • S'inscrire
    • Se connecter

    Crash coffre

    Planifier Épinglé Verrouillé Déplacé Sans suite
    1.7.10
    15 Messages 3 Publieurs 3.0k Vues 1 Watching
    Charger plus de messages
    • Du plus ancien au plus récent
    • Du plus récent au plus ancien
    • Les plus votés
    Répondre
    • Répondre à l'aide d'un nouveau sujet
    Se connecter pour répondre
    Ce sujet a été supprimé. Seuls les utilisateurs avec les droits d'administration peuvent le voir.
    • robin4002R Hors-ligne
      robin4002 Moddeurs confirmés Rédacteurs Administrateurs
      dernière édition par

      Tu as ajouté plus de slot que ton inventaire en a.

      1 réponse Dernière réponse Répondre Citer 0
      • darkvince37D Hors-ligne
        darkvince37
        dernière édition par

        Meme en changer les valeur sa crash je comprend pas

        1 réponse Dernière réponse Répondre Citer 0
        • robin4002R Hors-ligne
          robin4002 Moddeurs confirmés Rédacteurs Administrateurs
          dernière édition par

          Tu as quoi dans ton tile entity ?

          1 réponse Dernière réponse Répondre Citer 0
          • darkvince37D Hors-ligne
            darkvince37
            dernière édition par

            @‘robin4002’:

            Tu as quoi dans ton tile entity ?

            Comme en haut j’ai juste changer les valuer du contener et du gui

            1 réponse Dernière réponse Répondre Citer 0
            • robin4002R Hors-ligne
              robin4002 Moddeurs confirmés Rédacteurs Administrateurs
              dernière édition par

              Tu n’as jamais envoyé ton tile entity.

              1 réponse Dernière réponse Répondre Citer 0
              • darkvince37D Hors-ligne
                darkvince37
                dernière édition par

                Ah oui désolé

                package fr.darkvince.ultrav2.chest;
                
                import net.minecraft.entity.player.EntityPlayer;
                import net.minecraft.inventory.IInventory;
                import net.minecraft.item.ItemStack;
                import net.minecraft.nbt.NBTTagCompound;
                import net.minecraft.nbt.NBTTagList;
                import net.minecraft.tileentity.TileEntity;
                import net.minecraftforge.common.util.Constants;
                
                public class TileEntityChestDiamond extends TileEntity implements IInventory{
                
                private ItemStack[] inventory = new ItemStack[72];
                private String customName;
                
                public void readFromNBT(NBTTagCompound nbttag)
                    {
                        super.readFromNBT(nbttag);
                        NBTTagList nbttaglist = nbttag.getTagList("Items", Constants.NBT.TAG_COMPOUND);
                        this.inventory = new ItemStack[this.getSizeInventory()];
                
                        if (nbttag.hasKey("CustomName"))
                        {
                            this.customName = nbttag.getString("CustomName");
                        }
                
                        for (int i = 0; i < nbttaglist.tagCount(); i++)
                        {
                            NBTTagCompound nbttagcompound1 = nbttaglist.getCompoundTagAt(i);
                            int j = nbttagcompound1.getByte("Slot");
                
                            if (j >= 0 && j < this.inventory.length)
                            {
                                this.inventory[j] = ItemStack.loadItemStackFromNBT(nbttagcompound1);
                            }
                        }
                    }
                
                    public void writeToNBT(NBTTagCompound nbttag)
                    {
                        super.writeToNBT(nbttag);
                        NBTTagList nbttaglist = new NBTTagList();
                
                        for (int i = 0; i < this.inventory.length; i++)
                        {
                            if (this.inventory* != null)
                            {
                                NBTTagCompound nbttagcompound1 = new NBTTagCompound();
                                nbttagcompound1.setByte("Slot", (byte)i);
                                this.inventory*.writeToNBT(nbttagcompound1);
                                nbttaglist.appendTag(nbttagcompound1);
                            }
                        }
                
                        nbttag.setTag("Items", nbttaglist);
                
                    }
                
                    @Override
                public int getSizeInventory()
                {
                return inventory.length;
                }
                
                    @Override
                public ItemStack getStackInSlot(int slotId)
                {
                return inventory[slotId];
                }
                
                    @Override
                    public ItemStack decrStackSize(int slotId, int quantity)
                    {
                        if (this.inventory[slotId] != null)
                        {
                            ItemStack itemstack;
                
                            if (this.inventory[slotId].stackSize <= quantity)
                            {
                                itemstack = this.inventory[slotId];
                                this.inventory[slotId] = null;
                                this.markDirty();
                                return itemstack;
                            }
                            else
                            {
                                itemstack = this.inventory[slotId].splitStack(quantity);
                
                                if (this.inventory[slotId].stackSize == 0)
                                {
                                    this.inventory[slotId] = null;
                                }
                
                                this.markDirty();
                                return itemstack;
                            }
                        }
                        else
                        {
                            return null;
                        }
                    }
                
                @Override
                public ItemStack getStackInSlotOnClosing(int slotId)
                {
                        if (this.inventory[slotId] != null)
                        {
                            ItemStack itemstack = this.inventory[slotId];
                            this.inventory[slotId] = null;
                            return itemstack;
                        }
                        else
                        {
                            return null;
                        }
                }
                
                @Override
                public void setInventorySlotContents(int slotId, ItemStack stack)
                {
                        this.inventory[slotId] = stack;
                
                        if (stack != null && stack.stackSize > this.getInventoryStackLimit())
                        {
                            stack.stackSize = this.getInventoryStackLimit();
                        }
                
                        this.markDirty();
                }
                
                @Override
                public String getInventoryName()
                {
                return this.hasCustomInventoryName() ? this.customName : "container.bigchest";
                }
                
                @Override
                public boolean hasCustomInventoryName()
                {
                        return this.customName != null && this.customName.length() > 0;
                }
                
                    public void setCustomGuiName(String name)
                    {
                        this.customName = name;
                    }
                
                    @Override
                public int getInventoryStackLimit()
                {
                return 64;
                }
                    @Override
                public boolean isUseableByPlayer(EntityPlayer player)
                {
                return worldObj.getTileEntity(xCoord, yCoord, zCoord) == this && player.getDistanceSq(xCoord + 0.5, yCoord + 0.5, zCoord + 0.5) < 64;
                }
                
                @Override
                public boolean isItemValidForSlot(int slotId, ItemStack stack)
                {
                return true;
                }
                
                @Override
                public void openInventory() {
                // TODO Auto-generated method stub
                
                }
                
                @Override
                public void closeInventory() {
                // TODO Auto-generated method stub
                
                }
                
                }
                
                1 réponse Dernière réponse Répondre Citer 0
                • robin4002R Hors-ligne
                  robin4002 Moddeurs confirmés Rédacteurs Administrateurs
                  dernière édition par

                  Ton tableau fait 72 de long, ton crash ne devrait pas être possible.
                  Il était plus petit avant ?
                  Si oui, envoie le dernier crash en date.

                  1 réponse Dernière réponse Répondre Citer 0
                  • darkvince37D Hors-ligne
                    darkvince37
                    dernière édition par

                    @‘robin4002’:

                    Ton tableau fait 72 de long, ton crash ne devrait pas être possible.
                    Il était plus petit avant ?
                    Si oui, envoie le dernier crash en date.

                    Je vient de le changer je les mis sur 36 le crash

                    –-- Minecraft Crash Report ----
                    // Why is it breaking :(
                    
                    Time: 05/01/17 11:17
                    Description: Ticking memory connection
                    
                    java.lang.ArrayIndexOutOfBoundsException: 36
                    at fr.darkvince.ultrav2.chest.TileEntityChestDiamond.getStackInSlot(TileEntityChestDiamond.java:69)
                    at net.minecraft.inventory.Slot.getStack(Slot.java:88)
                    at net.minecraft.inventory.Container.getInventory(Container.java:67)
                    at net.minecraft.inventory.Container.addCraftingToCrafters(Container.java:53)
                    at cpw.mods.fml.common.network.internal.FMLNetworkHandler.openGui(FMLNetworkHandler.java:88)
                    at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2501)
                    at fr.darkvince.ultrav2.chest.ChestDiamond.onBlockActivated(ChestDiamond.java:42)
                    at net.minecraft.server.management.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:409)
                    at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(NetHandlerPlayServer.java:593)
                    at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:74)
                    at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:122)
                    at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241)
                    at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:182)
                    at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:726)
                    at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614)
                    at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118)
                    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485)
                    at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752)
                    
                    A detailed walkthrough of the error, its code path and all known details is as follows:
                    ---------------------------------------------------------------------------------------
                    
                    -- Head --
                    Stacktrace:
                    at fr.darkvince.ultrav2.chest.TileEntityChestDiamond.getStackInSlot(TileEntityChestDiamond.java:69)
                    at net.minecraft.inventory.Slot.getStack(Slot.java:88)
                    at net.minecraft.inventory.Container.getInventory(Container.java:67)
                    at net.minecraft.inventory.Container.addCraftingToCrafters(Container.java:53)
                    at cpw.mods.fml.common.network.internal.FMLNetworkHandler.openGui(FMLNetworkHandler.java:88)
                    at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2501)
                    at fr.darkvince.ultrav2.chest.ChestDiamond.onBlockActivated(ChestDiamond.java:42)
                    at net.minecraft.server.management.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:409)
                    at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(NetHandlerPlayServer.java:593)
                    at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:74)
                    at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:122)
                    at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241)
                    
                    -- Ticking connection --
                    Details:
                    Connection: net.minecraft.network.NetworkManager@139e8ef
                    Stacktrace:
                    at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:182)
                    at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:726)
                    at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614)
                    at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118)
                    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485)
                    at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752)
                    
                    -- System Details --
                    Details:
                    Minecraft Version: 1.7.10
                    Operating System: Windows 10 (x86) version 10.0
                    Java Version: 1.8.0_111, Oracle Corporation
                    Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
                    Memory: 832577856 bytes (794 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 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: 15, tcache: 0, allocated: 13, tallocated: 95
                    FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1558 5 mods loaded, 5 mods active
                    States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
                    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.1558-1.7.10.jar)
                    UCHIJAAAA Forge{10.13.4.1558} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar)
                    UCHIJAAAA ultrav2{1.0.0} [Ultrafight V2] (bin)
                    UCHIJAAAA ModCustomMenu{1.0} [ModCustomMenu] (bin)
                    GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.
                    Profiler Position: N/A (disabled)
                    Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
                    Player Count: 1 / 8; [EntityPlayerMP['Player443'/340, l='New World', x=33,01, y=68,00, z=-325,20]]
                    Type: Integrated Server (map_client.txt)
                    Is Modded: Definitely; Client brand changed to 'fml,forge'
                    
                    
                        @Override
                    public ItemStack getStackInSlot(int slotId)
                    {
                    return inventory[slotId];
                    }
                    
                    
                    1 réponse Dernière réponse Répondre Citer 0
                    • robin4002R Hors-ligne
                      robin4002 Moddeurs confirmés Rédacteurs Administrateurs
                      dernière édition par

                      C’est pas normal, vu le code dans ton container :

                      int i;
                      for(i = 0; i < 3; ++i)
                      {
                      for(int j = 0; j < 9; ++j)
                      {
                      this.addSlotToContainer(new Slot(inventory, j + i * 9 + 9, 8 + j * 18, 86 + i * 18));
                      }
                      }
                      

                      Le dernier slot devrait être 8 + 9 * 2 = 26.
                      Ça ne devrait pas atteindre 36.

                      Ajoutes-tu des slots autre-part ?

                      1 réponse Dernière réponse Répondre Citer 0
                      • darkvince37D Hors-ligne
                        darkvince37
                        dernière édition par

                        @‘robin4002’:

                        C’est pas normal, vu le code dans ton container :

                             int i;
                             for(i = 0; i < 3; ++i)
                             {
                                 for(int j = 0; j < 9; ++j)
                                 {
                                     this.addSlotToContainer(new Slot(inventory, j + i * 9 + 9, 8 + j * 18, 86 + i * 18));
                                 }
                             }
                        

                        Le dernier slot devrait être 8 + 9 * 2 = 26.
                        Ça ne devrait pas atteindre 36.

                        Ajoutes-tu des slots autre-part ?

                        Non j’ai juste se que j’ai donner

                        Edit j’ai remis a 72 car c’est la valeur que je veut réelement

                        –-- Minecraft Crash Report ----
                        // I let you down. Sorry :(
                        
                        Time: 05/01/17 19:32
                        Description: Unexpected error
                        
                        java.lang.IndexOutOfBoundsException: Index: 45, Size: 45
                        at java.util.ArrayList.rangeCheck(Unknown Source)
                        at java.util.ArrayList.get(Unknown Source)
                        at net.minecraft.inventory.Container.getSlot(Container.java:130)
                        at net.minecraft.inventory.Container.putStacksInSlots(Container.java:558)
                        at net.minecraft.client.network.NetHandlerPlayClient.handleWindowItems(NetHandlerPlayClient.java:1202)
                        at net.minecraft.network.play.server.S30PacketWindowItems.processPacket(S30PacketWindowItems.java:70)
                        at net.minecraft.network.play.server.S30PacketWindowItems.processPacket(S30PacketWindowItems.java:78)
                        at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241)
                        at net.minecraft.client.multiplayer.PlayerControllerMP.updateController(PlayerControllerMP.java:317)
                        at net.minecraft.client.Minecraft.runTick(Minecraft.java:1693)
                        at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039)
                        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 java.util.ArrayList.rangeCheck(Unknown Source)
                        at java.util.ArrayList.get(Unknown Source)
                        at net.minecraft.inventory.Container.getSlot(Container.java:130)
                        at net.minecraft.inventory.Container.putStacksInSlots(Container.java:558)
                        at net.minecraft.client.network.NetHandlerPlayClient.handleWindowItems(NetHandlerPlayClient.java:1202)
                        at net.minecraft.network.play.server.S30PacketWindowItems.processPacket(S30PacketWindowItems.java:70)
                        at net.minecraft.network.play.server.S30PacketWindowItems.processPacket(S30PacketWindowItems.java:78)
                        at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241)
                        at net.minecraft.client.multiplayer.PlayerControllerMP.updateController(PlayerControllerMP.java:317)
                        
                        -- Affected level --
                        Details:
                        Level name: MpServer
                        All players: 1 total; [EntityClientPlayerMP['Player450'/336, l='MpServer', x=32,75, y=69,62, z=-326,01]]
                        Chunk stats: MultiplayerChunkCache: 289, 289
                        Level seed: 0
                        Level generator: ID 00 - default, ver 1\. Features enabled: false
                        Level generator options:
                        Level spawn location: World: (33,64,-321), Chunk: (at 1,4,15 in 2,-21; contains blocks 32,0,-336 to 47,255,-321), Region: (0,-1; contains chunks 0,-32 to 31,-1, blocks 0,0,-512 to 511,255,-1)
                        Level time: 10104 game time, 10104 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: 100 total; [EntitySkeleton['Skeleton'/50, l='MpServer', x=-20,63, y=19,00, z=-385,41], EntitySpider['Spider'/51, l='MpServer', x=-30,56, y=20,00, z=-396,06], EntitySkeleton['Skeleton'/52, l='MpServer', x=-20,59, y=18,00, z=-396,44], EntitySkeleton['Skeleton'/53, l='MpServer', x=-19,77, y=19,00, z=-386,45], EntitySkeleton['Skeleton'/54, l='MpServer', x=-26,21, y=56,00, z=-386,50], EntityZombie['Zombie'/55, l='MpServer', x=-16,50, y=22,00, z=-373,91], EntityCreeper['Creeper'/56, l='MpServer', x=-17,00, y=18,00, z=-383,59], EntityCreeper['Creeper'/57, l='MpServer', x=-27,00, y=60,00, z=-295,56], EntitySkeleton['Skeleton'/62, l='MpServer', x=-1,97, y=41,00, z=-403,34], EntitySkeleton['Skeleton'/63, l='MpServer', x=-3,22, y=41,00, z=-404,84], EntitySkeleton['Skeleton'/65, l='MpServer', x=-1,97, y=41,00, z=-404,16], EntityZombie['Zombie'/66, l='MpServer', x=-2,31, y=41,00, z=-402,31], EntityZombie['Zombie'/67, l='MpServer', x=-4,94, y=17,00, z=-398,38], EntityCreeper['Creeper'/68, l='MpServer', x=-11,44, y=55,00, z=-395,09], EntityZombie['Zombie'/69, l='MpServer', x=-10,94, y=54,00, z=-391,50], EntityZombie['Zombie'/70, l='MpServer', x=-6,53, y=58,00, z=-394,94], EntitySkeleton['Skeleton'/71, l='MpServer', x=-8,31, y=56,00, z=-394,53], EntityZombie['Zombie'/72, l='MpServer', x=-8,84, y=55,00, z=-393,44], EntityZombie['Zombie'/73, l='MpServer', x=-5,31, y=58,00, z=-396,53], EntityBat['Bat'/74, l='MpServer', x=-0,75, y=37,10, z=-373,31], EntityBat['Bat'/75, l='MpServer', x=-0,03, y=36,02, z=-376,69], EntitySkeleton['Skeleton'/76, l='MpServer', x=-4,06, y=24,00, z=-328,53], EntitySkeleton['Skeleton'/77, l='MpServer', x=-11,38, y=29,00, z=-289,84], EntityZombie['Zombie'/78, l='MpServer', x=-8,50, y=19,00, z=-290,03], EntityCreeper['Creeper'/79, l='MpServer', x=-8,00, y=18,00, z=-288,50], EntityCreeper['Creeper'/80, l='MpServer', x=-11,16, y=18,00, z=-290,38], EntityClientPlayerMP['Player450'/336, l='MpServer', x=32,75, y=69,62, z=-326,01], EntityCreeper['Creeper'/81, l='MpServer', x=-4,50, y=53,00, z=-297,50], EntityZombie['Zombie'/82, l='MpServer', x=-13,00, y=16,85, z=-286,47], EntityCreeper['Creeper'/83, l='MpServer', x=-11,50, y=18,00, z=-285,50], EntitySkeleton['Skeleton'/94, l='MpServer', x=12,34, y=36,00, z=-388,00], EntityBat['Bat'/95, l='MpServer', x=5,25, y=56,10, z=-388,66], EntityZombie['Zombie'/96, l='MpServer', x=15,59, y=55,00, z=-392,31], EntityCreeper['Creeper'/97, l='MpServer', x=13,33, y=32,00, z=-372,42], EntityCreeper['Creeper'/98, l='MpServer', x=9,19, y=32,00, z=-372,42], EntityZombie['Zombie'/99, l='MpServer', x=6,63, y=27,00, z=-309,91], EntitySkeleton['Skeleton'/100, l='MpServer', x=7,86, y=27,00, z=-309,77], EntityCreeper['Creeper'/101, l='MpServer', x=4,30, y=27,20, z=-300,70], EntitySkeleton['Skeleton'/102, l='MpServer', x=3,38, y=52,36, z=-292,50], EntitySkeleton['Skeleton'/103, l='MpServer', x=-1,02, y=21,00, z=-277,50], EntityBat['Bat'/104, l='MpServer', x=15,03, y=28,18, z=-275,75], EntityBat['Bat'/105, l='MpServer', x=12,34, y=30,26, z=-276,16], EntityBat['Bat'/106, l='MpServer', x=8,63, y=32,10, z=-274,16], EntityBat['Bat'/110, l='MpServer', x=23,91, y=28,95, z=-302,34], EntitySkeleton['Skeleton'/111, l='MpServer', x=25,53, y=28,00, z=-298,91], EntitySpider['Spider'/112, l='MpServer', x=23,72, y=28,00, z=-299,97], EntityBat['Bat'/113, l='MpServer', x=17,63, y=33,82, z=-269,78], EntityBat['Bat'/124, l='MpServer', x=45,44, y=31,10, z=-404,28], EntityZombie['Zombie'/125, l='MpServer', x=39,66, y=21,00, z=-401,88], EntityZombie['Zombie'/127, l='MpServer', x=47,56, y=18,00, z=-387,47], EntitySkeleton['Skeleton'/128, l='MpServer', x=46,66, y=20,00, z=-381,31], EntitySkeleton['Skeleton'/129, l='MpServer', x=46,56, y=20,00, z=-382,56], EntitySkeleton['Skeleton'/130, l='MpServer', x=39,94, y=24,00, z=-372,47], EntitySkeleton['Skeleton'/131, l='MpServer', x=39,16, y=25,00, z=-369,31], EntitySkeleton['Skeleton'/132, l='MpServer', x=43,66, y=23,03, z=-377,64], EntityWitch['Witch'/133, l='MpServer', x=47,22, y=21,00, z=-379,47], EntityZombie['Zombie'/134, l='MpServer', x=46,22, y=19,00, z=-386,32], EntityCreeper['Creeper'/135, l='MpServer', x=33,44, y=32,00, z=-323,03], EntitySpider['Spider'/136, l='MpServer', x=47,04, y=57,37, z=-292,28], EntitySpider['Spider'/137, l='MpServer', x=43,73, y=58,00, z=-296,55], EntitySpider['Spider'/138, l='MpServer', x=41,71, y=58,00, z=-293,71], EntitySpider['Spider'/139, l='MpServer', x=45,28, y=58,00, z=-292,84], EntitySpider['Spider'/140, l='MpServer', x=45,36, y=58,00, z=-294,83], EntitySkeleton['Skeleton'/141, l='MpServer', x=42,63, y=53,00, z=-302,31], EntitySpider['Spider'/142, l='MpServer', x=43,40, y=58,00, z=-294,84], EntitySkeleton['Skeleton'/143, l='MpServer', x=41,56, y=53,00, z=-303,94], EntityWitch['Witch'/159, l='MpServer', x=48,48, y=21,00, z=-383,38], EntityWitch['Witch'/160, l='MpServer', x=52,38, y=21,00, z=-386,13], EntityCreeper['Creeper'/161, l='MpServer', x=48,63, y=21,00, z=-382,41], EntityZombie['Zombie'/162, l='MpServer', x=51,53, y=34,00, z=-326,22], EntityZombie['Zombie'/163, l='MpServer', x=50,53, y=32,00, z=-323,25], EntityCreeper['Creeper'/177, l='MpServer', x=72,44, y=30,00, z=-395,31], EntityZombie['Zombie'/178, l='MpServer', x=65,53, y=28,00, z=-397,94], EntityMooshroom['Mooshroom'/179, l='MpServer', x=75,63, y=72,00, z=-397,38], EntityMooshroom['Mooshroom'/180, l='MpServer', x=68,63, y=72,00, z=-332,78], EntityBat['Bat'/181, l='MpServer', x=78,75, y=39,10, z=-295,59], EntityBat['Bat'/182, l='MpServer', x=73,44, y=27,10, z=-250,13], EntityZombie['Zombie'/184, l='MpServer', x=85,75, y=12,00, z=-401,31], EntitySkeleton['Skeleton'/185, l='MpServer', x=86,69, y=12,00, z=-402,38], EntityCreeper['Creeper'/186, l='MpServer', x=86,50, y=17,00, z=-401,03], EntityEnderman['Enderman'/188, l='MpServer', x=83,03, y=14,00, z=-399,35], EntityCreeper['Creeper'/189, l='MpServer', x=83,94, y=14,00, z=-400,04], EntitySkeleton['Skeleton'/190, l='MpServer', x=85,50, y=25,00, z=-394,50], EntityMooshroom['Mooshroom'/191, l='MpServer', x=94,28, y=79,00, z=-320,69], EntityMooshroom['Mooshroom'/192, l='MpServer', x=95,47, y=76,00, z=-333,63], EntityMinecartChest['entity.MinecartChest.name'/193, l='MpServer', x=80,50, y=26,50, z=-257,50], EntityBat['Bat'/194, l='MpServer', x=90,25, y=29,00, z=-255,25], EntityBat['Bat'/195, l='MpServer', x=90,50, y=29,00, z=-255,28], EntityBat['Bat'/196, l='MpServer', x=82,38, y=48,10, z=-253,25], EntityMooshroom['Mooshroom'/199, l='MpServer', x=102,22, y=66,00, z=-386,69], EntityMooshroom['Mooshroom'/204, l='MpServer', x=110,63, y=70,00, z=-339,22], EntityMooshroom['Mooshroom'/205, l='MpServer', x=103,47, y=72,00, z=-333,81], EntityMooshroom['Mooshroom'/206, l='MpServer', x=112,13, y=77,00, z=-310,80], EntityMooshroom['Mooshroom'/207, l='MpServer', x=111,25, y=72,00, z=-300,28], EntityMooshroom['Mooshroom'/208, l='MpServer', x=111,66, y=72,00, z=-291,28], EntityMooshroom['Mooshroom'/209, l='MpServer', x=114,53, y=63,00, z=-276,41], EntityMooshroom['Mooshroom'/210, l='MpServer', x=101,38, y=66,00, z=-269,47], EntityMooshroom['Mooshroom'/214, l='MpServer', x=112,47, y=63,00, z=-400,28], EntityMooshroom['Mooshroom'/215, l='MpServer', x=112,25, y=65,00, z=-390,47], EntityMooshroom['Mooshroom'/221, l='MpServer', x=112,78, y=70,00, z=-334,75]]
                        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:2566)
                        at net.minecraft.client.Minecraft.run(Minecraft.java:991)
                        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 10 (x86) version 10.0
                        Java Version: 1.8.0_111, Oracle Corporation
                        Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
                        Memory: 859898744 bytes (820 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 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: 11, tcache: 0, allocated: 13, tallocated: 95
                        FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1558 5 mods loaded, 5 mods active
                        States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
                        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.1558-1.7.10.jar)
                        UCHIJAAAA Forge{10.13.4.1558} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar)
                        UCHIJAAAA ultrav2{1.0.0} [Ultrafight V2] (bin)
                        UCHIJAAAA ModCustomMenu{1.0} [ModCustomMenu] (bin)
                        GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 372.90' Renderer: 'GeForce GTX 750 Ti/PCIe/SSE2'
                        Launched Version: 1.7.10
                        LWJGL: 2.9.1
                        OpenGL: GeForce GTX 750 Ti/PCIe/SSE2 GL version 4.5.0 NVIDIA 372.90, NVIDIA Corporation
                        GL Caps: Using GL 1.3 multitexturing.
                        Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
                        Anisotropic filtering is supported and maximum anisotropy is 16.
                        Shaders are available because OpenGL 2.1 is supported.
                        
                        Is Modded: Definitely; Client brand changed to 'fml,forge'
                        Type: Client (map_client.txt)
                        Resource Packs: []
                        Current Language: English (US)
                        Profiler Position: N/A (disabled)
                        Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
                        Anisotropic Filtering: Off (1)
                        

                        C’est le crash que j’avais mis plus haut mais le truc c’est que 72 sa devrai passez c’est pas trop grand

                        1 réponse Dernière réponse Répondre Citer 0
                        • 1 / 1
                        • Premier message
                          Dernier message
                        Design by Woryk
                        ContactMentions Légales

                        MINECRAFT FORGE FRANCE © 2024

                        Powered by NodeBB