MFF

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

    Créer un bloc basique

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

      Il manque le register mesher pour ton bloc.

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

        Des fois je me demande comment je peut être aussi con T_T Merci robin ^^

        Oui ce gif est drôle.

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

          Moi c’est le contraire, la texture en main s’affiche mais pas quand je pose le bloc (il est invisible)

          Classe principale :

          
          @Mod(modid = "testmod", name = "Mod de test", version = "1.0.0")
          
          public class TestMod {
          
          @Instance("testmod")
          public static TestMod instance;
          public static final String MODID = "testmod";
          @SidedProxy(clientSide = "in.olympe.javaware.testmod.proxy.ClientProxy", serverSide = "in.olympe.javaware.testmod.proxy.CommonProxy")
          public static CommonProxy proxy;
          
          public static Block machineTuto;
          
          @EventHandler
          public void preInit(FMLPreInitializationEvent event)
          {
          machineTuto = new BlockMachineTuto();
          }
          
          @EventHandler
          public void init(FMLInitializationEvent event)
          {
          GameRegistry.registerBlock(machineTuto, "machinetuto");
          GameRegistry.registerTileEntity(TileEntityMachineTuto.class, "tileentitymachinetuto");
          proxy.registerRender();
          proxy.registerBlockTexture(machineTuto, "machinetuto");
          if(event.getSide().isClient())
          {
          MinecraftForge.EVENT_BUS.register(new EventClientListener());
          }
          
          FMLCommonHandler.instance().bus().register(new EventListener());
          MinecraftForge.EVENT_BUS.register(new EventListener());
          NetworkRegistry.INSTANCE.registerGuiHandler(instance, new GuiHandlerTestMod());
          }
          
          @EventHandler
          public void postInit(FMLPostInitializationEvent event)
          {
          
          }
          }
          
          

          Client Proxy :

          
          public class ClientProxy extends CommonProxy {
          
          @Override
          public void registerRender()
          {
          
          }
          
          @Override
          public void registerItemTexture(Item item, int metadata, String name)
          {
          ItemModelMesher mesher = Minecraft.getMinecraft().getRenderItem().getItemModelMesher();
          mesher.register(item, metadata, new ModelResourceLocation(TestMod.MODID + ":" + name, "inventory"));
          }
          
          @Override
          public void registerItemTexture(Item item, String name)
          {
          registerItemTexture(item, 0, name);
          }
          
          @Override
          public void registerBlockTexture(Block block, int metadata, String name)
          {
          registerItemTexture(Item.getItemFromBlock(block), metadata, name);
          }
          
          @Override
          public void registerBlockTexture(Block block, String name)
          {
          registerBlockTexture(block, 0, name);
          }
          
          }
          
          

          Le json du blockstate :

          
          {
          "variants": {
          "normal": { "model": "testmod:machinetuto" }
          }
          }
          
          

          Le json du model :

          
          {
          "parent": "block/cube_all",
          "textures": {
          "all": "testmod:blocks/machinetuto"
          }
          }
          
          

          Le json de l’item :

          
          {
          "parent": "testmod:block/machinetuto",
          "display": {
          "thirdperson": {
          "rotation": [ 10, -45, 170 ],
          "translation": [ 0, 1.5, -2.75 ],
          "scale": [ 0.375, 0.375, 0.375 ]
          }
          }
          }
          
          
          1 réponse Dernière réponse Répondre Citer 0
          • robin4002R Hors-ligne
            robin4002 Moddeurs confirmés Rédacteurs Administrateurs
            dernière édition par

            Logs ?

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

              
              [17:49:22] [main/INFO] [GradleStart]: Extra: []
              [17:49:22] [main/INFO] [GradleStart]: Running with arguments: [–userProperties, {}, --assetsDir, C:/Users/Utilisateur/.gradle/caches/minecraft/assets, --assetIndex, 1.8, --accessToken, {REDACTED}, --version, 1.8, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
              [17:49:22] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
              [17:49:22] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
              [17:49:22] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
              [17:49:22] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
              [17:49:22] [main/INFO] [FML]: Forge Mod Loader version 8.0.37.1334 for Minecraft 1.8 loading
              [17:49:22] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_65, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_65
              [17:49:22] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
              [17:49:22] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
              [17:49:22] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
              [17:49:22] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
              [17:49:22] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
              [17:49:22] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
              [17:49:22] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
              [17:49:22] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
              [17:49:22] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
              [17:49:22] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
              [17:49:23] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
              [17:49:26] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
              [17:49:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
              [17:49:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
              [17:49:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
              [17:49:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
              [17:49:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
              [17:49:26] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
              [17:49:27] [Client thread/INFO]: Setting user: Player984
              [17:49:32] [Client thread/INFO]: LWJGL Version: 2.9.1
              [17:49:32] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
              [17:49:32] [Client thread/INFO] [FML]: MinecraftForge v11.14.1.1334 Initialized
              [17:49:33] [Client thread/INFO] [FML]: Replaced 204 ore recipies
              [17:49:33] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
              [17:49:33] [Client thread/INFO] [FML]: Searching C:\Users\Utilisateur\Desktop\Minecraft modding\Forge\forge-1.8-11.14.1.1334\mods for mods
              [17:49:35] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
              [17:49:35] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, testmod] at CLIENT
              [17:49:35] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, testmod] at SERVER
              [17:49:36] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Mod de test
              [17:49:36] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
              [17:49:36] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations
              [17:49:36] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
              [17:49:36] [Client thread/INFO] [FML]: Applying holder lookups
              [17:49:36] [Client thread/INFO] [FML]: Holder lookups applied
              [17:49:37] [Sound Library Loader/INFO]: Starting up SoundSystem…
              [17:49:37] [Thread-7/INFO]: Initializing LWJGL OpenAL
              [17:49:37] [Thread-7/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
              [17:49:38] [Thread-7/INFO]: OpenAL initialized.
              [17:49:38] [Sound Library Loader/INFO]: Sound engine started
              [17:49:43] [Client thread/INFO]: Created: 512x512 textures-atlas
              [17:49:44] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
              [17:49:44] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Mod de test
              [17:49:45] [Client thread/INFO]: SoundSystem shutting down…
              [17:49:45] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
              [17:49:45] [Sound Library Loader/INFO]: Starting up SoundSystem…
              [17:49:45] [Thread-9/INFO]: Initializing LWJGL OpenAL
              [17:49:45] [Thread-9/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
              [17:49:45] [Thread-9/INFO]: OpenAL initialized.
              [17:49:45] [Sound Library Loader/INFO]: Sound engine started
              [17:49:49] [Client thread/INFO]: Created: 512x512 textures-atlas
              [17:49:59] [Server thread/INFO]: Starting integrated minecraft server version 1.8
              [17:49:59] [Server thread/INFO]: Generating keypair
              [17:49:59] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance
              [17:49:59] [Server thread/INFO] [FML]: Applying holder lookups
              [17:49:59] [Server thread/INFO] [FML]: Holder lookups applied
              [17:49:59] [Server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@13fc6737)
              [17:49:59] [Server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@13fc6737)
              [17:50:00] [Server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@13fc6737)
              [17:50:00] [Server thread/INFO]: Preparing start region for level 0
              [17:50:01] [Server thread/INFO]: Preparing spawn area: 88%
              [17:50:01] [Server thread/INFO]: Changing view distance to 12, from 10
              [17:50:02] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 1
              [17:50:02] [Netty Server IO #1/INFO] [FML]: Client protocol version 1
              [17:50:02] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : FML@8.0.37.1334,testmod@1.0.0,Forge@11.14.1.1334,mcp@9.05
              [17:50:02] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
              [17:50:03] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
              [17:50:03] [Server thread/INFO]: Player984[local:E:64f89e2b] logged in with entity id 76 at (-594.2845748776858, 4.0, 24.696510820793282)
              [17:50:03] [Server thread/INFO]: Player984 joined the game
              
              
              1 réponse Dernière réponse Répondre Citer 0
              • robin4002R Hors-ligne
                robin4002 Moddeurs confirmés Rédacteurs Administrateurs
                dernière édition par

                Étrange car il n’y a pas d’erreur dans les logs. Ton bloc est enregistré dans init ou dans preInit ?

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

                  preInit je l’instancie, puis je l’enregistre dans init, ma classe principale et plus haut (la première)

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

                    Enregistre le bloc dans preInit.

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

                      Ça ne marche toujours pas

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

                        Je ne sais pas d’où ça vient dans ce cas. Envoies-moi un zip de ton dossier src je vais regarder de mon côté.

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

                          http://upload.lescigales.org/2a4u

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

                            Ta texture est semi-transparente c’est pour cela que tu n’as aucun rendu en jeu. Regardes le code du verre si tu veux garder cette transparence.

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

                              Ok, merci

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

                                salut moi j’ai pas les texture please help me

                                package fr.geekuko.killtheboss.common;
                                
                                import fr.geekuko.item.itemregister;
                                import fr.geekuko.killtheboss.blocks.blockregister;
                                import fr.geekuko.killtheboss.blocks.blocks;
                                import fr.geekuko.proxy.CommonProxy;
                                import net.minecraft.block.Block;
                                import net.minecraft.block.material.Material;
                                import net.minecraft.creativetab.CreativeTabs;
                                import net.minecraftforge.common.MinecraftForge;
                                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.FMLPostInitializationEvent;
                                import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
                                import net.minecraftforge.fml.common.registry.GameRegistry;
                                
                                @Mod(modid = "killheboss", name = "killtheboss", version = "1.0.0")
                                
                                public class killtheboss
                                {
                                   @Instance("killtheboss")
                                   public static killtheboss instance;
                                   public static final String MODID = "killtheboss";
                                   @SidedProxy(clientSide = "fr.geekuko.proxy.ClientProxy", serverSide = "fr.geekuko.proxy.CommonProxy")
                                   public static CommonProxy proxy;
                                
                                   @EventHandler
                                   public void preInit(FMLPreInitializationEvent event)
                                    {
                                       blockregister.register();
                                       itemregister.register();
                                
                                   }
                                
                                   @EventHandler
                                   public void init(FMLInitializationEvent event)
                                   {
                                       proxy.registerRender();
                                       proxy.registerBlockTexture(blockregister.pierrecompresse, "pierrecompresse");
                                
                                   }
                                
                                   @EventHandler
                                   public void postInit(FMLPostInitializationEvent event)
                                   {
                                
                                   }
                                }
                                
                                package fr.geekuko.proxy;
                                
                                import net.minecraft.block.Block;
                                import net.minecraft.client.Minecraft;
                                import net.minecraft.client.renderer.ItemModelMesher;
                                import net.minecraft.client.renderer.block.model.ModelResourceLocation;
                                import net.minecraft.item.Item;
                                
                                public class ClientProxy extends CommonProxy
                                {
                                   @Override
                                   public void registerRender()
                                   {
                                       System.out.println("méthode côté client");
                                   }
                                   @Override
                                   public void registerItemTexture(Item item, int metadata, String name)
                                   {
                                       ItemModelMesher mesher = Minecraft.getMinecraft().getRenderItem().getItemModelMesher();
                                       mesher.register(item, metadata, new ModelResourceLocation("killtheboss:" + name, "inventory"));
                                   }
                                
                                   @Override
                                   public void registerItemTexture(Item item, String name)
                                   {
                                       registerItemTexture(item, 0, name);
                                   }
                                
                                   @Override
                                   public void registerBlockTexture(Block block, int metadata, String name)
                                   {
                                       registerItemTexture(Item.getItemFromBlock(block), metadata, name);
                                   }
                                
                                   @Override
                                   public void registerBlockTexture(Block block, String name)
                                   {
                                       registerBlockTexture(block, 0, name);
                                   }
                                }
                                
                                package fr.geekuko.proxy;
                                
                                import net.minecraft.block.Block;
                                import net.minecraft.item.Item;
                                
                                public class CommonProxy
                                
                                {
                                
                                   public void registerItemTexture(Item item, int metadata, String name){}
                                
                                   public void registerItemTexture(Item item, String name){}
                                
                                   public void registerBlockTexture(Block block, int metadata, String name){}
                                
                                   public void registerBlockTexture(Block block, String name){}
                                   public void registerRender()
                                   {
                                       System.out.println("méthode côté serveur");
                                
                                   }
                                
                                }
                                
                                
                                
                                   package fr.geekuko.killtheboss.blocks;
                                
                                import net.minecraft.block.Block;
                                import net.minecraft.block.material.Material;
                                import net.minecraft.creativetab.CreativeTabs;
                                import net.minecraftforge.fml.common.registry.GameRegistry;
                                
                                public class blockregister
                                   {
                                   public static Block pierrecompresse;
                                
                                           public static void register()
                                       {
                                
                                           pierrecompresse = new blocks(Material.rock).setUnlocalizedName("pierrecompresse").setResistance(1000.0F).setHardness(25.0F).setCreativeTab(CreativeTabs.tabBlock);
                                
                                           GameRegistry.registerBlock(pierrecompresse, "pierrecompresse");
                                
                                       }
                                   }
                                
                                
                                {
                                  "variants": {
                                      "normal": { "model": "killtheboss:pierrecompresse" }
                                  }
                                }
                                
                                {
                                  "parent": "block/cube_all",
                                  "textures": {
                                      "all": "killtheboss:blocks/pierrecompresse"
                                  }
                                }
                                
                                {
                                  "parent": "killtheboss:block/pierrecompresse",
                                   "display": {
                                       "thirdperson": {
                                           "rotation": [ 10, -45, 170 ],
                                           "translation": [ 0, 1.5, -2.75 ],
                                           "scale": [ 0.375, 0.375, 0.375 ]
                                       }
                                  }
                                }
                                
                                1 réponse Dernière réponse Répondre Citer 0
                                • robin4002R Hors-ligne
                                  robin4002 Moddeurs confirmés Rédacteurs Administrateurs
                                  dernière édition par

                                  Salut,
                                  Peux-tu envoyer les logs du jeu ?

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

                                    voila

                                    [12:08:38] [Client thread/INFO]: Setting user: Player261
                                    [12:08:42] [Client thread/INFO]: LWJGL Version: 2.9.4
                                    [12:08:46] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:killtheboss
                                    [12:08:49] [Sound Library Loader/INFO]: Starting up SoundSystem…
                                    [12:08:50] [Thread-8/INFO]: Initializing LWJGL OpenAL
                                    [12:08:50] [Thread-8/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
                                    [12:08:50] [Thread-8/INFO]: OpenAL initialized.
                                    [12:08:50] [Sound Library Loader/INFO]: Sound engine started
                                    [12:08:54] [Client thread/INFO]: Created: 16x16 textures-atlas
                                    [12:08:55] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:killtheboss
                                    [12:08:57] [Client thread/INFO]: SoundSystem shutting down…
                                    [12:08:58] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
                                    [12:08:58] [Sound Library Loader/INFO]: Starting up SoundSystem…
                                    [12:08:58] [Thread-10/INFO]: Initializing LWJGL OpenAL
                                    [12:08:58] [Thread-10/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
                                    [12:08:58] [Thread-10/INFO]: OpenAL initialized.
                                    [12:08:58] [Sound Library Loader/INFO]: Sound engine started
                                    [12:09:01] [Client thread/INFO]: Created: 1024x512 textures-atlas
                                    [12:09:03] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
                                    [12:09:16] [Server thread/INFO]: Starting integrated minecraft server version 1.9
                                    [12:09:16] [Server thread/INFO]: Generating keypair
                                    [12:09:17] [Server thread/INFO]: Preparing start region for level 0
                                    [12:09:18] [Server thread/INFO]: Preparing spawn area: 40%
                                    [12:09:19] [Server thread/INFO]: Changing view distance to 12, from 10
                                    [12:09:19] [Server thread/INFO]: Player261[local:E:79c72009] logged in with entity id 280 at (130.442613564471, 66.0, 232.15103124565024)
                                    [12:09:19] [Server thread/INFO]: Player261 joined the game
                                    [12:09:20] [Server thread/INFO]: Saving and pausing game…
                                    [12:09:20] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Overworld
                                    [12:09:20] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether
                                    [12:09:20] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/The End
                                    [12:09:20] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@2a95500c[id=5c5c7719-d2ce-30c8-bc42-ad9690493df6,name=Player261,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.getProfileProperties(Minecraft.java:3038) [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_73]
                                    at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_73]
                                    at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_73]
                                    at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_73]
                                    at java.lang.Thread.run(Unknown Source) [?:1.8.0_73]
                                    [12:09:23] [Server thread/INFO]: Saving and pausing game…
                                    [12:09:23] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Overworld
                                    [12:09:23] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether
                                    [12:09:23] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/The End
                                    [12:09:24] [Client thread/INFO]: Stopping!
                                    [12:09:24] [Client thread/INFO]: SoundSystem shutting down…
                                    [12:09:24] [Server thread/INFO]: Stopping server
                                    [12:09:24] [Server thread/INFO]: Saving players
                                    [12:09:24] [Server thread/INFO]: Saving worlds
                                    [12:09:24] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Overworld
                                    [12:09:24] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether
                                    [12:09:24] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/The End
                                    [12:09:24] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
                                    [12:09:24] [Client Shutdown Thread/INFO]: Stopping server
                                    [12:09:24] [Client Shutdown Thread/INFO]: Saving players
                                    [12:09:24] [Client Shutdown Thread/INFO]: Saving worlds
                                    [12:09:24] [Client Shutdown Thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether
                                    [12:09:24] [Client Shutdown Thread/INFO]: Saving chunks for level 'Nouveau monde'/The End
                                    
                                    
                                    1 réponse Dernière réponse Répondre Citer 0
                                    • robin4002R Hors-ligne
                                      robin4002 Moddeurs confirmés Rédacteurs Administrateurs
                                      dernière édition par

                                      Ce sont les logs de la console d’eclipse ça ? Car je ne vois rien venant de FML et donc rien concernant la texture.

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

                                        2016-03-21 12:31:35,076 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
                                        2016-03-21 12:31:35,076 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
                                        [12:31:35] [main/INFO] [GradleStart]: Extra: []
                                        [12:31:35] [main/INFO] [GradleStart]: Running with arguments: [–userProperties, {}, --assetsDir, C:/Users/user/.gradle/caches/minecraft/assets, --assetIndex, 1.9, --accessToken{REDACTED}, --version, 1.9, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
                                        [12:31:35] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
                                        [12:31:35] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
                                        [12:31:35] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
                                        [12:31:35] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
                                        [12:31:35] [main/INFO] [FML]: Forge Mod Loader version 12.16.0.1776 for Minecraft 1.9 loading
                                        [12:31:35] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_73, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_73
                                        [12:31:35] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
                                        [12:31:35] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
                                        [12:31:35] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
                                        [12:31:35] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
                                        [12:31:35] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
                                        [12:31:35] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
                                        [12:31:35] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
                                        [12:31:35] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
                                        [12:31:35] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
                                        [12:31:35] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
                                        [12:31:35] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
                                        [12:31:36] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
                                        [12:31:36] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
                                        [12:31:36] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
                                        [12:31:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
                                        [12:31:37] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
                                        [12:31:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
                                        [12:31:37] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
                                        2016-03-21 12:31:37,712 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
                                        2016-03-21 12:31:37,741 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
                                        2016-03-21 12:31:37,742 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
                                        [12:31:38] [Client thread/INFO]: Setting user: Player471
                                        [12:31:40] [Client thread/INFO]: LWJGL Version: 2.9.4
                                        [12:31:41] [Client thread/WARN] [FML]: =============================================================
                                        [12:31:41] [Client thread/WARN] [FML]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML!
                                        [12:31:41] [Client thread/WARN] [FML]: Offendor: com/sun/jna/Native.main([Ljava/lang/String;)V
                                        [12:31:41] [Client thread/WARN] [FML]: Use FMLCommonHandler.exitJava instead
                                        [12:31:41] [Client thread/WARN] [FML]: =============================================================
                                        [12:31:42] [Client thread/INFO] [STDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:250]: –-- Minecraft Crash Report ----
                                        // Shall we play a game?
                                        
                                        Time: 21/03/16 12:31
                                        Description: Loading screen debug info
                                        
                                        This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR
                                        
                                        A detailed walkthrough of the error, its code path and all known details is as follows:
                                        ---------------------------------------------------------------------------------------
                                        
                                        -- System Details --
                                        Details:
                                        Minecraft Version: 1.9
                                        Operating System: Windows 10 (amd64) version 10.0
                                        Java Version: 1.8.0_73, Oracle Corporation
                                        Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
                                        Memory: 771912128 bytes (736 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 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: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 353.82' Renderer: 'GeForce GTX 750/PCIe/SSE2'
                                        [12:31:42] [Client thread/INFO] [FML]: MinecraftForge v12.16.0.1776 Initialized
                                        [12:31:42] [Client thread/INFO] [FML]: Replaced 207 ore recipies
                                        [12:31:42] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
                                        [12:31:42] [Client thread/INFO] [FML]: Searching C:\Users\user\Desktop\killtheboss\run\mods for mods
                                        [12:31:44] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
                                        [12:31:44] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, killheboss] at CLIENT
                                        [12:31:44] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, killheboss] at SERVER
                                        [12:31:44] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:killtheboss
                                        [12:31:44] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
                                        [12:31:44] [Client thread/INFO] [FML]: Found 418 ObjectHolder annotations
                                        [12:31:44] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
                                        [12:31:44] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
                                        [12:31:44] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
                                        [12:31:44] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
                                        [12:31:44] [Client thread/INFO] [FML]: Applying holder lookups
                                        [12:31:44] [Client thread/INFO] [FML]: Holder lookups applied
                                        [12:31:44] [Client thread/INFO] [FML]: Injecting itemstacks
                                        [12:31:44] [Client thread/INFO] [FML]: Itemstack injection complete
                                        [12:31:45] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: BETA_OUTDATED Target: 12.16.0.1780
                                        [12:31:47] [Sound Library Loader/INFO]: Starting up SoundSystem…
                                        [12:31:47] [Thread-8/INFO]: Initializing LWJGL OpenAL
                                        [12:31:47] [Thread-8/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
                                        [12:31:47] [Thread-8/INFO]: OpenAL initialized.
                                        [12:31:48] [Sound Library Loader/INFO]: Sound engine started
                                        [12:31:51] [Client thread/INFO] [FML]: Max texture size: 16384
                                        [12:31:51] [Client thread/INFO]: Created: 16x16 textures-atlas
                                        [12:31:52] [Client thread/ERROR] [FML]: Exception loading model for variant killheboss:pierrecompresse#normal for blockstate "killheboss:pierrecompresse"
                                        net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model killheboss:pierrecompresse#normal with loader VariantLoader.instance, skipping
                                        at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?]
                                        at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:209) ~[ModelLoader.class:?]
                                        at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:144) ~[ModelBakery.class:?]
                                        at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:197) ~[ModelLoader.class:?]
                                        at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:120) ~[ModelLoader.class:?]
                                        at net.minecraft.client.renderer.block.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:535) [Minecraft.class:?]
                                        at net.minecraft.client.Minecraft.run(Minecraft.java:381) [Minecraft.class:?]
                                        at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_73]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_73]
                                        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_73]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
                                        at GradleStart.main(GradleStart.java:26) [start/:?]
                                        Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
                                        at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:75) ~[ModelBlockDefinition.class:?]
                                        at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1087) ~[ModelLoader$VariantLoader.class:?]
                                        at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:126) ~[ModelLoaderRegistry.class:?]
                                        … 21 more
                                        [12:31:52] [Client thread/ERROR] [FML]: Exception loading model for variant killheboss:pierrecompresse#inventory for item "killheboss:pierrecompresse"
                                        java.lang.Exception: Could not load item model either from the normal location killheboss:item/pierrecompresse or from the blockstate
                                        at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:291) ~[ModelLoader.class:?]
                                        at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:169) ~[ModelBakery.class:?]
                                        at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:121) ~[ModelLoader.class:?]
                                        at net.minecraft.client.renderer.block.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:535) [Minecraft.class:?]
                                        at net.minecraft.client.Minecraft.run(Minecraft.java:381) [Minecraft.class:?]
                                        at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_73]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_73]
                                        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_73]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
                                        at GradleStart.main(GradleStart.java:26) [start/:?]
                                        Caused by: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model killheboss:pierrecompresse#inventory with loader VariantLoader.instance, skipping
                                        at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?]
                                        at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:287) ~[ModelLoader.class:?]
                                        … 19 more
                                        Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
                                        at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:75) ~[ModelBlockDefinition.class:?]
                                        at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1087) ~[ModelLoader$VariantLoader.class:?]
                                        at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:126) ~[ModelLoaderRegistry.class:?]
                                        at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:287) ~[ModelLoader.class:?]
                                        … 19 more
                                        [12:31:52] [Client thread/INFO] [STDOUT]: [fr.geekuko.proxy.ClientProxy:registerRender:14]: méthode côté client
                                        [12:31:52] [Client thread/INFO] [FML]: Injecting itemstacks
                                        [12:31:52] [Client thread/INFO] [FML]: Itemstack injection complete
                                        [12:31:52] [Client thread/INFO] [FML]:   Unknown recipe class! net.minecraft.item.crafting.RecipeTippedArrow Modder please refer to net.minecraftforge.oredict.RecipeSorter
                                        [12:31:52] [Client thread/INFO] [FML]:   Unknown recipe class! net.minecraft.item.crafting.ShieldRecipes$Decoration Modder please refer to net.minecraftforge.oredict.RecipeSorter
                                        [12:31:52] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
                                        [12:31:52] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:killtheboss
                                        [12:31:55] [Client thread/INFO]: SoundSystem shutting down…
                                        [12:31:55] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
                                        [12:31:55] [Sound Library Loader/INFO]: Starting up SoundSystem…
                                        [12:31:55] [Thread-10/INFO]: Initializing LWJGL OpenAL
                                        [12:31:55] [Thread-10/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
                                        [12:31:55] [Thread-10/INFO]: OpenAL initialized.
                                        [12:31:56] [Sound Library Loader/INFO]: Sound engine started
                                        [12:31:58] [Client thread/INFO] [FML]: Max texture size: 16384
                                        [12:31:58] [Client thread/INFO]: Created: 1024x512 textures-atlas
                                        [12:31:59] [Client thread/ERROR] [FML]: Exception loading model for variant killheboss:pierrecompresse#normal for blockstate "killheboss:pierrecompresse"
                                        net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model killheboss:pierrecompresse#normal with loader VariantLoader.instance, skipping
                                        at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?]
                                        at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:209) ~[ModelLoader.class:?]
                                        at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:144) ~[ModelBakery.class:?]
                                        at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:197) ~[ModelLoader.class:?]
                                        at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:120) ~[ModelLoader.class:?]
                                        at net.minecraft.client.renderer.block.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:792) [Minecraft.class:?]
                                        at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:328) [FMLClientHandler.class:?]
                                        at net.minecraft.client.Minecraft.startGame(Minecraft.java:554) [Minecraft.class:?]
                                        at net.minecraft.client.Minecraft.run(Minecraft.java:381) [Minecraft.class:?]
                                        at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_73]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_73]
                                        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_73]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
                                        at GradleStart.main(GradleStart.java:26) [start/:?]
                                        Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
                                        at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:75) ~[ModelBlockDefinition.class:?]
                                        at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1087) ~[ModelLoader$VariantLoader.class:?]
                                        at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:126) ~[ModelLoaderRegistry.class:?]
                                        … 24 more
                                        [12:31:59] [Client thread/ERROR] [FML]: Exception loading model for variant killheboss:pierrecompresse#inventory for item "killheboss:pierrecompresse"
                                        java.lang.Exception: Could not load item model either from the normal location killheboss:item/pierrecompresse or from the blockstate
                                        at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:291) ~[ModelLoader.class:?]
                                        at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:169) ~[ModelBakery.class:?]
                                        at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:121) ~[ModelLoader.class:?]
                                        at net.minecraft.client.renderer.block.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:792) [Minecraft.class:?]
                                        at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:328) [FMLClientHandler.class:?]
                                        at net.minecraft.client.Minecraft.startGame(Minecraft.java:554) [Minecraft.class:?]
                                        at net.minecraft.client.Minecraft.run(Minecraft.java:381) [Minecraft.class:?]
                                        at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_73]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_73]
                                        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_73]
                                        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_73]
                                        at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
                                        at GradleStart.main(GradleStart.java:26) [start/:?]
                                        Caused by: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model killheboss:pierrecompresse#inventory with loader VariantLoader.instance, skipping
                                        at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?]
                                        at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:287) ~[ModelLoader.class:?]
                                        … 22 more
                                        Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
                                        at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:75) ~[ModelBlockDefinition.class:?]
                                        at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1087) ~[ModelLoader$VariantLoader.class:?]
                                        at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:126) ~[ModelLoaderRegistry.class:?]
                                        at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:287) ~[ModelLoader.class:?]
                                        … 22 more
                                        [12:32:00] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
                                        [12:32:12] [Server thread/INFO]: Starting integrated minecraft server version 1.9
                                        [12:32:12] [Server thread/INFO]: Generating keypair
                                        [12:32:12] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance
                                        [12:32:12] [Server thread/INFO] [FML]: Applying holder lookups
                                        [12:32:12] [Server thread/INFO] [FML]: Holder lookups applied
                                        [12:32:12] [Server thread/INFO] [FML]: Loading dimension 0 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@69968e13)
                                        [12:32:12] [Server thread/INFO] [FML]: Loading dimension 1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@69968e13)
                                        [12:32:13] [Server thread/INFO] [FML]: Loading dimension -1 (Nouveau monde) (net.minecraft.server.integrated.IntegratedServer@69968e13)
                                        [12:32:13] [Server thread/INFO]: Preparing start region for level 0
                                        [12:32:14] [Server thread/INFO]: Preparing spawn area: 55%
                                        [12:32:14] [Server thread/INFO]: Changing view distance to 12, from 10
                                        [12:32:15] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2
                                        [12:32:15] [Netty Server IO #1/INFO] [FML]: Client protocol version 2
                                        [12:32:15] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : killheboss@1.0.0,FML@8.0.99.99,Forge@12.16.0.1776,mcp@9.19
                                        [12:32:15] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
                                        [12:32:15] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
                                        [12:32:15] [Server thread/INFO]: Player471[local:E:34019b20] logged in with entity id 280 at (130.442613564471, 66.0, 232.15103124565024)
                                        [12:32:15] [Server thread/INFO]: Player471 joined the game
                                        [12:32:16] [Server thread/INFO]: Saving and pausing game…
                                        [12:32:16] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Overworld
                                        [12:32:16] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether
                                        [12:32:16] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/The End
                                        [12:32:16] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@61820519[id=e246deab-2680-3623-991e-a2d437bbfbae,name=Player471,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.getProfileProperties(Minecraft.java:3038) [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_73]
                                        at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_73]
                                        at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_73]
                                        at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_73]
                                        at java.lang.Thread.run(Unknown Source) [?:1.8.0_73]
                                        [12:32:18] [Server thread/INFO]: Saving and pausing game…
                                        [12:32:18] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Overworld
                                        [12:32:18] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether
                                        [12:32:18] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/The End
                                        [12:32:19] [Client thread/INFO]: Stopping!
                                        [12:32:19] [Client thread/INFO]: SoundSystem shutting down…
                                        [12:32:19] [Server thread/INFO]: Stopping server
                                        [12:32:19] [Server thread/INFO]: Saving players
                                        [12:32:19] [Server thread/INFO]: Saving worlds
                                        [12:32:19] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Overworld
                                        [12:32:19] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether
                                        [12:32:19] [Server thread/INFO]: Saving chunks for level 'Nouveau monde'/The End
                                        [12:32:19] [Server thread/INFO] [FML]: Unloading dimension 0
                                        [12:32:19] [Server thread/INFO] [FML]: Unloading dimension 0
                                        [12:32:19] [Server thread/INFO] [FML]: Unloading dimension 0
                                        [12:32:19] [Server thread/INFO] [FML]: Applying holder lookups
                                        [12:32:19] [Server thread/INFO] [FML]: Holder lookups applied
                                        [12:32:19] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
                                        [12:32:19] [Client Shutdown Thread/INFO]: Stopping server
                                        [12:32:19] [Client Shutdown Thread/INFO]: Saving players
                                        [12:32:19] [Client Shutdown Thread/INFO]: Saving worlds
                                        [12:32:19] [Client Shutdown Thread/INFO]: Saving chunks for level 'Nouveau monde'/Nether
                                        [12:32:19] [Client Shutdown Thread/INFO]: Saving chunks for level 'Nouveau monde'/The End
                                        [12:32:19] [Client Shutdown Thread/INFO] [FML]: Unloading dimension 0
                                        [12:32:19] [Client Shutdown Thread/INFO] [FML]: Unloading dimension 0
                                        Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release
                                        
                                        
                                        1 réponse Dernière réponse Répondre Citer 0
                                        • robin4002R Hors-ligne
                                          robin4002 Moddeurs confirmés Rédacteurs Administrateurs
                                          dernière édition par

                                          Visiblement il y a un soucis avec ton modèle :
                                          net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model killheboss: pierrecompresse#normal with loader VariantLoader.instance, skipping

                                          Tes fichiers json sont placés dans quels dossiers ?

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

                                            C:\Users\user\Desktop\killtheboss\src\main\resources\assets\killtheboss

                                            et la j’ai 4 dossier -blockstate
                                                                       -lang
                                                                       -models
                                                                       -textures

                                            dans models il y a 2 dossier block et item
                                            et dans textures il y a un dossier blocks

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

                                            MINECRAFT FORGE FRANCE © 2024

                                            Powered by NodeBB