MFF

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

    Chargement de textures

    Planifier Épinglé Verrouillé Déplacé Résolu 1.8.x
    1.8.9
    28 Messages 5 Publieurs 5.3k 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.
    • TristepinT Hors-ligne
      Tristepin
      dernière édition par

      oups c’est ma faute, je n’ai pas mis le dossier à jour  -_-
      (j’suis vraiment tête en l’air des fois x)  )

      http://upload.lescigales.org/gh20

      robin m’avais  aussi dit de changer les extension txt aux json ce que j’ai mais le problème persiste malhereusement

      Modélisateur sur son temps libre.

      1 réponse Dernière réponse Répondre Citer 0
      • Superloup10S Hors-ligne
        Superloup10 Modérateurs
        dernière édition par

        Au lieu de mettre proxy.registerBlockTexture(wakfuBlock,“wakfu_bloc”); dans init, essaye de le mettre dans preInit.

        Si vous souhaitez me faire un don, il vous suffit de cliquer sur le bouton situé en dessous.

        Je suis un membre apprécié et joueur, j'ai déjà obtenu 17 points de réputation.

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

          Forge n’apprécie pas trop on dirait, ça fait crash le jeu

          voici le crash report :
          http://upload.lescigales.org/1fby

          Modélisateur sur son temps libre.

          1 réponse Dernière réponse Répondre Citer 0
          • Superloup10S Hors-ligne
            Superloup10 Modérateurs
            dernière édition par

            Tu peux donner ta class principale ?

            Si vous souhaitez me faire un don, il vous suffit de cliquer sur le bouton situé en dessous.

            Je suis un membre apprécié et joueur, j'ai déjà obtenu 17 points de réputation.

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

              tiens la voici

              package fr.premiermod.minecraft;
              import org.apache.logging.log4j.Logger;
              
              import net.minecraft.block.Block;
              import net.minecraft.block.material.Material;
              import net.minecraft.creativetab.CreativeTabs;
              import net.minecraftforge.fml.common.Mod;
              import net.minecraftforge.fml.common.Mod.EventHandler;
              import net.minecraftforge.fml.common.Mod.Instance;
              import net.minecraftforge.fml.common.SidedProxy;
              import net.minecraftforge.fml.common.event.FMLInitializationEvent;
              import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
              import net.minecraftforge.fml.common.registry.GameRegistry;
              
              @Mod(modid = ModMinecraft.MODID, name = "Mod Minecraft", version = "0.1" , acceptedMinecraftVersions = "[1.8.9]")                 
              public class ModMinecraft 
              {
                public static final String MODID = "wakfu";
              
                @Instance(ModMinecraft.MODID)
                public static ModMinecraft instance;
              
                @SidedProxy(clientSide = "fr.premiermod.minecraft.PremierModClient", serverSide = "fr.premiermod.minecraft.PremierModServer")
                public static PremierModCommon proxy;
                public static Block wakfuBlock;
              
                public static Logger logger;
              
                @EventHandler
                public void preInit(FMLPreInitializationEvent event)
                {
               ModMinecraft.logger = event.getModLog();
               ModMinecraft.proxy.preInit(event.getSuggestedConfigurationFile());
               wakfuBlock = new WakfuBlock(Material.rock).setUnlocalizedName("Bloc de wakfu").setHardness(8.0F).setCreativeTab(CreativeTabs.tabMaterials);
               GameRegistry.registerBlock(wakfuBlock, "bloc_de_wakfu");
               proxy.registerBlockTexture(wakfuBlock,"wakfu_bloc");
              
                }
                public void Init(FMLInitializationEvent event)
                {
               ModMinecraft.proxy.init();
              
                 }
              
              }
              
              

              Modélisateur sur son temps libre.

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

                Euh, le problème vient d’un autre mod : PremierModClient, je ne sais pas s’il vient de toi mais c’est lui qui pose problème :
                “at fr.premiermod.minecraft.PremierModClient.registerItemTexture(PremierModClient.java:33)”

                Site web contenant mes scripts : http://SCAREXgaming.github.io

                Pas de demandes de support par MP ni par skype SVP.
                Je n'accepte sur skype que l…

                1 réponse Dernière réponse Répondre Citer 0
                • Superloup10S Hors-ligne
                  Superloup10 Modérateurs
                  dernière édition par

                  C’est pas un autre mod, c’est le nom de son proxy côté client.

                  Si vous souhaitez me faire un don, il vous suffit de cliquer sur le bouton situé en dessous.

                  Je suis un membre apprécié et joueur, j'ai déjà obtenu 17 points de réputation.

                  1 réponse Dernière réponse Répondre Citer 1
                  • SCAREXS Hors-ligne
                    SCAREX
                    dernière édition par

                    Essaie d’enregistrer la texture dans l’init ou le postInit

                    Site web contenant mes scripts : http://SCAREXgaming.github.io

                    Pas de demandes de support par MP ni par skype SVP.
                    Je n'accepte sur skype que l…

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

                      quand je l’enregistre dans le preinit, il crash (voir reponse ci dessus) et dans le init, j’ai le droit au bloc bugé( ma texture était à la base enregistrer dedans )

                      Modélisateur sur son temps libre.

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

                        Alors envoi les logs quand c’est dans le init

                        Site web contenant mes scripts : http://SCAREXgaming.github.io

                        Pas de demandes de support par MP ni par skype SVP.
                        Je n'accepte sur skype que l…

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

                          les voici

                          [20:26:20] [Client thread/INFO] [FML]: MinecraftForge v11.15.1.1722 Initialized
                          [20:26:20] [Client thread/INFO] [FML]: Replaced 204 ore recipies
                          [20:26:22] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
                          [20:26:22] [Client thread/INFO] [FML]: Searching C:\Users\stephanie\Documents\quentin\Modding\forge-1.8.9\run\mods for mods
                          [20:26:26] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
                          [20:26:26] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, wakfu] at CLIENT
                          [20:26:26] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, wakfu] at SERVER
                          [20:26:27] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Mod Minecraft
                          [20:26:27] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
                          [20:26:27] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations
                          [20:26:27] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
                          [20:26:27] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
                          [20:26:28] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
                          [20:26:28] [Client thread/INFO] [STDOUT]: [fr.premiermod.minecraft.PremierModCommon:preInit:12]: pre init côté commun
                          [20:26:28] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
                          [20:26:28] [Client thread/INFO] [STDOUT]: [fr.premiermod.minecraft.PremierModClient:preInit:19]: pre init côté client
                          [20:26:28] [Client thread/INFO] [FML]: Applying holder lookups
                          [20:26:28] [Client thread/INFO] [FML]: Holder lookups applied
                          [20:26:28] [Client thread/INFO] [FML]: Injecting itemstacks
                          [20:26:28] [Client thread/INFO] [FML]: Itemstack injection complete
                          [20:26:29] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: UP_TO_DATE Target: null
                          [20:26:29] [Sound Library Loader/INFO]: Starting up SoundSystem…
                          [20:26:29] [Thread-9/INFO]: Initializing LWJGL OpenAL
                          [20:26:29] [Thread-9/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
                          [20:26:30] [Thread-9/INFO]: OpenAL initialized.
                          [20:26:30] [Sound Library Loader/INFO]: Sound engine started
                          [20:26:50] [Client thread/INFO] [FML]: Max texture size: 8192
                          [20:26:50] [Client thread/INFO]: Created: 16x16 textures-atlas
                          [20:26:51] [Client thread/ERROR] [FML]: Exception loading model for variant wakfu:bloc_de_wakfu#inventory
                          java.lang.Exception: Could not load model definition for variant wakfu:bloc_de_wakfu#inventory
                          at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:219) ~[ModelLoader.class:?]
                          at net.minecraftforge.client.model.ModelLoader.loadItems(ModelLoader.java:256) ~[ModelLoader.class:?]
                          at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:120) ~[ModelLoader.class:?]
                          at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
                          at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [SimpleReloadableResourceManager.class:?]
                          at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?]
                          at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?]
                          at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?]
                          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
                          at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
                          at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
                          at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
                          at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
                          at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
                          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
                          at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
                          at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
                          at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
                          at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
                          at GradleStart.main(GradleStart.java:26) [start/:?]
                          Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model wakfu:blockstates/bloc_de_wakfu.json
                          at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?]
                          at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?]
                          … 19 more
                          Caused by: java.io.FileNotFoundException: wakfu:blockstates/bloc_de_wakfu.json
                          at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?]
                          at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[SimpleReloadableResourceManager.class:?]
                          at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?]
                          at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?]
                          … 19 more
                          [20:26:51] [Client thread/ERROR] [FML]: Exception loading model for variant wakfu:bloc_de_wakfu#normal
                          java.lang.Exception: Could not load model definition for variant wakfu:bloc_de_wakfu#normal
                          at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:219) ~[ModelLoader.class:?]
                          at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?]
                          at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:174) ~[ModelLoader.class:?]
                          at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:119) ~[ModelLoader.class:?]
                          at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
                          at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:120) [SimpleReloadableResourceManager.class:?]
                          at net.minecraft.client.Minecraft.startGame(Minecraft.java:515) [Minecraft.class:?]
                          at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?]
                          at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?]
                          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
                          at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
                          at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
                          at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
                          at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
                          at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
                          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
                          at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
                          at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
                          at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
                          at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
                          at GradleStart.main(GradleStart.java:26) [start/:?]
                          Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model wakfu:blockstates/bloc_de_wakfu.json
                          at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?]
                          at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?]
                          … 20 more
                          Caused by: java.io.FileNotFoundException: wakfu:blockstates/bloc_de_wakfu.json
                          at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?]
                          at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[SimpleReloadableResourceManager.class:?]
                          at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?]
                          at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?]
                          … 20 more
                          [20:26:51] [Client thread/ERROR] [FML]: Model definition for location wakfu:bloc_de_wakfu#inventory not found
                          [20:26:51] [Client thread/ERROR] [FML]: Model definition for location wakfu:bloc_de_wakfu#normal not found
                          [20:26:52] [Client thread/INFO] [FML]: Injecting itemstacks
                          [20:26:52] [Client thread/INFO] [FML]: Itemstack injection complete
                          [20:26:52] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
                          [20:26:52] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Mod Minecraft
                          [20:26:52] [Client thread/INFO]: SoundSystem shutting down…
                          [20:26:52] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
                          [20:26:52] [Sound Library Loader/INFO]: Starting up SoundSystem…
                          [20:26:53] [Thread-11/INFO]: Initializing LWJGL OpenAL
                          [20:26:53] [Thread-11/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
                          [20:26:53] [Thread-11/INFO]: OpenAL initialized.
                          [20:26:53] [Sound Library Loader/INFO]: Sound engine started
                          [20:27:03] [Client thread/INFO] [FML]: Max texture size: 8192
                          [20:27:04] [Client thread/INFO]: Created: 512x512 textures-atlas
                          [20:27:04] [Client thread/ERROR] [FML]: Exception loading model for variant wakfu:bloc_de_wakfu#inventory
                          java.lang.Exception: Could not load model definition for variant wakfu:bloc_de_wakfu#inventory
                          at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:219) ~[ModelLoader.class:?]
                          at net.minecraftforge.client.model.ModelLoader.loadItems(ModelLoader.java:256) ~[ModelLoader.class:?]
                          at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:120) ~[ModelLoader.class:?]
                          at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
                          at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [SimpleReloadableResourceManager.class:?]
                          at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [SimpleReloadableResourceManager.class:?]
                          at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?]
                          at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?]
                          at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?]
                          at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?]
                          at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?]
                          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
                          at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
                          at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
                          at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
                          at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
                          at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
                          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
                          at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
                          at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
                          at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
                          at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
                          at GradleStart.main(GradleStart.java:26) [start/:?]
                          Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model wakfu:blockstates/bloc_de_wakfu.json
                          at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?]
                          at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?]
                          … 22 more
                          Caused by: java.io.FileNotFoundException: wakfu:blockstates/bloc_de_wakfu.json
                          at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?]
                          at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[SimpleReloadableResourceManager.class:?]
                          at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?]
                          at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?]
                          … 22 more
                          [20:27:04] [Client thread/ERROR] [FML]: Exception loading model for variant wakfu:bloc_de_wakfu#normal
                          java.lang.Exception: Could not load model definition for variant wakfu:bloc_de_wakfu#normal
                          at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:219) ~[ModelLoader.class:?]
                          at net.minecraft.client.resources.model.ModelBakery.loadVariants(ModelBakery.java:109) ~[ModelBakery.class:?]
                          at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:174) ~[ModelLoader.class:?]
                          at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:119) ~[ModelLoader.class:?]
                          at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
                          at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [SimpleReloadableResourceManager.class:?]
                          at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [SimpleReloadableResourceManager.class:?]
                          at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772) [Minecraft.class:?]
                          at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:326) [FMLClientHandler.class:?]
                          at net.minecraft.client.Minecraft.startGame(Minecraft.java:532) [Minecraft.class:?]
                          at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?]
                          at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?]
                          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
                          at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
                          at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
                          at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
                          at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
                          at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
                          at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
                          at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
                          at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
                          at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
                          at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
                          at GradleStart.main(GradleStart.java:26) [start/:?]
                          Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model wakfu:blockstates/bloc_de_wakfu.json
                          at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:165) ~[ModelBakery.class:?]
                          at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?]
                          … 23 more
                          Caused by: java.io.FileNotFoundException: wakfu:blockstates/bloc_de_wakfu.json
                          at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:93) ~[FallbackResourceManager.class:?]
                          at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:78) ~[SimpleReloadableResourceManager.class:?]
                          at net.minecraft.client.resources.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:143) ~[ModelBakery.class:?]
                          at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:215) ~[ModelLoader.class:?]
                          … 23 more
                          [20:27:04] [Client thread/ERROR] [FML]: Model definition for location wakfu:bloc_de_wakfu#inventory not found
                          [20:27:04] [Client thread/ERROR] [FML]: Model definition for location wakfu:bloc_de_wakfu#normal not found
                          [20:27:07] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
                          [20:27:16] [Server thread/INFO]: Starting integrated minecraft server version 1.8.9
                          [20:27:16] [Server thread/INFO]: Generating keypair
                          [20:27:16] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
                          [20:27:16] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance
                          [20:27:16] [Server thread/INFO] [FML]: Found a missing id from the world wakfu:Bloc_de_wakfu
                          [20:27:16] [Server thread/INFO] [FML]: Applying holder lookups
                          [20:27:16] [Server thread/INFO] [FML]: Holder lookups applied
                          [20:27:16] [Server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@429bd8b1)
                          [20:27:16] [Server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@429bd8b1)
                          [20:27:16] [Server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@429bd8b1)
                          [20:27:16] [Server thread/INFO]: Preparing start region for level 0
                          [20:27:17] [Server thread/INFO]: Preparing spawn area: 55%
                          [20:27:18] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
                          [20:27:18] [Server thread/INFO]: Changing view distance to 12, from 10
                          [20:27:20] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2
                          [20:27:20] [Netty Server IO #1/INFO] [FML]: Client protocol version 2
                          [20:27:20] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : FML@8.0.99.99,Forge@11.15.1.1722,wakfu@0.1,mcp@9.19
                          [20:27:20] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
                          [20:27:20] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
                          [20:27:20] [Server thread/INFO]: tristepin20[local:E:5cf4f034] logged in with entity id 79 at (-1003.6454689372263, 4.0, -71.12930782148001)
                          [20:27:20] [Server thread/INFO]: tristepin20 joined the game
                          [20:27:22] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@f9d00e0[id=3d8e993c-5877-30c3-8b64-912692f127ee,name=tristepin20,properties={},legacy=false]
                          com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time
                          at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:65) ~[YggdrasilAuthenticationService.class:?]
                          at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:175) [YggdrasilMinecraftSessionService.class:?]
                          at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:59) [YggdrasilMinecraftSessionService$1.class:?]
                          at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:56) [YggdrasilMinecraftSessionService$1.class:?]
                          at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3524) [guava-17.0.jar:?]
                          at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2317) [guava-17.0.jar:?]
                          at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2280) [guava-17.0.jar:?]
                          at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2195) [guava-17.0.jar:?]
                          at com.google.common.cache.LocalCache.get(LocalCache.java:3934) [guava-17.0.jar:?]
                          at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938) [guava-17.0.jar:?]
                          at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821) [guava-17.0.jar:?]
                          at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827) [guava-17.0.jar:?]
                          at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:165) [YggdrasilMinecraftSessionService.class:?]
                          at net.minecraft.client.Minecraft.func_181037_M(Minecraft.java:2915) [Minecraft.class:?]
                          at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:130) [SkinManager$3.class:?]
                          at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.8.0_91]
                          at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_91]
                          at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_91]
                          at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_91]
                          at java.lang.Thread.run(Unknown Source) [?:1.8.0_91]
                          [20:27:24] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2200ms behind, skipping 44 tick(s)
                          [20:27:28] [Server thread/INFO]: Saving and pausing game…
                          [20:27:28] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
                          [20:27:28] [Server thread/INFO]: Saving chunks for level 'New World'/Nether
                          [20:27:28] [Server thread/INFO]: Saving chunks for level 'New World'/The End
                          [20:27:30] [Client thread/INFO]: Stopping!
                          [20:27:31] [Client thread/INFO]: SoundSystem shutting down…
                          [20:27:31] [Server thread/INFO]: Stopping server
                          [20:27:31] [Server thread/INFO]: Saving players
                          [20:27:31] [Server thread/INFO]: Saving worlds
                          [20:27:31] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
                          [20:27:31] [Server thread/INFO]: Saving chunks for level 'New World'/Nether
                          [20:27:31] [Server thread/INFO]: Saving chunks for level 'New World'/The End
                          [20:27:31] [Server thread/INFO] [FML]: Unloading dimension 0
                          [20:27:31] [Server thread/INFO] [FML]: Unloading dimension -1
                          [20:27:31] [Server thread/INFO] [FML]: Unloading dimension 1
                          [20:27:31] [Server thread/INFO] [FML]: Applying holder lookups
                          [20:27:31] [Server thread/INFO] [FML]: Holder lookups applied
                          [20:27:31] [Client thread/WARN]: 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
                          

                          Modélisateur sur son temps libre.

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

                            “Caused by: java.io.FileNotFoundException: wakfu:blockstates/bloc_de_wakfu.json” toujours pas de fichier, vérifie l’extension

                            Site web contenant mes scripts : http://SCAREXgaming.github.io

                            Pas de demandes de support par MP ni par skype SVP.
                            Je n'accepte sur skype que l…

                            1 réponse Dernière réponse Répondre Citer 1
                            • TristepinT Hors-ligne
                              Tristepin
                              dernière édition par

                              Merci merci mille fois ça marche, youuuuupi ( pas trop excité  non non ^^ )
                              en fait javais .setUnlocalizedName mon bloc avec “bloc de wakfu” alors que tout mes .json indiquait wakfu_bloc.json donc forcement sa marchait pas .

                              Bref j’ai juste un dernier soucis, la texture s’affiche quand je pose le block, mais dans l’inventaire ou dans la main, il reste avec la texture buggé , une idée ?

                              Modélisateur sur son temps libre.

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

                                Tu as bien un json dans models/Item ? Vérifies son nom et le nom marqué dans le fichier dans “parent” qui doit correspondre au json dans models/block

                                Envoyé de mon RAINBOW LITE 4G en utilisant Tapatalk

                                Si je vous ai aidé, n'oubliez pas d’être heureux, j'aiderai encore +

                                AymericRed, moddeur expérimenté qui aide sur ce forum et qui peut accepter de faire un mod Forge rémunéré de temps en temps.

                                Mes tutos : Table de craft, plugin NEI, plugin JEI, modifier l'overlay
                                Je suis un membre apprécié et joueur, j'ai déjà obtenu 6 points de réputation.

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

                                  oui effectivement ce n’est pas le même il y a cube_all à la place, mais quand je le change et que je lance minecraft, mon bloc est encore plus bugé
                                  car quand je le pose, il n’affiche plus la texture alors qu’avant oui. 
                                  voici le dossier src si jamais :
                                  http://upload.lescigales.org/68ko

                                  Modélisateur sur son temps libre.

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

                                    J’ai tenté de remplacé le nom du .json visé de celui models/items mais sans succés, 
                                    j’aimerais aussi savoir si quelqu’un avait peut-être une explication sur le fait que dans mon .json models/blocks, le nom du fichier
                                    servant de texture est “cube_all” alors que le fichier s’appelle wakfu_bloc car de plus il n’y a aucun problème pour que la texture 
                                    s’affiche dans minecraft quand on pose le bloc, c’est juste au niveau de l’inventaire que la texture pose problème.

                                    Modélisateur sur son temps libre.

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

                                      Renvoi les logs

                                      Site web contenant mes scripts : http://SCAREXgaming.github.io

                                      Pas de demandes de support par MP ni par skype SVP.
                                      Je n'accepte sur skype que l…

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

                                        tiens les voicis

                                        Details:
                                        Minecraft Version: 1.8.9
                                        Operating System: Windows 10 (amd64) version 10.0
                                        Java Version: 1.8.0_91, Oracle Corporation
                                        Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
                                        Memory: 797085848 bytes (760 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)
                                        JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
                                        IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
                                        FML: 
                                        Loaded coremods (and transformers): 
                                        GL info: ' Vendor: 'Intel' Version: '4.3.0 - Build 20.19.15.4331' Renderer: 'Intel(R) HD Graphics 4400'
                                        [18:40:14] [Client thread/INFO] [FML]: MinecraftForge v11.15.1.1722 Initialized
                                        [18:40:14] [Client thread/INFO] [FML]: Replaced 204 ore recipies
                                        [18:40:15] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
                                        [18:40:15] [Client thread/INFO] [FML]: Searching C:\Users\stephanie\Documents\quentin\Modding\forge-1.8.9\run\mods for mods
                                        [18:40:17] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
                                        [18:40:18] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, wakfu] at CLIENT
                                        [18:40:18] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, wakfu] at SERVER
                                        [18:40:19] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Mod Minecraft
                                        [18:40:19] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
                                        [18:40:19] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations
                                        [18:40:19] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
                                        [18:40:19] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
                                        [18:40:19] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
                                        [18:40:19] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
                                        [18:40:19] [Client thread/INFO] [STDOUT]: [fr.premiermod.minecraft.PremierModCommon:preInit:12]: pre init côté commun
                                        [18:40:19] [Client thread/INFO] [STDOUT]: [fr.premiermod.minecraft.PremierModClient:preInit:19]: pre init côté client
                                        [18:40:19] [Client thread/INFO] [FML]: Applying holder lookups
                                        [18:40:19] [Client thread/INFO] [FML]: Holder lookups applied
                                        [18:40:19] [Client thread/INFO] [FML]: Injecting itemstacks
                                        [18:40:19] [Client thread/INFO] [FML]: Itemstack injection complete
                                        [18:40:19] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: UP_TO_DATE Target: null
                                        [18:40:20] [Sound Library Loader/INFO]: Starting up SoundSystem…
                                        [18:40:20] [Thread-9/INFO]: Initializing LWJGL OpenAL
                                        [18:40:20] [Thread-9/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
                                        [18:40:20] [Thread-9/INFO]: OpenAL initialized.
                                        [18:40:20] [Sound Library Loader/INFO]: Sound engine started
                                        [18:40:29] [Client thread/INFO] [FML]: Max texture size: 8192
                                        [18:40:29] [Client thread/INFO]: Created: 16x16 textures-atlas
                                        [18:40:30] [Client thread/ERROR] [FML]: Model definition for location wakfu:wakfu_bloc#inventory not found
                                        [18:40:31] [Client thread/INFO] [FML]: Injecting itemstacks
                                        [18:40:31] [Client thread/INFO] [FML]: Itemstack injection complete
                                        [18:40:31] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
                                        [18:40:31] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Mod Minecraft
                                        [18:40:31] [Client thread/INFO]: SoundSystem shutting down…
                                        [18:40:32] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
                                        [18:40:32] [Sound Library Loader/INFO]: Starting up SoundSystem…
                                        [18:40:32] [Thread-11/INFO]: Initializing LWJGL OpenAL
                                        [18:40:32] [Thread-11/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
                                        [18:40:32] [Thread-11/INFO]: OpenAL initialized.
                                        [18:40:32] [Sound Library Loader/INFO]: Sound engine started
                                        [18:40:39] [Client thread/INFO] [FML]: Max texture size: 8192
                                        [18:40:40] [Client thread/INFO]: Created: 512x512 textures-atlas
                                        [18:40:40] [Client thread/ERROR] [FML]: Model definition for location wakfu:wakfu_bloc#inventory not found
                                        [18:40:41] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
                                        [18:40:45] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
                                        [18:40:45] [Server thread/INFO]: Starting integrated minecraft server version 1.8.9
                                        [18:40:45] [Server thread/INFO]: Generating keypair
                                        [18:40:45] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance
                                        [18:40:45] [Server thread/INFO] [FML]: Found a missing id from the world wakfu:bloc_de_wakfu
                                        [18:40:45] [Server thread/INFO] [FML]: Found a missing id from the world wakfu:Bloc_de_wakfu
                                        [18:40:45] [Server thread/INFO] [FML]: Applying holder lookups
                                        [18:40:45] [Server thread/INFO] [FML]: Holder lookups applied
                                        [18:40:46] [Server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@a7acf64)
                                        [18:40:46] [Server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@a7acf64)
                                        [18:40:46] [Server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@a7acf64)
                                        [18:40:46] [Server thread/INFO]: Preparing start region for level 0
                                        [18:40:47] [Server thread/INFO]: Changing view distance to 9, from 10
                                        [18:40:47] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
                                        [18:40:49] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2
                                        [18:40:49] [Netty Server IO #1/INFO] [FML]: Client protocol version 2
                                        [18:40:49] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : FML@8.0.99.99,Forge@11.15.1.1722,wakfu@0.1,mcp@9.19
                                        [18:40:49] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
                                        [18:40:49] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
                                        [18:40:49] [Server thread/INFO]: tristepin20[local:E:adc5ab12] logged in with entity id 102 at (-822.2857336592995, 4.0, 129.95181140643513)
                                        [18:40:49] [Server thread/INFO]: tristepin20 joined the game
                                        [18:40:50] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@5ad438e6[id=3d8e993c-5877-30c3-8b64-912692f127ee,name=tristepin20,properties={},legacy=false]
                                        com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time
                                        at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:65) ~[YggdrasilAuthenticationService.class:?]
                                        at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:175) [YggdrasilMinecraftSessionService.class:?]
                                        at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:59) [YggdrasilMinecraftSessionService$1.class:?]
                                        at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:56) [YggdrasilMinecraftSessionService$1.class:?]
                                        at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3524) [guava-17.0.jar:?]
                                        at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2317) [guava-17.0.jar:?]
                                        at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2280) [guava-17.0.jar:?]
                                        at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2195) [guava-17.0.jar:?]
                                        at com.google.common.cache.LocalCache.get(LocalCache.java:3934) [guava-17.0.jar:?]
                                        at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938) [guava-17.0.jar:?]
                                        at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821) [guava-17.0.jar:?]
                                        at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827) [guava-17.0.jar:?]
                                        at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:165) [YggdrasilMinecraftSessionService.class:?]
                                        at net.minecraft.client.Minecraft.func_181037_M(Minecraft.java:2915) [Minecraft.class:?]
                                        at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:130) [SkinManager$3.class:?]
                                        at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.8.0_91]
                                        at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_91]
                                        at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_91]
                                        at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_91]
                                        at java.lang.Thread.run(Unknown Source) [?:1.8.0_91]
                                        [18:41:15] [Server thread/INFO]: Saving and pausing game…
                                        [18:41:15] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
                                        [18:41:15] [Server thread/INFO]: Saving chunks for level 'New World'/Nether
                                        [18:41:15] [Server thread/INFO]: Saving chunks for level 'New World'/The End
                                        [18:41:18] [Client thread/INFO]: Stopping!
                                        [18:41:18] [Client thread/INFO]: SoundSystem shutting down…
                                        [18:41:18] [Server thread/INFO]: Stopping server
                                        [18:41:18] [Server thread/INFO]: Saving players
                                        [18:41:18] [Server thread/INFO]: Saving worlds
                                        [18:41:18] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
                                        [18:41:18] [Server thread/INFO]: Saving chunks for level 'New World'/Nether
                                        [18:41:18] [Server thread/INFO]: Saving chunks for level 'New World'/The End
                                        [18:41:18] [Server thread/INFO] [FML]: Unloading dimension 0
                                        [18:41:18] [Server thread/INFO] [FML]: Unloading dimension -1
                                        [18:41:18] [Server thread/INFO] [FML]: Unloading dimension 1
                                        [18:41:18] [Server thread/INFO] [FML]: Applying holder lookups
                                        [18:41:18] [Server thread/INFO] [FML]: Holder lookups applied
                                        [18:41:18] [Client thread/WARN]: 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
                                        
                                        

                                        Modélisateur sur son temps libre.

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

                                          Apparemment tous les fichiers sont chargés correctement donc le problème vient du fait que tu n’ai pas enregistré le fichier ou que ton fichier ne fait pas ce que tu veux

                                          Site web contenant mes scripts : http://SCAREXgaming.github.io

                                          Pas de demandes de support par MP ni par skype SVP.
                                          Je n'accepte sur skype que l…

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

                                            Justement, pourrais tu jeter un coup d’oeil sur mon dossier asset s’il te plait si le coeur t’en dit pour 
                                            trouver mes boulettes ^^ car honnetement, j’ai lu et relu le tutoriel traitant de la chose mais je n’arrive pas à voir d’où peut prevenir mon erreur.
                                            http://upload.lescigales.org/fc92

                                            Modélisateur sur son temps libre.

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

                                            MINECRAFT FORGE FRANCE © 2024

                                            Powered by NodeBB