Jump to content

Flaghacker

Members
  • Posts

    53
  • Joined

  • Last visited

Everything posted by Flaghacker

  1. Instead of creating this recipe: ./. /// ./. It creates this: ... /.. ... Where / is a stick, and . is nothing.
  2. I'm trying to add a recipe to my mod, using this line of code: GameRegistry.addRecipe(new ItemStack(ModItems.mapleLeaf, 10), " s ", "sss", "s", 's', new ItemStack(Items.stick)); I expect that to create a recipe like this: But that doesn't work. By chance I discovered that it creates this recipe instead: What am I doing wrong here?
  3. *Idea No, that was the problem. Is that marking also stored in Github? Thanks everyone for helping me!
  4. I fixed that, but my item still has to texture . I pushed the change to Github again.
  5. Sorry English is not my native language. Thanks! I'll try that tomorrow because I don't have computer access atm.
  6. Yes, thats what I have as the path... This is my github repository: https://github.com/flaghacker/LetsModReboot
  7. I fixed that bug, but my item is still showing the missing texture. The log says "[19:22:38] [Client thread/ERROR]: Using missing texture, unable to load letsmodreboot:textures/items/mapleLeaf.png", but I think that's the correct path... [spoiler=Full log] [19:22:27] [main/INFO]: Setting user: ForgeDevName [19:22:28] [Client thread/INFO]: LWJGL Version: 2.9.1 [19:22:35] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Lets Mod Reboot [19:22:36] [sound Library Loader/INFO]: Sound engine started [19:22:37] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [19:22:38] [Client thread/ERROR]: Using missing texture, unable to load letsmodreboot:textures/items/mapleLeaf.png java.io.FileNotFoundException: letsmodreboot:textures/items/mapleLeaf.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: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_67] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_67] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_67] at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_67] 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_67] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_67] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_67] at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_67] at GradleStart.bounce(GradleStart.java:107) [start/:?] at GradleStart.startClient(GradleStart.java:100) [start/:?] at GradleStart.main(GradleStart.java:55) [start/:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_67] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_67] at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_67] at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134) [idea_rt.jar:?] [19:22:38] [Client thread/INFO]: Created: 256x256 textures/items-atlas [19:22:38] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Lets Mod Reboot [19:22:38] [Client thread/ERROR]: Using missing texture, unable to load letsmodreboot:textures/items/mapleLeaf.png java.io.FileNotFoundException: letsmodreboot:textures/items/mapleLeaf.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: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_67] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_67] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_67] at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_67] 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_67] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_67] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_67] at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_67] at GradleStart.bounce(GradleStart.java:107) [start/:?] at GradleStart.startClient(GradleStart.java:100) [start/:?] at GradleStart.main(GradleStart.java:55) [start/:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_67] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_67] at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_67] at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134) [idea_rt.jar:?] [19:22:38] [Client thread/INFO]: Created: 256x256 textures/items-atlas [19:22:38] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [19:22:40] [sound Library Loader/INFO]: Sound engine started [19:23:26] [Client thread/INFO]: Stopping! I pushed the change(s) to Github again. EDIT: The name, creative tab and stacksize do work.
  8. I tried that and changed the texture folder name from "texure" to "texture". Now I'm getting this crash report: I pushed the changes to Github. (https://github.com/flaghacker/LetsModReboot).
  9. Do I still have to extend ItemLMRB in my item class? And how do I need to use setUnlocalizedName? If I type that in Idea I get @Override public Item setUnlocalizedName(String p_77655_1_) { return super.setUnlocalizedName(p_77655_1_); }
  10. Sorry, I forgot to give the url to my Github repository: https://github.com/flaghacker/LetsModReboot
  11. I'm following the modding tutorial series from Pahimar, I think I followed everything exactly, I checked his Github repository and the relevant files match (I think) My Item (mapleLeaf) shows the missing texture! The name is correct (as expected at least). Can someone help me?
  12. And what if you update to a new Minecraft version but you want to keep working on the previous one? How you keep them separated?
  13. Thanks, I'll be sure to check it out! The .gradle folder should not be in the Repo. The gradle or .gradle folder(s)? Nvm, I must be blind...
  14. I installed forge and I started it. The this error appears: I read this as "Forge has detected Forge is Missing"... What? Can anyone help me?
  15. I'm using SourceTree now, is this correct? https://github.com/flaghacker/LetsModReboot Why should I be using the terminal?
  16. Now whenever I try do sync my repository, I get this error:
  17. What is the gradle wrapper?
  18. Is this right? https://github.com/flaghacker/LetsModReboot
  19. I have been following Pahimar's modding tutorials; and in one of his first ones he talks about git and github. He never actually explained how you have to push your code to github. Git is installed on the command line. I have cloned my github repository to my computer using git clone. Now I have so code in that folder, how do I put in on github? This is my current mod folder: I think only the src folder is relevant, right? So how do I only push that one to github?
  20. I reinstalled java, but now Idea (my IDE) is error when trying to run the minecraft client: Error:Cannot run program "D:\Program Files\Java\jdk1.8.0_11\bin\java" (in directory "C:\Users\Karel\.IdeaIC13\system\compile-server"): CreateProcess error=2, Het systeem kan het opgegeven bestand niet vinden I can't find a way to tell Idea that java is not installed in "D:\Program Files\Java\jdk1.8.0_11\bin\java", but in "D:\Install\Java\jdk1.7.0_67\bin\java".
  21. I reinstalled java on my computer, and now "gradlew clean" is giving the following error message: ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation. I created a JAVA_HOME environment variable and added both the jdk and jre to the path variable. Typing "java -version" in cmd outputs this: . Can someone help me?
  22. In that selection box I have the options 1.1 to 1.8, witch one should I take?
  23. I'm currently following the let's mod reboot tutorial series from Pahimar, I'm currently at episode 3: I'm using IDEA as my IDE. The problem I'm getting is that my mod isn't being registered. This is my current code: http://pastebin.com/tk56t4ts This is the forge log: http://pastebin.com/BZdJB0Ca This is a screenshot of my package explorer: And my project explorer: I don't know what's going on, can anyone help me? I'd be happy to provide any more needed information.
  24. Do I need to search for another tutorial series or is ScratchForFun not that bad?
  25. About the Package explorer structure, why does it works in this video: ? And where do I have to put my language files?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.