MFF

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

    Texture Sapling inexistantes

    Planifier Épinglé Verrouillé Déplacé Résolu 1.7.x
    1.7.x
    29 Messages 9 Publieurs 6.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.
    • zery59Z Hors-ligne
      zery59
      dernière édition par

      Avec les func, je comprends rien 😮

      Joueur PC Master Race :D
      Config : MSI B85-G43 GAMING - Intel Core i5 4460 @3.2GHz - be Quiet! Pure Rock - 8 Go DDR3 CAS 9 - Saegate SSHD 1 To - Zotac GTX 960 - Cooler Master G550M - Creative Sound Blaster Z - Logitech G230 - Razer DeathAdder Chroma - BlueStork KEYZ#1 (Azerty) - Zalman Z11+ - Asus VE247H

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

        j’ai aucune érreur dans la console, et les paramètre j’les connais pas du coup j’peux pas les renommer

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

          La texture doit être avec celles des items normalement (enfin je crois)

          Moddeur à la retraite et développeur de trucs en Java.

          J'aide les gens comme je peux, alors si mon message v…

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

            bah il me ferait un “Texture Not Found” dans la console non ?
            mais j’vais tester


            Edit du code :

            package net.KSH.mod.WO.Blocks;
            
            import java.util.List;
            import java.util.Random;
            
            import net.KSH.mod.Main;
            import net.KSH.mod.WO.aezaria.WorldGenerators.WorldGenAezaNormalTree;
            import net.KSH.mod.WO.aezaria.WorldGenerators.WorldGenAezaPurpleTree;
            import net.minecraft.block.Block;
            import net.minecraft.block.BlockBush;
            import net.minecraft.block.IGrowable;
            import net.minecraft.client.renderer.texture.IIconRegister;
            import net.minecraft.creativetab.CreativeTabs;
            import net.minecraft.init.Blocks;
            import net.minecraft.item.Item;
            import net.minecraft.item.ItemStack;
            import net.minecraft.util.IIcon;
            import net.minecraft.util.MathHelper;
            import net.minecraft.world.World;
            import net.minecraft.world.gen.feature.WorldGenBigTree;
            import net.minecraft.world.gen.feature.WorldGenCanopyTree;
            import net.minecraft.world.gen.feature.WorldGenForest;
            import net.minecraft.world.gen.feature.WorldGenMegaJungle;
            import net.minecraft.world.gen.feature.WorldGenMegaPineTree;
            import net.minecraft.world.gen.feature.WorldGenSavannaTree;
            import net.minecraft.world.gen.feature.WorldGenTaiga2;
            import net.minecraft.world.gen.feature.WorldGenTrees;
            import net.minecraft.world.gen.feature.WorldGenerator;
            import cpw.mods.fml.relauncher.Side;
            import cpw.mods.fml.relauncher.SideOnly;
            
            public class BlockAezaSapling extends CustomBlockBush implements IGrowable
            {
            @SideOnly(Side.CLIENT)
            private IIcon IIconBlock;
            private static final String __OBFID = "CL_00000305";
            
            protected BlockAezaSapling()
            {
            float f = 0.4F;
            this.setBlockBounds(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, f * 2.0F, 0.5F + f);
            this.setCreativeTab(Main.WO);
            this.setBlockName("aezasapling");
            this.setBlockTextureName("worldorigins:sapling_aeza");
            }
            
            public void updateTick(World world, int PosX, int PosY, int PosZ, Random random)
            {
            if (!world.isRemote)
            {
            super.updateTick(world, PosX, PosY, PosZ, random);
            
            if (world.getBlockLightValue(PosX, PosY + 1, PosZ) >= 9 && random.nextInt(7) == 0)
            {
            this.func_149879_c(world, PosX, PosY, PosZ, random);
            }
            }
            }
            
            @SideOnly(Side.CLIENT)
            public IIcon getIcon(int p_149691_1_, int p_149691_2_)
            {
            return this.IIconBlock;
            }
            
            public void func_149879_c(World world, int PosX, int PosY, int PosZ, Random random)
            {
            int l = world.getBlockMetadata(PosX, PosY, PosZ);
            
            if ((l & 8) == 0)
            {
            world.setBlockMetadataWithNotify(PosX, PosY, PosZ, l | 8, 4);
            }
            else
            {
            this.func_149878_d(world, PosX, PosY, PosZ, random);;
            }
            }
            
            public void func_149878_d(World world, int PosX, int PosY, int PosZ, Random random)
            {
            if (!net.minecraftforge.event.terraingen.TerrainGen.saplingGrowTree(world, random, PosX, PosY, PosZ)) return;
            int l = world.getBlockMetadata(PosX, PosY, PosZ) & 7;
            Object object = random.nextInt(10) == 0 ? new WorldGenBigTree(true) : new WorldGenTrees(true);
            int i1 = 0;
            int j1 = 0;
            boolean flag = false;
            object = new WorldGenAezaNormalTree(true);
            ((WorldGenerator)object).generate(world, random, PosX + i1, PosY, PosZ + j1);
            
            }
            
            @SideOnly(Side.CLIENT)
            public void registerBlockIcons(IIconRegister IIconRegisterer)
            {
            IIconRegisterer.registerIcon(this.textureName);
            
            }
            
            public boolean func_149851_a(World p_149851_1_, int p_149851_2_, int p_149851_3_, int p_149851_4_, boolean p_149851_5_)
            {
            return false;
            }
            
            public boolean func_149852_a(World p_149852_1_, Random p_149852_2_, int p_149852_3_, int p_149852_4_, int p_149852_5_)
            {
            return (double)p_149852_1_.rand.nextFloat() < 0.45D;
            }
            
            public void func_149853_b(World p_149853_1_, Random p_149853_2_, int p_149853_3_, int p_149853_4_, int p_149853_5_)
            {
            this.func_149879_c(p_149853_1_, p_149853_3_, p_149853_4_, p_149853_5_, p_149853_2_);
            }
            }
            

            et effectivement mettre la texture dans les items n’as rien changé

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

              nan, il utillise la texture du blocs peux-tu faire un copier coller de l’erreur de la texture not found ?

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

                Le soucis c’est que j’ai pas d’erreur

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

                  @‘Kushhh’:

                  Le soucis c’est que j’ai pas d’erreur

                  Si une texture est non présente tu doit avoir une erreur.

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

                    J’en ai pas justement et la c’est louche !

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

                      @‘Kushhh’:

                      J’en ai pas justement et la c’est louche !

                      Tu peux envoyer toute la console ? du moment ou tu lance au moment ou le jeu est lancer ?

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

                        Je donnerais ça quand je rentrerais chez moi
                        🙂
                        Les seuls texture not found que j’ai sont des blocks, qui n’ont pas de texture

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

                          Bah les saplings c’est des blocs xD

                          Si je t'ai aidé, n'hésites pas à mettre un point de réputation positif !
                          Si tu m'as aidé, je n'hésiterais pas à t'en donner à mon tour !

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

                            @‘AlphaSwittleTeam’:

                            Bah les saplings c’est des blocs xD

                            Moi je veux juste la console car je suis sur qui le problème viens pas du code que j’ai même pas regarder avec tous ses paramètre pas renommer ^^.

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

                              Si tu ne connais pas la signification des fonctions func_*****, je me demande comment tu peux coder ton mod.
                              Si tu fais de la surcharge, prend au moins la peine de commenter ton code avant d’entrer dans la fonction pour lui donner un nom plus explicite et expliquer ce qu’elle fait.

                              Pourquoi as tu décidés d’appeler ton Icon : field_150201_a ?
                              " private static final String __OBFID = “CL_00000305”;" est ce que tu sais vraiment a quoi ça sert ?

                              Tu as des CustomBlockBush qui ne sont pas growable ?

                              Pour ton problème c’est évident qu’il n’a rien a voir avec ce que je viens de te dire.
                              Je n’ai pas la réponse a ton problème, je n’ai jamais créé de bloc pour l’instant.
                              Mais si tu veux de l’aide d’autre personne, commence par coder proprement 😉
                              On y voit rien dans ton bordel.

                              –------------------------------------------------------------------------------------
                              Si tu trouves mon intervention pertinente, n'hésite pas a m…

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

                                sinon la console :

                                [18:28:51] [main/INFO] [GradleStart]: username: Pl4SmA
                                [18:28:51] [main/INFO] [GradleStart]: Extra: []
                                [18:28:51] [main/INFO] [GradleStart]: Running with arguments: [–userProperties, {}, --username, Pl4SmA, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --accessToken, FML, --assetIndex, 1.7.10, --assetsDir, D:/Users/Kushhh/.gradle/caches/minecraft/assets, --version, 1.7.10]
                                [18:28:51] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
                                [18:28:51] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
                                [18:28:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
                                [18:28:51] [main/INFO] [FML]: Forge Mod Loader version 7.10.11.1177 for Minecraft 1.7.10 loading
                                [18:28:51] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_60, running on Windows 7:amd64:6.1, installed at D:\Program Files\Java\jre7
                                [18:28:51] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
                                [18:28:51] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                [18:28:51] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
                                [18:28:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                [18:28:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                                [18:28:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                                [18:28:51] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
                                [18:28:52] [main/ERROR] [FML]: The minecraft jar file:/D:/Users/Kushhh/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.0.1177/forgeSrc-1.7.10-10.13.0.1177.jar!/net/minecraft/client/ClientBrandRetriever.class appears to be corrupt! There has been CRITICAL TAMPERING WITH MINECRAFT, it is highly unlikely minecraft will work! STOP NOW, get a clean copy and try again!
                                [18:28:52] [main/ERROR] [FML]: FML has been ordered to ignore the invalid or missing minecraft certificate. This is very likely to cause a problem!
                                [18:28:52] [main/ERROR] [FML]: Technical information: ClientBrandRetriever was at jar:file:/D:/Users/Kushhh/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.0.1177/forgeSrc-1.7.10-10.13.0.1177.jar!/net/minecraft/client/ClientBrandRetriever.class, there were 0 certificates for it
                                [18:28:52] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
                                [18:28:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                                [18:28:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
                                [18:28:52] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
                                [18:28:53] [main/INFO]: Setting user: Pl4SmA
                                [18:28:53] [Client thread/INFO]: LWJGL Version: 2.9.1
                                [18:28:54] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
                                [18:28:54] [Client thread/INFO] [FML]: MinecraftForge v10.13.0.1177 Initialized
                                [18:28:54] [Client thread/INFO] [FML]: Replaced 182 ore recipies
                                [18:28:54] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
                                [18:28:54] [Client thread/INFO] [FML]: Searching D:\Modding\Minecraft\eclipse\mods for mods
                                [18:28:54] [Client thread/INFO] [WorldOrigins]: Mod WorldOrigins is missing the required element 'name'. Substituting WorldOrigins
                                [18:28:54] [Client thread/ERROR] [FML]: FML has detected a mod that is using a package name based on 'net.minecraft.src' : net.minecraft.src.FMLRenderAccessLibrary. This is generally a severe programming error. There should be no mod code in the minecraft namespace. MOVE YOUR MOD! If you're in eclipse, select your source code and 'refactor' it into a new package. Go on. DO IT NOW!
                                [18:28:55] [Client thread/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
                                [18:28:56] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Better World Generation 4, FMLFileResourcePack:WorldOrigins
                                [18:28:56] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: %s in %s
                                [18:28:56] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: %s in %s
                                [18:28:56] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
                                [18:28:56] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations
                                [18:28:56] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
                                [18:28:56] [Client thread/INFO] [FML]: Applying holder lookups
                                [18:28:56] [Client thread/INFO] [FML]: Holder lookups applied
                                
                                Starting up SoundSystem…
                                Initializing LWJGL OpenAL
                                (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
                                OpenAL initialized.
                                
                                [18:28:56] [Sound Library Loader/INFO]: Sound engine started
                                [18:28:57] [Client thread/ERROR]: Using missing texture, unable to load worldorigins:textures/blocks/nontexturecuzidontcare.png
                                java.io.FileNotFoundException: worldorigins:textures/blocks/nontexturecuzidontcare.png
                                at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?]
                                at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[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:592) [Minecraft.class:?]
                                at net.minecraft.client.Minecraft.run(Minecraft.java:941) [Minecraft.class:?]
                                at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
                                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_60]
                                at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60]
                                at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60]
                                at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_60]
                                at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]
                                at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]
                                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_60]
                                at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60]
                                at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60]
                                at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_60]
                                at GradleStart.bounce(GradleStart.java:95) [start/:?]
                                at GradleStart.startClient(GradleStart.java:88) [start/:?]
                                at GradleStart.main(GradleStart.java:66) [start/:?]
                                [18:28:57] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
                                [18:28:57] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/items/MISSING_ICON_ITEM_4096_booklearn.png
                                java.io.FileNotFoundException: minecraft:textures/items/MISSING_ICON_ITEM_4096_booklearn.png
                                at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?]
                                at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[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:593) [Minecraft.class:?]
                                at net.minecraft.client.Minecraft.run(Minecraft.java:941) [Minecraft.class:?]
                                at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
                                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_60]
                                at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60]
                                at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60]
                                at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_60]
                                at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]
                                at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]
                                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_60]
                                at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60]
                                at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60]
                                at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_60]
                                at GradleStart.bounce(GradleStart.java:95) [start/:?]
                                at GradleStart.startClient(GradleStart.java:88) [start/:?]
                                at GradleStart.main(GradleStart.java:66) [start/:?]
                                [18:28:57] [Client thread/INFO]: Created: 256x256 textures/items-atlas
                                ClientProxy Initialized.
                                [18:28:57] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods
                                [18:28:57] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Better World Generation 4, FMLFileResourcePack:WorldOrigins
                                [18:28:57] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: %s in %s
                                [18:28:57] [Client thread/WARN]: ResourcePack: ignored non-lowercase namespace: %s in %s
                                [18:28:57] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/items/MISSING_ICON_ITEM_4096_booklearn.png
                                java.io.FileNotFoundException: minecraft:textures/items/MISSING_ICON_ITEM_4096_booklearn.png
                                at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?]
                                at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[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:653) [Minecraft.class:?]
                                at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?]
                                at net.minecraft.client.Minecraft.startGame(Minecraft.java:596) [Minecraft.class:?]
                                at net.minecraft.client.Minecraft.run(Minecraft.java:941) [Minecraft.class:?]
                                at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
                                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_60]
                                at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60]
                                at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60]
                                at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_60]
                                at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]
                                at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]
                                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_60]
                                at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60]
                                at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60]
                                at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_60]
                                at GradleStart.bounce(GradleStart.java:95) [start/:?]
                                at GradleStart.startClient(GradleStart.java:88) [start/:?]
                                at GradleStart.main(GradleStart.java:66) [start/:?]
                                [18:28:57] [Client thread/INFO]: Created: 256x256 textures/items-atlas
                                [18:28:57] [Client thread/ERROR]: Using missing texture, unable to load worldorigins:textures/blocks/nontexturecuzidontcare.png
                                java.io.FileNotFoundException: worldorigins:textures/blocks/nontexturecuzidontcare.png
                                at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?]
                                at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[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:653) [Minecraft.class:?]
                                at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?]
                                at net.minecraft.client.Minecraft.startGame(Minecraft.java:596) [Minecraft.class:?]
                                at net.minecraft.client.Minecraft.run(Minecraft.java:941) [Minecraft.class:?]
                                at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
                                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_60]
                                at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60]
                                at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60]
                                at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_60]
                                at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]
                                at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]
                                at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_60]
                                at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60]
                                at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_60]
                                at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_60]
                                at GradleStart.bounce(GradleStart.java:95) [start/:?]
                                at GradleStart.startClient(GradleStart.java:88) [start/:?]
                                at GradleStart.main(GradleStart.java:66) [start/:?]
                                [18:28:57] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
                                
                                SoundSystem shutting down…
                                Author: Paul Lamb, www.paulscode.com
                                
                                Starting up SoundSystem...
                                Initializing LWJGL OpenAL
                                (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
                                OpenAL initialized.
                                
                                [18:28:58] [Sound Library Loader/INFO]: Sound engine started
                                
                                
                                1 réponse Dernière réponse Répondre Citer 0
                                • kevin_68K Hors-ligne
                                  kevin_68 Moddeurs confirmés
                                  dernière édition par

                                  Vérifie le nom de la texture dans le dossier textures/blocks/
                                  ça doit être “sapling_aeza.png”


                                  Mettez à jours vers la dernière version stable (1.8.9 voir même…

                                  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 alors :
                                    private static final String __OBFID = “CL_00000305”;
                                    ça tu l’enlève, ça va créer des problèmes d’obfucations.

                                    Enlève aussi :
                                    @SideOnly(Side.CLIENT)
                                    private IIcon field_150201_a;

                                    @SideOnly(Side.CLIENT)
                                    public void registerBlockIcons(IIconRegister p_149651_1_)
                                    {
                                    p_149651_1_.registerIcon(this.textureName);

                                    }
                                    Et à la place de :
                                    @SideOnly(Side.CLIENT)
                                    public IIcon getIcon(int p_149691_1_, int p_149691_2_)
                                    { //p_149691_1_ != 1 && p_149691_1_ != 0 ? this.blockIcon :
                                    return this.field_150201_a;
                                    }
                                    Mets :
                                    @SideOnly(Side.CLIENT)
                                    public IIcon getIcon(int side, int medata)
                                    {
                                    return this.blockIcon;
                                    }
                                    Et ensuite dans le constructeur mets :
                                    .setTextureName(“modid:nom de ta texture”);

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

                                      bon je vois pas d’ou viens le problème, le nom de la texture est bon, j’ai fait les modif que robin m’as conseillée mais toujours ces P****** de carré noir et roses …

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

                                        tu peux m’envoyer ton code (src) par MP ?

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

                                          j’peux te filer mon github ?

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

                                            Je te mets un 0/20 en respect de la convention JAVA.
                                            Retourne voir les tutoriels du forum + retourne apprendre les bases de Java

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

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

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

                                            MINECRAFT FORGE FRANCE © 2024

                                            Powered by NodeBB