MFF

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

    Créer un kit d'outils

    Planifier Épinglé Verrouillé Déplacé Les items
    1.7.x
    114 Messages 19 Publieurs 39.6k 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

      Post plutôt dans la section support pour les moddeurs.

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

        bonjour j’aimerai créer une pioche avec un craft custom , pas avec un seul matériaux quoi , mais sans créer en meme temps la hache , l’épée etc . Comment faire ?

        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

          Il suffit de créer seulement la classe de l’épée.

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

            Merci et puis j’ai un problème je ne peut pas utiliser l’item précédemment crée en suivant tes tuto . A tu une solution ?

            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

              Heu comment ça ? Tu peux détailler ? Et envoyer ton code aussi.

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

                package com.mathiasetampes.newcraft.common;
                
                import net.minecraft.creativetab.CreativeTabs;
                import net.minecraft.init.Items;
                import net.minecraft.item.Item;
                import net.minecraft.item.Item.ToolMaterial;
                import net.minecraft.item.ItemStack;
                import net.minecraftforge.common.util.EnumHelper;
                
                import com.mathiasetampes.newcraft.proxy.CommonProxy;
                
                import cpw.mods.fml.common.Mod;
                import cpw.mods.fml.common.Mod.EventHandler;
                import cpw.mods.fml.common.Mod.Instance;
                import cpw.mods.fml.common.SidedProxy;
                import cpw.mods.fml.common.event.FMLInitializationEvent;
                import cpw.mods.fml.common.event.FMLPostInitializationEvent;
                import cpw.mods.fml.common.event.FMLPreInitializationEvent;
                import cpw.mods.fml.common.registry.GameRegistry;
                
                @Mod(modid = "newcraft",name="Newcraft",version="1.0.0")
                
                public class newcraft
                {
                @Instance("newcraft")
                public static newcraft instance;
                public static Item core;
                public static Item firePickaxe;
                public static ToolMaterial FireTools = EnumHelper.addToolMaterial("FireTool", 3, 854, 12.0F, 4.0F, 18);
                public static final String MODID = "newcraft";
                
                @SidedProxy(clientSide = "com.mathiasetampes.newcraft.proxy.ClientProxy", serverSide = "com.mathiasetampes.newcraft.proxy.CommonProxy")
                public static CommonProxy proxy;
                
                @EventHandler
                public void preInit(FMLPreInitializationEvent event)
                {
                core = new Core().setUnlocalizedName("Core").setCreativeTab(CreativeTabs.tabMaterials).setTextureName(MODID + ":core");
                firePickaxe = new FirePickaxe(FireTools).setUnlocalizedName("FirePickaxe").setTextureName("Confusword_tutoriel.png");
                
                GameRegistry.registerItem(core,"Core");
                GameRegistry.registerItem(firePickaxe, "FirePickaxe");
                
                GameRegistry.addShapedRecipe(new ItemStack(core, 1, 1), new Object[]{"XYX",'X',Items.blaze_powder,'Y',Items.diamond});
                GameRegistry.addShapedRecipe(new ItemStack(firePickaxe,1,1),new Object[]{"XYX","Z","Z",'X',Items.diamond,'Y',newcraft.core,'Z',Items.stick});
                
                }
                
                @EventHandler
                public void init(FMLInitializationEvent event)
                {
                proxy.registerRender();
                }
                
                @EventHandler
                public void postInit(FMLPostInitializationEvent event)
                {
                
                }
                }
                
                

                J’ai finalement trouvé mais un bug persiste :j’ai crée le constructor dans la classe firePickaxe mais l’erreur reste pourquoi

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

                  c’est bon j’ai trouvé il faut pas mettre Items.quelquechose mais MonMod.quelquechose

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

                    heu excuser moi c’était un bug d’affichage l’erreur n’existait pas . Par contre le craft de la pioche ne marche 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

                      ça devrait être :
                      GameRegistry.addShapedRecipe(new ItemStack(firePickaxe),new Object[]{“XYX”," Z “,” Z ", ‘X’, Items.diamond, ‘Y’, core, ‘Z’, Items.stick});

                      Les espaces sont important

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

                        j’ai fait un copié collé mais çà ne marche toujours pas

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

                          @‘Asmath’:

                          j’ai fait un copié collé mais çà ne marche toujours pas

                          Peut être que le problème vient du fait que tu met les craft dans la fonction preInit au lieu de 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
                          • robin4002R Hors-ligne
                            robin4002 Moddeurs confirmés Rédacteurs Administrateurs
                            dernière édition par

                            Possible oui.

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

                              non çà ne change absolument rien en plus l’autre craft marche

                              Edit : non en fait j’ai trouvé mais le craft ne marche qu’avec les core obtenu pas give et pas avec ceux obtenu pas craft d’ailleur c’est deux “sortes” de core ne se cumule pas entre elle

                              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

                                Normal :
                                GameRegistry.addShapedRecipe(new ItemStack(core, 1, 1), new Object[]{“XYX”,‘X’,Items.blaze_powder,‘Y’,Items.diamond});

                                Ton craft donne des cores de metadata 1.
                                Remplace par ça :
                                GameRegistry.addShapedRecipe(new ItemStack(core), new Object[]{“XYX”,‘X’,Items.blaze_powder,‘Y’,Items.diamond});

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

                                  bonjours, alors moi j’ai un problème de texture elle ne s’affiche pas e dans la console sa m’affiche sa :
                                  [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
                                  [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
                                  [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
                                  [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:   DOMAIN firstmod
                                  [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]: –------------------------------------------------
                                  [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:   domain firstmod is missing 4 textures
                                  [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:     domain firstmod is missing a resource manager - it is probably a side-effect of automatic texture processing
                                  [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
                                  [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain firstmod are:
                                  [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/obsidian_sword.png
                                  [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/obsidian_pickaxe.png
                                  [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/obsidian_axe.png
                                  [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/obsidian_shovel.png
                                  [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
                                  [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain firstmod
                                  [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
                                  [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
                                  et j’ai aussi un problème avec les fichier lang
                                  merci d’avance  😕

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

                                    @‘pams_95’:

                                    bonjours, alors moi j’ai un problème de texture elle ne s’affiche pas e dans la console sa m’affiche sa :
                                    [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
                                    [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
                                    [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
                                    [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:   DOMAIN firstmod
                                    [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]: –------------------------------------------------
                                    [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:   domain firstmod is missing 4 textures
                                    [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:     domain firstmod is missing a resource manager - it is probably a side-effect of automatic texture processing
                                    [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
                                    [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain firstmod are:
                                    [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/obsidian_sword.png
                                    [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/obsidian_pickaxe.png
                                    [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/obsidian_axe.png
                                    [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/obsidian_shovel.png
                                    [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
                                    [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain firstmod
                                    [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
                                    [14:00:55] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
                                    et j’ai aussi un problème avec les fichier lang
                                    merci d’avance  😕

                                    1-Mauvaise section
                                    2-Mets un spoiler ou une balise de code autour de ton message
                                    3-NE PAS METTRE DE DOUBLES POSTS !
                                    4-Mets le rapport d’erreur complet

                                    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
                                    • robin4002R Hors-ligne
                                      robin4002 Moddeurs confirmés Rédacteurs Administrateurs
                                      dernière édition par

                                      Sachant que le problème concerne le tutoriel il est au bon endroit. Et je ne vois pas de doubles posts.

                                      Vérifies que tes textures sont dans le bon dossier et visible sur eclipse.

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

                                        @‘robin4002’:

                                        Sachant que le problème concerne le tutoriel il est au bon endroit. Et je ne vois pas de doubles posts.

                                        Vérifies que tes textures sont dans le bon dossier et visible sur eclipse.

                                        Je voulais mettre ce message sur l’autre post en fait, je me suis trompé.

                                        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
                                        • P Hors-ligne
                                          pams_95
                                          dernière édition par

                                          mes texture sont dans le bon répertoire regarde:C:\Users\pams\Desktop\devoir \minecraft\mod minecraft\forge-1.7.10-10.13.3.1395-1710ls-src\src\main\resources\asset\modid\textures\items

                                          PS: je suis nouveau je ne sais pas faire de spoiler 🙂

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

                                            est-ce-que tu veux le rapport d’erreur au complet ?
                                            :::

                                            [19:18:13] [main/INFO] [GradleStart]: Extra: []
                                            [19:18:13] [main/INFO] [GradleStart]: Running with arguments: [–userProperties, {}, --accessToken, {REDACTED}, --assetIndex, 1.7.10, --assetsDir, C:/Users/LUCE/.gradle/caches/minecraft/assets, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
                                            [19:18:13] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
                                            [19:18:13] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
                                            [19:18:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
                                            [19:18:13] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
                                            [19:18:13] [main/INFO] [FML]: Forge Mod Loader version 7.10.130.1395 for Minecraft 1.7.10 loading
                                            [19:18:13] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_79, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7
                                            [19:18:13] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
                                            [19:18:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
                                            [19:18:13] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin
                                            [19:18:13] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
                                            [19:18:13] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                            [19:18:13] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
                                            [19:18:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
                                            [19:18:13] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                            [19:18:13] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                            [19:18:13] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                                            [19:18:14] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
                                            [19:18:16] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
                                            [19:18:16] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                                            [19:18:16] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
                                            [19:18:17] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
                                            [19:18:17] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker
                                            [19:18:17] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker
                                            [19:18:17] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
                                            [19:18:19] [main/INFO]: Setting user: Player651
                                            [19:18:23] [Client thread/INFO]: LWJGL Version: 2.9.1
                                            [19:18:25] [Client thread/INFO] [STDOUT]: [cpw.mods.fml.client.SplashProgress:start:100]: –-- Minecraft Crash Report ----
                                            // My bad.
                                            
                                            Time: 03/05/15 19:18
                                            Description: Loading screen debug info
                                            
                                            java.lang.Throwable
                                            at cpw.mods.fml.client.SplashProgress.start(SplashProgress.java:99)
                                            at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:190)
                                            at net.minecraft.client.Minecraft.startGame(Minecraft.java:522)
                                            at net.minecraft.client.Minecraft.run(Minecraft.java:942)
                                            at net.minecraft.client.main.Main.main(Main.java:164)
                                            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                                            at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
                                            at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                                            at java.lang.reflect.Method.invoke(Unknown Source)
                                            at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
                                            at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
                                            at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
                                            at GradleStart.main(Unknown Source)
                                            
                                            A detailed walkthrough of the error, its code path and all known details is as follows:
                                            ---------------------------------------------------------------------------------------
                                            
                                            -- System Details --
                                            Details:
                                            Minecraft Version: 1.7.10
                                            Operating System: Windows 7 (amd64) version 6.1
                                            Java Version: 1.7.0_79, Oracle Corporation
                                            Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
                                            Memory: 786185008 bytes (749 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)
                                            JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
                                            AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
                                            IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
                                            FML:
                                            GL info: ' Vendor: 'NVIDIA Corporation' Version: '3.3.0' Renderer: 'GeForce G105M/PCIe/SSE2'
                                            [19:18:25] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
                                            [19:18:25] [Client thread/INFO] [FML]: MinecraftForge v10.13.3.1395 Initialized
                                            [19:18:25] [Client thread/INFO] [FML]: Replaced 183 ore recipies
                                            [19:18:25] [Client thread/INFO] [FML]: Preloading CrashReport classes
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.World$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.World$2
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.World$3
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.World$4
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.chunk.Chunk$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.crash.CrashReportCategory$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.crash.CrashReportCategory$2
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.crash.CrashReportCategory$3
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.entity.Entity$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.entity.Entity$2
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.entity.EntityTracker$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.gen.layer.GenLayer$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.gen.layer.GenLayer$2
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.entity.player.InventoryPlayer$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.gen.structure.MapGenStructure$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.gen.structure.MapGenStructure$2
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.gen.structure.MapGenStructure$3
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.server.MinecraftServer$3
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.server.MinecraftServer$4
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.server.MinecraftServer$5
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.nbt.NBTTagCompound$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.nbt.NBTTagCompound$2
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.network.NetHandlerPlayServer$2
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.network.NetworkSystem$3
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.tileentity.TileEntity$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.tileentity.TileEntity$2
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.tileentity.TileEntity$3
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$2
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$3
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$4
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$5
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$6
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$7
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$8
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.world.storage.WorldInfo$9
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.Minecraft$3
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.Minecraft$4
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.Minecraft$5
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.Minecraft$6
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.Minecraft$7
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.Minecraft$8
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.Minecraft$9
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.Minecraft$10
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.Minecraft$11
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.Minecraft$12
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.Minecraft$13
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.Minecraft$14
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.Minecraft$15
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.multiplayer.WorldClient$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.multiplayer.WorldClient$2
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.multiplayer.WorldClient$3
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.multiplayer.WorldClient$4
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.particle,EffectRenderer$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.particle,EffectRenderer$2
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.particle,EffectRenderer$3
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.particle,EffectRenderer$4
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.renderer.EntityRenderer$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.renderer.EntityRenderer$2
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.renderer.EntityRenderer$3
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.server.integrated.IntegratedServer$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.server.integrated.IntegratedServer$2
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.renderer.RenderGlobal$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.renderer.entity.RenderItem$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.renderer.entity.RenderItem$2
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.renderer.entity.RenderItem$3
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.renderer.entity.RenderItem$4
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.renderer.texture.TextureAtlasSprite$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.renderer.texture.TextureManager$1
                                            [19:18:25] [Client thread/INFO] [FML]: net.minecraft.client.renderer.texture.TextureMap$1
                                            [19:18:26] [Client thread/INFO] [FML]: net.minecraft.client.renderer.texture.TextureMap$2
                                            [19:18:26] [Client thread/INFO] [FML]: net.minecraft.client.renderer.texture.TextureMap$3
                                            [19:18:26] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
                                            [19:18:26] [Thread-6/INFO] [FML]: loc: minecraft:textures/font/ascii.png, i: 0, j: 0, size: 128, width: 128, height: 128
                                            [19:18:26] [Thread-6/INFO] [FML]: loc: minecraft:textures/gui/title/mojang.png, i: 0, j: 0, size: 256, width: 256, height: 256
                                            [19:18:26] [Thread-6/INFO] [FML]: loc: fml:textures/gui/forge.png, i: 0, j: 0, size: 128, width: 128, height: 128
                                            [19:18:26] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
                                            [19:18:26] [Client thread/INFO] [FML]: Searching C:\Users\LUCE\Desktop\devoir alexandre\minecraft\mod minecraft\forge-1.7.10-10.13.3.1395-1710ls-src\eclipse\mods for mods
                                            [19:18:31] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
                                            [19:18:32] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, firstmod.MODID] at CLIENT
                                            [19:18:32] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, firstmod.MODID] at SERVER
                                            [19:18:32] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:First Mod
                                            [19:18:33] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
                                            [19:18:33] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations
                                            [19:18:33] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
                                            [19:18:33] [Client thread/INFO] [STDOUT]: [pams_95.mod.firstmod.common.firstmod:preInit:43]: preinitialisation
                                            [19:18:33] [Client thread/INFO] [FML]: Applying holder lookups
                                            [19:18:33] [Client thread/INFO] [FML]: Holder lookups applied
                                            [19:18:33] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
                                            [19:18:33] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem…
                                            [19:18:33] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
                                            [19:18:33] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
                                            [19:18:33] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
                                            [19:18:34] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
                                            [19:18:34] [Sound Library Loader/INFO]: Sound engine started
                                            [19:18:36] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
                                            [19:18:36] [Client thread/INFO]: Created: 256x256 textures/items-atlas
                                            [19:18:36] [Client thread/INFO] [STDOUT]: [pams_95.mod.firstmod.proxy.ClientProxy:registerRender:10]: méthode côté client
                                            [19:18:36] [Client thread/INFO] [STDOUT]: [pams_95.mod.firstmod.common.firstmod:Init:62]: initialisation
                                            [19:18:37] [Client thread/INFO] [STDOUT]: [pams_95.mod.firstmod.common.firstmod:postInit:68]: postititalisation
                                            [19:18:37] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
                                            [19:18:37] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:First Mod
                                            [19:18:37] [Client thread/INFO]: Created: 256x256 textures/items-atlas
                                            [19:18:37] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
                                            [19:18:37] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
                                            [19:18:37] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down…
                                            [19:18:37] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com
                                            [19:18:37] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
                                            [19:18:37] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
                                            [19:18:37] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem…
                                            [19:18:38] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
                                            [19:18:38] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
                                            [19:18:38] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
                                            [19:18:38] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
                                            [19:18:38] [Sound Library Loader/INFO]: Sound engine started
                                            [19:18:39] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
                                            [19:18:39] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
                                            [19:18:39] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
                                            [19:18:39] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN firstmod
                                            [19:18:39] [Client thread/ERROR] [TEXTURE ERRORS]: –------------------------------------------------
                                            [19:18:39] [Client thread/ERROR] [TEXTURE ERRORS]: domain firstmod is missing 4 textures
                                            [19:18:39] [Client thread/ERROR] [TEXTURE ERRORS]: domain firstmod is missing a resource manager - it is probably a side-effect of automatic texture processing
                                            [19:18:39] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
                                            [19:18:39] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain firstmod are:
                                            [19:18:39] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/obsidian_sword.png
                                            [19:18:39] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/obsidian_pickaxe.png
                                            [19:18:39] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/obsidian_axe.png
                                            [19:18:39] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/obsidian_shovel.png
                                            [19:18:39] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
                                            [19:18:39] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain firstmod
                                            [19:18:39] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
                                            [19:18:39] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
                                            [19:18:43] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10
                                            [19:18:43] [Server thread/INFO]: Generating keypair
                                            [19:18:44] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance
                                            [19:18:44] [Server thread/INFO] [FML]: Applying holder lookups
                                            [19:18:44] [Server thread/INFO] [FML]: Holder lookups applied
                                            [19:18:44] [Server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@168d410f)
                                            [19:18:44] [Server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@168d410f)
                                            [19:18:44] [Server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@168d410f)
                                            [19:18:44] [Server thread/INFO]: Preparing start region for level 0
                                            [19:18:45] [Server thread/INFO]: Changing view distance to 12, from 10
                                            [19:18:46] [Netty Client IO #0/INFO] [FML]: Server protocol version 2
                                            [19:18:46] [Netty IO #1/INFO] [FML]: Client protocol version 2
                                            [19:18:46] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : mcp@9.05,FML@7.10.130.1395,Forge@10.13.3.1395,firstmod.MODID@1.0
                                            [19:18:46] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT
                                            [19:18:46] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER
                                            [19:18:46] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established
                                            [19:18:46] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
                                            [19:18:46] [Server thread/INFO]: Player651[local:E:58fd8099] logged in with entity id 16 at (669.1555709658165, 56.0, -562.5125186402627)
                                            [19:18:46] [Server thread/INFO]: Player651 joined the game
                                            [19:18:49] [Server thread/INFO]: Player651 has just earned the achievement [Taking Inventory]
                                            [19:18:49] [Client thread/INFO]: [CHAT] Player651 has just earned the achievement [Taking Inventory]
                                            [19:18:55] [Server thread/INFO]: Saving and pausing game…
                                            [19:18:55] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
                                            [19:18:55] [Server thread/INFO]: Saving chunks for level 'New World'/Nether
                                            [19:18:55] [Server thread/INFO]: Saving chunks for level 'New World'/The End
                                            [19:18:56] [Server thread/INFO]: Stopping server
                                            [19:18:56] [Server thread/INFO]: Saving players
                                            [19:18:56] [Server thread/INFO]: Saving worlds
                                            [19:18:56] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
                                            [19:18:56] [Server thread/INFO]: Saving chunks for level 'New World'/Nether
                                            [19:18:56] [Server thread/INFO]: Saving chunks for level 'New World'/The End
                                            [19:18:56] [Server thread/INFO] [FML]: Unloading dimension 0
                                            [19:18:56] [Server thread/INFO] [FML]: Unloading dimension -1
                                            [19:18:56] [Server thread/INFO] [FML]: Unloading dimension 1
                                            [19:18:56] [Server thread/INFO] [FML]: Applying holder lookups
                                            [19:18:56] [Server thread/INFO] [FML]: Holder lookups applied
                                            [19:18:57] [Client thread/INFO]: Stopping!
                                            [19:18:57] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
                                            [19:18:57] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down…
                                            [19:18:57] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com
                                            [19:18:57] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
                                            
                                            

                                            :::

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

                                            MINECRAFT FORGE FRANCE © 2024

                                            Powered by NodeBB