MFF

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

    Problème de chargement de texture

    Planifier Épinglé Verrouillé Déplacé Résolu 1.7.x
    1.7.10
    23 Messages 4 Publieurs 4.2k 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

      C’est peut être l’extends BlockGrass qui cause problème, sur nanotech mod Kévin et moi somme resté sur un extends Block :
      https://github.com/FFMT/nanotech_mod/blob/master/common/fr/mcnanotech/kevin_68/nanotechmod/main/blocks/BlockGrass.java

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

        Je ne peut pas modifier la class BlockGrass je peut rien supprimer ni remplacer

        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 t’ai jamais dit de modifier BlockGrass … c’est ta classe BlockIceGrass que tu dois modifier comme ça.

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

            J’ai changer par ça mais rien du tout :

            package fr.valsoucours.icefreeze;
            
            import java.util.Random;
            
            import net.minecraft.block.Block;
            import net.minecraft.block.material.Material;
            import net.minecraft.client.renderer.texture.IIconRegister;
            import net.minecraft.init.Blocks;
            import net.minecraft.item.Item;
            import net.minecraft.util.IIcon;
            import net.minecraft.world.IBlockAccess;
            import net.minecraft.world.World;
            import net.minecraftforge.common.IPlantable;
            import net.minecraftforge.common.util.ForgeDirection;
            import cpw.mods.fml.relauncher.Side;
            import cpw.mods.fml.relauncher.SideOnly;
            
            public class BlockIceGrass extends Block
            {
            protected BlockIceGrass(Material p_i45394_1_) {
            super(p_i45394_1_);
            // TODO Auto-generated constructor stub
            }
            
            private IIcon iconTop;
            private IIcon iconSnowSide;
            
            public BlockIceGrass()
            {
            super(Material.grass);
            this.setTickRandomly(true);
            this.setHarvestLevel("shovel", 2);
            }
            
            @Override
            public boolean canSustainPlant(IBlockAccess world, int x, int y, int z, ForgeDirection direction, IPlantable plant)
            {
            return true;
            }
            
            @Override
            public void registerBlockIcons(IIconRegister iconregister)
            {
            blockIcon = iconregister.registerIcon(this.getTextureName() + "_side");
            iconTop = iconregister.registerIcon(this.getTextureName() + "_top");
            iconSnowSide = iconregister.registerIcon(this.getTextureName() + "_side_snow");
            }
            
            @SideOnly(Side.CLIENT)
            @Override
            public IIcon getIcon(int side, int metadata)
            {
            return side == 1 ? iconTop : (side == 0 ? Blocks.dirt.getBlockTextureFromSide(side) : this.blockIcon);
            }
            
            @SideOnly(Side.CLIENT)
            @Override
            public IIcon getIcon(IBlockAccess blockaccess, int x, int y, int z, int side)
            {
            if(side == 1)
            {
            return iconTop;
            }
            else if(side == 0)
            {
            return Blocks.dirt.getBlockTextureFromSide(side);
            }
            else
            {
            Material material = blockaccess.getBlock(x, y + 1, z).getMaterial();
            return material != Material.snow && material != Material.craftedSnow ? blockIcon : iconSnowSide;
            }
            }
            
            public void updateTick(World world, int x, int y, int z, Random par5Random)
            {
            if(!world.isRemote)
            {
            if(world.getBlockLightValue(x, y + 1, z) < 4 && world.getBlockLightOpacity(x, y + 1, z) > 2)
            {
            world.setBlock(x, y, z, Blocks.dirt, 0, 3);
            }
            else if(world.getBlockLightValue(x, y + 1, z) >= 9)
            {
            for(int var6 = 0; var6 < 4; ++var6)
            {
            int var7 = x + par5Random.nextInt(3) - 1;
            int var8 = y + par5Random.nextInt(5) - 3;
            int var9 = z + par5Random.nextInt(3) - 1;
            
            if((world.getBlock(var7, var8, var9).equals(Blocks.dirt) && world.getBlockLightValue(var7, var8 + 1, var9) >= 4 && world.getBlockLightOpacity(var7, var8 + 1, var9) <= 2) || (world.getBlock(var7, var8, var9).equals(Blocks.grass) && world.getBlockLightValue(var7, var8 + 1, var9) >= 4 && world.getBlockLightOpacity(var7, var8 + 1, var9) <= 2) || (world.getBlock(var7, var8, var9).equals(Blocks.mycelium) && world.getBlockLightValue(var7, var8 + 1, var9) >= 4 && world.getBlockLightOpacity(var7, var8 + 1, var9) <= 2) || (world.getBlock(var7, var8, var9).equals(Blocks.farmland) && world.getBlockLightValue(var7, var8 + 1, var9) >= 4 && world.getBlockLightOpacity(var7, var8 + 1, var9) <= 2))
            {
            world.setBlock(var7, var8, var9, this, 0, 3);
            }
            }
            }
            }
            }
            
            @Override
            public Item getItemDropped(int metadata, Random random, int par3)
            {
            return Blocks.dirt.getItemDropped(0, random, par3);
            }
            }
            
            1 réponse Dernière réponse Répondre Citer 0
            • robin4002R Hors-ligne
              robin4002 Moddeurs confirmés Rédacteurs Administrateurs
              dernière édition par

              Tu as toujours la même erreur dans les logs ?

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

                Voici mes logs :

                :::
                [19:28:51] [main/INFO] [GradleStart]: Extra: []
                [19:28:51] [main/INFO] [GradleStart]: Running with arguments: [–userProperties, {}, --accessToken, {REDACTED}, --assetIndex, 1.7.10, --assetsDir, C:/Users/theMCcraft/.gradle/caches/minecraft/assets, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker]
                [19:28:51] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
                [19:28:51] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
                [19:28:51] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker
                [19:28:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
                [19:28:52] [main/INFO] [FML]: Forge Mod Loader version 7.10.85.1235 for Minecraft 1.7.10 loading
                [19:28:52] [main/INFO] [FML]: Java is Java HotSpot™ 64-Bit Server VM, version 1.7.0_45, running on Windows 8:amd64:6.2, installed at C:\Program Files\Java\jre7
                [19:28:52] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
                [19:28:52] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker
                [19:28:52] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin
                [19:28:52] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
                [19:28:52] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                [19:28:52] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
                [19:28:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                [19:28:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                [19:28:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                [19:28:55] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
                [19:29:22] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
                [19:29:22] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                [19:29:22] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
                [19:29:26] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker
                [19:29:26] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker
                [19:29:27] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
                [19:29:35] [main/INFO]: Setting user: Player906
                [19:29:42] [Client thread/INFO]: LWJGL Version: 2.9.1
                [19:29:47] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
                [19:29:47] [Client thread/INFO] [FML]: MinecraftForge v10.13.2.1235 Initialized
                [19:29:47] [Client thread/INFO] [FML]: Replaced 182 ore recipies
                [19:29:47] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
                [19:29:49] [Client thread/INFO] [FML]: Searching C:\Users\theMCcraft\Desktop\Eclipes Dev’s\Forge\1.7.10\mods for mods
                [19:29:49] [Client thread/INFO] [icefreezemod]: Mod icefreezemod is missing the required element ‘name’. Substituting icefreezemod
                [19:30:06] [Client thread/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
                [19:30:08] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, examplemod, icefreezemod] at CLIENT
                [19:30:08] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, examplemod, icefreezemod] at SERVER
                [19:30:11] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Example Mod, FMLFileResourcePack:icefreezemod
                [19:30:11] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
                [19:30:11] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations
                [19:30:12] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
                [19:30:12] [Client thread/INFO] [FML]: Applying holder lookups
                [19:30:12] [Client thread/INFO] [FML]: Holder lookups applied
                [19:30:13] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
                [19:30:13] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem…
                [19:30:14] [Thread-6/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
                [19:30:14] [Thread-6/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
                [19:30:14] [Thread-6/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
                [19:30:15] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
                [19:30:15] [Sound Library Loader/INFO]: Sound engine started
                [19:30:44] [Client thread/ERROR]: Using missing texture, unable to load icefreezemod:textures/blocks/icegrass_side_snow.png
                java.io.FileNotFoundException: icefreezemod:textures/blocks/icegrass_side_snow.png
                at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:71) ~[SimpleReloadableResourceManager.class:?]
                at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]
                at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.loadTickableTexture(TextureManager.java:71) [TextureManager.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.loadTextureMap(TextureManager.java:58) [TextureManager.class:?]
                at net.minecraft.client.Minecraft.startGame(Minecraft.java:582) [Minecraft.class:?]
                at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?]
                at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_45]
                at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_45]
                at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_45]
                at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_45]
                at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
                at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
                at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]
                at GradleStart.main(GradleStart.java:45) [start/:?]
                [19:30:44] [Client thread/ERROR]: Using missing texture, unable to load icefreezemod:textures/blocks/icegrass_side.png
                java.io.FileNotFoundException: icefreezemod:textures/blocks/icegrass_side.png
                at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:71) ~[SimpleReloadableResourceManager.class:?]
                at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]
                at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.loadTickableTexture(TextureManager.java:71) [TextureManager.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.loadTextureMap(TextureManager.java:58) [TextureManager.class:?]
                at net.minecraft.client.Minecraft.startGame(Minecraft.java:582) [Minecraft.class:?]
                at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?]
                at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_45]
                at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_45]
                at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_45]
                at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_45]
                at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
                at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
                at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]
                at GradleStart.main(GradleStart.java:45) [start/:?]
                [19:30:44] [Client thread/ERROR]: Using missing texture, unable to load icefreezemod:textures/blocks/icegrass_top.png
                java.io.FileNotFoundException: icefreezemod:textures/blocks/icegrass_top.png
                at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:71) ~[SimpleReloadableResourceManager.class:?]
                at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]
                at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.loadTickableTexture(TextureManager.java:71) [TextureManager.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.loadTextureMap(TextureManager.java:58) [TextureManager.class:?]
                at net.minecraft.client.Minecraft.startGame(Minecraft.java:582) [Minecraft.class:?]
                at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?]
                at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_45]
                at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_45]
                at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_45]
                at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_45]
                at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
                at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
                at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]
                at GradleStart.main(GradleStart.java:45) [start/:?]
                [19:30:44] [Client thread/ERROR]: Using missing texture, unable to load icefreezemod:textures/blocks/icestone.png
                java.io.FileNotFoundException: icefreezemod:textures/blocks/icestone.png
                at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:71) ~[SimpleReloadableResourceManager.class:?]
                at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]
                at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.loadTickableTexture(TextureManager.java:71) [TextureManager.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.loadTextureMap(TextureManager.java:58) [TextureManager.class:?]
                at net.minecraft.client.Minecraft.startGame(Minecraft.java:582) [Minecraft.class:?]
                at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?]
                at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_45]
                at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_45]
                at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_45]
                at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_45]
                at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
                at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
                at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]
                at GradleStart.main(GradleStart.java:45) [start/:?]
                [19:30:46] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
                [19:30:47] [Client thread/INFO]: Created: 256x256 textures/items-atlas
                [19:30:47] [Client thread/INFO] [STDOUT]: [com.example.examplemod.ExampleMod:init:18]: DIRT BLOCK >> tile.dirt
                [19:30:49] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods
                [19:30:49] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Example Mod, FMLFileResourcePack:icefreezemod
                [19:30:50] [Client thread/INFO]: Created: 256x256 textures/items-atlas
                [19:30:50] [Client thread/ERROR]: Using missing texture, unable to load icefreezemod:textures/blocks/icegrass_side_snow.png
                java.io.FileNotFoundException: icefreezemod:textures/blocks/icegrass_side_snow.png
                at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:71) ~[SimpleReloadableResourceManager.class:?]
                at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]
                at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?]
                at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [SimpleReloadableResourceManager.class:?]
                at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [SimpleReloadableResourceManager.class:?]
                at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?]
                at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?]
                at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?]
                at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?]
                at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_45]
                at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_45]
                at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_45]
                at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_45]
                at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
                at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
                at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]
                at GradleStart.main(GradleStart.java:45) [start/:?]
                [19:30:50] [Client thread/ERROR]: Using missing texture, unable to load icefreezemod:textures/blocks/icegrass_side.png
                java.io.FileNotFoundException: icefreezemod:textures/blocks/icegrass_side.png
                at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:71) ~[SimpleReloadableResourceManager.class:?]
                at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]
                at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?]
                at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [SimpleReloadableResourceManager.class:?]
                at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [SimpleReloadableResourceManager.class:?]
                at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?]
                at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?]
                at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?]
                at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?]
                at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_45]
                at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_45]
                at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_45]
                at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_45]
                at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
                at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
                at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]
                at GradleStart.main(GradleStart.java:45) [start/:?]
                [19:30:50] [Client thread/ERROR]: Using missing texture, unable to load icefreezemod:textures/blocks/icegrass_top.png
                java.io.FileNotFoundException: icefreezemod:textures/blocks/icegrass_top.png
                at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:71) ~[SimpleReloadableResourceManager.class:?]
                at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]
                at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?]
                at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [SimpleReloadableResourceManager.class:?]
                at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [SimpleReloadableResourceManager.class:?]
                at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?]
                at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?]
                at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?]
                at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?]
                at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_45]
                at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_45]
                at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_45]
                at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_45]
                at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
                at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
                at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]
                at GradleStart.main(GradleStart.java:45) [start/:?]
                [19:30:50] [Client thread/ERROR]: Using missing texture, unable to load icefreezemod:textures/blocks/icestone.png
                java.io.FileNotFoundException: icefreezemod:textures/blocks/icestone.png
                at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:71) ~[SimpleReloadableResourceManager.class:?]
                at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]
                at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]
                at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?]
                at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [SimpleReloadableResourceManager.class:?]
                at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [SimpleReloadableResourceManager.class:?]
                at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?]
                at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?]
                at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?]
                at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?]
                at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_45]
                at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_45]
                at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_45]
                at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_45]
                at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
                at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
                at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]
                at GradleStart.main(GradleStart.java:45) [start/:?]
                [19:30:51] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
                [19:30:51] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
                [19:30:51] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down…
                [19:30:51] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com
                [19:30:51] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
                [19:30:51] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
                [19:30:51] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem…
                [19:30:52] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
                [19:30:52] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
                [19:30:52] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
                [19:30:52] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
                [19:30:52] [Sound Library Loader/INFO]: Sound engine started
                [19:31:27] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10
                [19:31:27] [Server thread/INFO]: Generating keypair
                [19:31:29] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance
                [19:31:30] [Server thread/INFO] [FML]: Applying holder lookups
                [19:31:30] [Server thread/INFO] [FML]: Holder lookups applied
                [19:31:32] [Server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@373fd)
                [19:31:32] [Server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@373fd)
                [19:31:33] [Server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@373fd)
                [19:31:33] [Server thread/INFO]: Preparing start region for level 0
                [19:31:34] [Server thread/INFO]: Preparing spawn area: 1%
                [19:31:35] [Server thread/INFO]: Preparing spawn area: 1%
                [19:31:36] [Server thread/INFO]: Preparing spawn area: 15%
                [19:31:37] [Server thread/INFO]: Preparing spawn area: 33%
                [19:31:38] [Server thread/INFO]: Preparing spawn area: 52%
                [19:31:40] [Server thread/INFO]: Preparing spawn area: 76%
                [19:31:46] [Server thread/INFO]: Changing view distance to 12, from 10
                [19:31:46] [Server thread/WARN]: Can’t keep up! Did the system time change, or is the server overloaded? Running 5708ms behind, skipping 114 tick(s)
                [19:31:46] [Netty Client IO #0/INFO] [FML]: Server protocol version 1
                [19:31:46] [Netty IO #1/INFO] [FML]: Client protocol version 1
                [19:31:46] [Netty IO #1/INFO] [FML]: Client attempting to join with 5 mods : mcp@9.05,FML@7.10.85.1235,icefreezemod@1.0,examplemod@1.0,Forge@10.13.2.1235
                [19:31:46] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT
                [19:31:46] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER
                [19:31:47] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established
                [19:31:47] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
                [19:31:47] [Server thread/INFO]: Player906[local:E:9a591d6b] logged in with entity id 355 at (-109.01878391640297, 69.0, 277.46081092569057)
                [19:31:47] [Server thread/INFO]: Player906 joined the game
                [19:31:53] [Server thread/INFO]: Saving and pausing game…
                [19:31:53] [Server thread/INFO]: Saving chunks for level ‘New World’/Overworld
                [19:31:55] [Server thread/INFO]: Saving chunks for level ‘New World’/Nether
                [19:31:55] [Server thread/INFO]: Saving chunks for level ‘New World’/The End
                [19:32:16] [Server thread/INFO]: Saving and pausing game…
                [19:32:16] [Server thread/INFO]: Saving chunks for level ‘New World’/Overworld
                [19:32:16] [Server thread/INFO]: Saving chunks for level ‘New World’/Nether
                [19:32:16] [Server thread/INFO]: Saving chunks for level ‘New World’/The End
                [19:32:17] [Server thread/INFO]: Stopping server
                [19:32:17] [Server thread/INFO]: Saving players
                [19:32:18] [Server thread/INFO]: Saving worlds
                [19:32:18] [Server thread/INFO]: Saving chunks for level ‘New World’/Overworld
                [19:32:18] [Server thread/INFO]: Saving chunks for level ‘New World’/Nether
                [19:32:18] [Server thread/INFO]: Saving chunks for level ‘New World’/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

                  icefreezemod:textures/blocks/icegrass_top.png

                  Bon il y a du progrès, il n’ajoute plus le _side en trop.
                  Sur eclipse dans le dossier src/main/resources, si tu déroules les menu est-ce que tes textures sont présentes ?

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

                    Non je n’ai que mcmod.info

                    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

                      Bon voila le problème. Essaye de faire f5 avec le dossier sélectionné. Si ce n’est toujours pas bon, tu as mit les textures au mauvais endroit.

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

                        Après avoir fait un F5 sa marche enfin 😄 merci beaucoup de m’avoir aidé 😄

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

                        MINECRAFT FORGE FRANCE © 2024

                        Powered by NodeBB