MFF

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

    Créer un item basique

    Planifier Épinglé Verrouillé Déplacé Les items
    1.7.x
    243 Messages 37 Publieurs 84.9k Vues 7 Abonné
    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.
    • M Hors-ligne
      MrAzErTy31
      dernière édition par

      Dans eclipse : Ctrl + A; Ctrl + C; Dans internet, tu le colle en message 😉 avec la balise de code

      Mes mods :

      >! GGButtonMod : http://minecraftforgefrance.fr/showthread.php?tid=1280
      CraftYourMenu : http://minecraftforgefrance.fr/showth…

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

        a ok

        
        package com.google.smalycraft.misterfire.common;
        
        import net.minecraft.creativetab.CreativeTabs;
        import net.minecraft.item.Item;
        
        import com.google.smalycraft.misterfire.proxy.CommonProxy;
        
        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.registry.GameRegistry;
        
        @Mod(modid = MisterFire.MODID, name = "MisterFire", version = "1.0.0")
        public class MisterFire
        {
        public static final String MODID = "fraise";
        @Instance("fraise")
        public static MisterFire instance;
        
        @SidedProxy(clientSide = "com.google.smalycraft.misterfire.proxy.CommonProxy" , serverSide = "com.google.smalycraft.misterfire.proxy.CommonProxy")
        public static CommonProxy proxy;
        
        public static Item fraise;
        
        @EventHandler
        public void preInit(FMLPreInitializationEvent event)
        {
        fraise = new fraise().setUnlocalizedName("fraise").setTextureName(MODID + ":fraise").setCreativeTab(CreativeTabs.tabMaterials);
        
        GameRegistry.registerItem(fraise, "fraise");
        }
        
        @EventHandler
        public void init(FMLInitializationEvent event)
        {
        proxy.registerRender();
        }
        
        @EventHandler
        public void postInit(FMLPostInitializationEvent event)
        {
        
        }
        }
        

        MisterFire34
        Fondateur de EreaNation :cool:
        Site: EreaNation :D

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

          Renomme ta classe fraise en ItemFraise histoire de respecter la convention java (et encore faudrait nommer la classe en anglais).

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

            non sa ne marche pas

            MisterFire34
            Fondateur de EreaNation :cool:
            Site: EreaNation :D

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

              un screen:

              MisterFire34
              Fondateur de EreaNation :cool:
              Site: EreaNation :D

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

                Pourtant il n’y a aucune erreur … Essayes de supprimer le dossier forge/bin (je sais plus où il es

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

                  MisterFire34
                  Fondateur de EreaNation :cool:
                  Site: EreaNation :D

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

                    Tu as mis le même nom pour ton proxy client et serveur

                    @SidedProxy(clientSide =
                    "com.google.smalycraft.misterfire.proxy.CommonProxy" , serverSide =
                    "com.google.smalycraft.misterfire.proxy.CommonProxy")
                    

                    Change le CommonProxy en ClientProxy.
                    Erreur toute bête ^^

                    Mes mods :

                    >! GGButtonMod : http://minecraftforgefrance.fr/showthread.php?tid=1280
                    CraftYourMenu : http://minecraftforgefrance.fr/showth…

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

                      package com.google.smalycraft.misterfire.common;
                      
                      import net.minecraft.creativetab.CreativeTabs;
                      
                      import net.minecraft.item.Item;
                      
                      import com.google.smalycraft.misterfire.proxy.CommonProxy;
                      
                      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.registry.GameRegistry;
                      
                      @Mod(modid = MisterFire.MODID, name = "MisterFire", version = "1.0.0")
                      
                      public class MisterFire
                      
                      {
                      
                      public static final String MODID = "fraise";
                      
                      @Instance("fraise")
                      
                      public static MisterFire instance;
                      
                      @SidedProxy(clientSide = "com.google.smalycraft.misterfire.proxy.ClientProxy" , serverSide = "com.google.smalycraft.misterfire.proxy.ClientProxy")
                      
                      public static CommonProxy proxy;
                      
                      public static Item fraise;
                      
                      @EventHandler
                      
                      public void preInit(FMLPreInitializationEvent event)
                      
                      {
                      
                      fraise = new ItemFraise().setUnlocalizedName("fraise").setTextureName(MODID + ":fraise").setCreativeTab(CreativeTabs.tabMaterials);
                      
                      GameRegistry.registerItem(fraise, "fraise");
                      
                      }
                      
                      @EventHandler
                      
                      public void init(FMLInitializationEvent event)
                      
                      {
                      
                      proxy.registerRender();
                      
                      }
                      
                      @EventHandler
                      
                      public void postInit(FMLPostInitializationEvent event)
                      
                      {
                      
                      }
                      
                      }
                      

                      MisterFire34
                      Fondateur de EreaNation :cool:
                      Site: EreaNation :D

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

                        Balises….

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

                          balises?

                          MisterFire34
                          Fondateur de EreaNation :cool:
                          Site: EreaNation :D

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

                            ok, c’est pas dans le nouvel éditeur autant pour moi. Utilises les balise [java] et  [/java] pour mettre du code ^^

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

                              Si, elles y sont, mais seulement dans l’éditeur complet.

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

                                ok c’etait pas tres clair dans ma tête x)

                                package com.google.smalycraft.misterfire.common;
                                
                                import net.minecraft.creativetab.CreativeTabs;
                                import net.minecraft.item.Item;
                                
                                import com.google.smalycraft.misterfire.proxy.CommonProxy;
                                
                                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.registry.GameRegistry;
                                
                                @Mod(modid = MisterFire.MODID, name = "MisterFire", version = "1.0.0")
                                public class MisterFire
                                {
                                public static final String MODID = "fraise";
                                @Instance("fraise")
                                public static MisterFire instance;
                                
                                @SidedProxy(clientSide = "com.google.smalycraft.misterfire.proxy.ClientProxy" , serverSide = "com.google.smalycraft.misterfire.proxy.ClientProxy")
                                public static CommonProxy proxy;
                                
                                public static Item fraise;
                                
                                @EventHandler
                                public void preInit(FMLPreInitializationEvent event)
                                {
                                fraise = new ItemFraise().setUnlocalizedName("fraise").setTextureName(MODID + ":fraise").setCreativeTab(CreativeTabs.tabMaterials);
                                
                                GameRegistry.registerItem(fraise, "fraise");
                                }
                                
                                @EventHandler
                                public void init(FMLInitializationEvent event)
                                {
                                proxy.registerRender();
                                }
                                
                                @EventHandler
                                public void postInit(FMLPostInitializationEvent event)
                                {
                                
                                }
                                }
                                

                                MisterFire34
                                Fondateur de EreaNation :cool:
                                Site: EreaNation :D

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

                                  Voilà comme ça lance le jeu et dis nous si ça marche

                                  Mes mods :

                                  >! GGButtonMod : http://minecraftforgefrance.fr/showthread.php?tid=1280
                                  CraftYourMenu : http://minecraftforgefrance.fr/showth…

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

                                    non sa ne marche pas

                                    MisterFire34
                                    Fondateur de EreaNation :cool:
                                    Site: EreaNation :D

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

                                      Envoie l’erreur dans ce cas.

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

                                        voici toute la console quand je le lance

                                        
                                        [06:35:24] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
                                        [06:35:24] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
                                        [06:35:24] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
                                        [06:35:24] [main/INFO] [FML]: Forge Mod Loader version 7.2.217.1147 for Minecraft 1.7.2 loading
                                        [06:35:24] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_11, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre8
                                        [06:35:24] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
                                        [06:35:24] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                        [06:35:24] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
                                        [06:35:24] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                        [06:35:24] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                        [06:35:24] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                                        [06:35:24] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
                                        [06:35:25] [main/ERROR] [FML]: The minecraft jar file:/C:/Users/Sebastien/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.2-10.12.2.1147/forgeSrc-1.7.2-10.12.2.1147.jar!/net/minecraft/client/ClientBrandRetriever.class appears to be corrupt! There has been CRITICAL TAMPERING WITH MINECRAFT, it is highly unlikely minecraft will work! STOP NOW, get a clean copy and try again!
                                        [06:35:25] [main/ERROR] [FML]: FML has been ordered to ignore the invalid or missing minecraft certificate. This is very likely to cause a problem!
                                        [06:35:25] [main/ERROR] [FML]: Technical information: ClientBrandRetriever was at jar:file:/C:/Users/Sebastien/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.2-10.12.2.1147/forgeSrc-1.7.2-10.12.2.1147.jar!/net/minecraft/client/ClientBrandRetriever.class, there were 0 certificates for it
                                        [06:35:25] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
                                        [06:35:25] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                                        [06:35:25] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
                                        é[06:35:26] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
                                        [06:35:26] [main/INFO]: Setting user: Player396
                                        [06:35:28] [Client thread/INFO]: LWJGL Version: 2.9.0
                                        [06:35:28] [Client thread/ERROR]: Couldn't set icon
                                        javax.imageio.IIOException: Can't read input file!
                                        at javax.imageio.ImageIO.read(Unknown Source) ~[?:1.8.0_11]
                                        at net.minecraft.client.Minecraft.readImage(Minecraft.java:641) ~[Minecraft.class:?]
                                        at net.minecraft.client.Minecraft.startGame(Minecraft.java:470) [Minecraft.class:?]
                                        at net.minecraft.client.Minecraft.run(Minecraft.java:892) [Minecraft.class:?]
                                        at net.minecraft.client.main.Main.main(Main.java:112) [Main.class:?]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_11]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_11]
                                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_11]
                                        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_11]
                                        at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]
                                        at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]
                                        [06:35:28] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
                                        [06:35:28] [Client thread/INFO] [FML]: MinecraftForge v10.12.2.1147 Initialized
                                        [06:35:29] [Client thread/INFO] [FML]: Replaced 182 ore recipies
                                        [06:35:29] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
                                        [06:35:29] [Client thread/INFO] [FML]: Searching C:\Users\Sebastien\Desktop\modding\forge-1.7.2 - Copie\eclipse\mods for mods
                                        [06:35:29] [Client thread/ERROR] [FML]: Unable to read a class file correctly
                                        java.lang.IllegalArgumentException
                                        at org.objectweb.asm.ClassReader.<init>(ClassReader.java:170) ~[asm-debug-all-4.1.jar:4.1]
                                        at org.objectweb.asm.ClassReader.<init>(ClassReader.java:153) ~[asm-debug-all-4.1.jar:4.1]
                                        at org.objectweb.asm.ClassReader.<init>(ClassReader.java:424) ~[asm-debug-all-4.1.jar:4.1]
                                        at cpw.mods.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:52) [ASMModParser.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:100) [DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:89) [DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:89) [DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:89) [DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:89) [DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:89) [DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.discover(DirectoryDiscoverer.java:53) [DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.ContainerType.findMods(ContainerType.java:42) [ContainerType.class:?]
                                        at cpw.mods.fml.common.discovery.ModCandidate.explore(ModCandidate.java:71) [ModCandidate.class:?]
                                        at cpw.mods.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:123) [ModDiscoverer.class:?]
                                        at cpw.mods.fml.common.Loader.identifyMods(Loader.java:346) [Loader.class:?]
                                        at cpw.mods.fml.common.Loader.loadMods(Loader.java:467) [Loader.class:?]
                                        at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:204) [FMLClientHandler.class:?]
                                        at net.minecraft.client.Minecraft.startGame(Minecraft.java:522) [Minecraft.class:?]
                                        at net.minecraft.client.Minecraft.run(Minecraft.java:892) [Minecraft.class:?]
                                        at net.minecraft.client.main.Main.main(Main.java:112) [Main.class:?]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_11]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_11]
                                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_11]
                                        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_11]
                                        at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]
                                        at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]
                                        [06:35:29] [Client thread/ERROR] [FML]: There was a problem reading the file C:\Users\Sebastien\Desktop\modding\forge-1.7.2\bin\com\google\smalycraft\misterfire\proxy\ClientProxy.class - probably this is a corrupt file
                                        cpw.mods.fml.common.LoaderException: java.lang.IllegalArgumentException
                                        at cpw.mods.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:58) ~[ASMModParser.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:100) [DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:89) [DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:89) [DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:89) [DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:89) [DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:89) [DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.discover(DirectoryDiscoverer.java:53) [DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.ContainerType.findMods(ContainerType.java:42) [ContainerType.class:?]
                                        at cpw.mods.fml.common.discovery.ModCandidate.explore(ModCandidate.java:71) [ModCandidate.class:?]
                                        at cpw.mods.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:123) [ModDiscoverer.class:?]
                                        at cpw.mods.fml.common.Loader.identifyMods(Loader.java:346) [Loader.class:?]
                                        at cpw.mods.fml.common.Loader.loadMods(Loader.java:467) [Loader.class:?]
                                        at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:204) [FMLClientHandler.class:?]
                                        at net.minecraft.client.Minecraft.startGame(Minecraft.java:522) [Minecraft.class:?]
                                        at net.minecraft.client.Minecraft.run(Minecraft.java:892) [Minecraft.class:?]
                                        at net.minecraft.client.main.Main.main(Main.java:112) [Main.class:?]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_11]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_11]
                                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_11]
                                        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_11]
                                        at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]
                                        at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]
                                        Caused by: java.lang.IllegalArgumentException
                                        at org.objectweb.asm.ClassReader.<init>(ClassReader.java:170) ~[asm-debug-all-4.1.jar:4.1]
                                        at org.objectweb.asm.ClassReader.<init>(ClassReader.java:153) ~[asm-debug-all-4.1.jar:4.1]
                                        at org.objectweb.asm.ClassReader.<init>(ClassReader.java:424) ~[asm-debug-all-4.1.jar:4.1]
                                        at cpw.mods.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:52) ~[ASMModParser.class:?]
                                        … 22 more
                                        [06:35:29] [Client thread/WARN] [FML]: Identified a problem with the mod candidate C:\Users\Sebastien\Desktop\modding\forge-1.7.2\bin, ignoring this source
                                        cpw.mods.fml.common.LoaderException: java.lang.IllegalArgumentException
                                        at cpw.mods.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:58) ~[ASMModParser.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:100) ~[DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:89) ~[DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:89) ~[DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:89) ~[DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:89) ~[DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:89) ~[DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.DirectoryDiscoverer.discover(DirectoryDiscoverer.java:53) ~[DirectoryDiscoverer.class:?]
                                        at cpw.mods.fml.common.discovery.ContainerType.findMods(ContainerType.java:42) ~[ContainerType.class:?]
                                        at cpw.mods.fml.common.discovery.ModCandidate.explore(ModCandidate.java:71) ~[ModCandidate.class:?]
                                        at cpw.mods.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:123) [ModDiscoverer.class:?]
                                        at cpw.mods.fml.common.Loader.identifyMods(Loader.java:346) [Loader.class:?]
                                        at cpw.mods.fml.common.Loader.loadMods(Loader.java:467) [Loader.class:?]
                                        at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:204) [FMLClientHandler.class:?]
                                        at net.minecraft.client.Minecraft.startGame(Minecraft.java:522) [Minecraft.class:?]
                                        at net.minecraft.client.Minecraft.run(Minecraft.java:892) [Minecraft.class:?]
                                        at net.minecraft.client.main.Main.main(Main.java:112) [Main.class:?]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_11]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_11]
                                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_11]
                                        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_11]
                                        at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]
                                        at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]
                                        Caused by: java.lang.IllegalArgumentException
                                        at org.objectweb.asm.ClassReader.<init>(ClassReader.java:170) ~[asm-debug-all-4.1.jar:4.1]
                                        at org.objectweb.asm.ClassReader.<init>(ClassReader.java:153) ~[asm-debug-all-4.1.jar:4.1]
                                        at org.objectweb.asm.ClassReader.<init>(ClassReader.java:424) ~[asm-debug-all-4.1.jar:4.1]
                                        at cpw.mods.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:52) ~[ASMModParser.class:?]
                                        … 22 more
                                        [06:35:30] [Client thread/ERROR] [FML]: FML has detected a mod that is using a package name based on 'net.minecraft.src' : net.minecraft.src.FMLRenderAccessLibrary. This is generally a severe programming error. There should be no mod code in the minecraft namespace. MOVE YOUR MOD! If you're in eclipse, select your source code and 'refactor' it into a new package. Go on. DO IT NOW!
                                        [06:35:32] [Client thread/INFO] [FML]: Forge Mod Loader has identified 3 mods to load
                                        [06:35:32] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge
                                        [06:35:32] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
                                        [06:35:32] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations
                                        [06:35:32] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
                                        [06:35:32] [Client thread/INFO] [FML]: Applying holder lookups
                                        [06:35:32] [Client thread/INFO] [FML]: Holder lookups applied
                                        
                                        Starting up SoundSystem…
                                        Initializing LWJGL OpenAL
                                        (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
                                        OpenAL initialized.
                                        
                                        [06:35:33] [Sound Library Loader/INFO]: Sound engine started
                                        [06:35:34] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
                                        [06:35:35] [Client thread/INFO]: Created: 256x256 textures/items-atlas
                                        [06:35:35] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 3 mods
                                        [06:35:35] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge
                                        [06:35:35] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
                                        [06:35:35] [Client thread/INFO]: Created: 256x256 textures/items-atlas
                                        
                                        SoundSystem shutting down…
                                        Author: Paul Lamb, www.paulscode.com
                                        
                                        Starting up SoundSystem...
                                        Initializing LWJGL OpenAL
                                        (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
                                        OpenAL initialized.
                                        
                                        [06:35:36] [Sound Library Loader/INFO]: Sound engine started
                                        é[06:35:42] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:music.menu
                                        [06:35:49] [MCO Availability Checker #1/ERROR]: Couldn't connect to Realms
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:50] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:50] [Client thread/ERROR]: @ Post render
                                        [06:35:50] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:music.menu
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:51] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:51] [Client thread/ERROR]: @ Post render
                                        [06:35:51] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:52] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:52] [Client thread/ERROR]: @ Post render
                                        [06:35:52] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:53] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:53] [Client thread/ERROR]: @ Post render
                                        [06:35:53] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:53] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:53] [Client thread/ERROR]: @ Post render
                                        [06:35:53] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:53] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:53] [Client thread/ERROR]: @ Post render
                                        [06:35:53] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:53] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:53] [Client thread/ERROR]: @ Post render
                                        [06:35:53] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:53] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:53] [Client thread/ERROR]: @ Post render
                                        [06:35:53] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:53] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:53] [Client thread/ERROR]: @ Post render
                                        [06:35:53] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:53] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:53] [Client thread/ERROR]: @ Post render
                                        [06:35:53] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:53] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:53] [Client thread/ERROR]: @ Post render
                                        [06:35:53] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:53] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:53] [Client thread/ERROR]: @ Post render
                                        [06:35:53] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:53] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:53] [Client thread/ERROR]: @ Post render
                                        [06:35:53] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:53] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:53] [Client thread/ERROR]: @ Post render
                                        [06:35:53] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:53] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:53] [Client thread/ERROR]: @ Post render
                                        [06:35:53] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:53] [Client thread/ERROR]: ########## GL ERROR ##########
                                        [06:35:53] [Client thread/ERROR]: @ Post render
                                        [06:35:53] [Client thread/ERROR]: 1286: Invalid framebuffer operation
                                        [06:35:54] [Client thread/INFO]: Stopping!
                                        
                                        SoundSystem shutting down…
                                        Author: Paul Lamb, www.paulscode.com
                                        
                                        Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release
                                        ```</init></init></init></init></init></init></init></init></init></init></init></init></init></init>

                                        MisterFire34
                                        Fondateur de EreaNation :cool:
                                        Site: EreaNation :D

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

                                          qui pourrai m’aider ?svp

                                          MisterFire34
                                          Fondateur de EreaNation :cool:
                                          Site: EreaNation :D

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

                                            Remets toi en java 7 ^^

                                            1 réponse Dernière réponse Répondre Citer 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 6
                                            • 7
                                            • 12
                                            • 13
                                            • 5 / 13
                                            • Premier message
                                              Dernier message
                                            Design by Woryk
                                            ContactMentions Légales

                                            MINECRAFT FORGE FRANCE © 2024

                                            Powered by NodeBB