Jump to content

Ugdhar

Moderators
  • Posts

    2617
  • Joined

  • Last visited

  • Days Won

    37

Everything posted by Ugdhar

  1. I'm not seeing any errors in that log. And I suppose I should have clarified, if you're working in a development environment, the log will be in the run/logs directory of your project. Also, you still haven't elaborated on "it doesn't work", which I believe people have already told you saying that with no further information is unhelpful.
  2. it's in the logs folder in your minecraft profile directory.
  3. Need more info. What doesn't work? You should always post fml-client-latest.log (in spoiler tags)
  4. java -version at the commandline will tell you what version you have. If it does not say 64-bit somewhere in the output, you have 32 bit.
  5. You have no code in your serializeNBT and deserializeNBT methods. That's where you write/read the stuff you wamt to save.
  6. I believe you need a class that implements ICapabilitySerializable for your capability.
  7. Twilight Forest is open source: https://github.com/TeamTwilight/twilightforest
  8. It kinda looks like you installed your forge server into C:\Windows\System32. That would be a bad idea since it's a system folder, and probab;y doesn't want the server writing files in there. Install it somewhere else and give it a try.
  9. You have to create a launcher profile for it, and if you don't see your forge version on the top of the list of versions, try looking at the bottom as well
  10. I would probably follow these instructions: http://mcforge.readthedocs.io/en/latest/gettingstarted/
  11. I just look at vanilla code and try stuff, and if I get stuck post here for help.
  12. Just start with a 32x32 image, why start at 8x8 and then try to upscale it? *edit: https://minecraft.gamepedia.com/Tutorials/Creating_a_resource_pack
  13. Your modid is 11111114654g but your package setup is calling it tutorial.
  14. When you get an error, search through the log for the words "caused by", and read all those lines, not just the first one. A lot of times the real problem is a few errors in.
  15. Please do, as the error message that you typed indicates you are making typos on the commandline.
  16. Make sure you are using Java 8 and not Java 9. How exactly did you try installing it? What happened when you tried? Did the installer generate a log file? It should have, post it here in spoiler tags (the eyeball button)
  17. I believe at this point it requires java 8, but I know it does not yet support java 9
  18. Honestly not sure, from what I understand most stuff happens on a single thread, with a few things (networking I think for one) happening on a different thread.
  19. You need to update to get support here, 1.7.10 is no longer supported.
  20. Start small, a simple block, a simple item. You sound as if you know what you are doing in a development sense, so when you run into issues, come back here with a github repo link and a post/link of your fml-client-latest.log. Important to know how minecraft as well as forge works, i.e. blocks and items are singletons, so there is only 1 instance of their class that exists within the game, "items" that are in the world are Entities, in an inventory they are ItemStacks, client side vs server side. Honestly, I've never seen any tutorials (especially videos) that were 100% "good". The forge docs give the bare minimum info (although it's much more informative once you get going), and the majority of the tutorials/videos are "here, type this code to do this. It works." I always took what I got from them and then combed through the forums for "authoritative" ways to do it (or to confirm what I found was legit/the right way). Inspecting the vanilla sources is a good way to start doing things as well. Some of the links I have bookmarked, more for reference as opposed to straight up tutorial: I liked how this guy setup his item/block registration: http://www.minecraftforge.net/forum/topic/49497-1112-is-using-registryevent-this-way-ok/#comment-249433 More stuff on registering stuff: http://www.minecraftforge.net/forum/topic/58997-112-registering-blocks-and-itemblocks-the-new-way/ TheGreyGhosts Minecraft By Example repo: https://github.com/TheGreyGhost/MinecraftByExample Draco18s Reasonable Realism repo: https://github.com/Draco18s/ReasonableRealism Shadowfacts Tutorials: https://shadowfacts.net/tutorials/ diesieben07s common problems/caveats thread: http://www.minecraftforge.net/forum/topic/61757-common-issues-and-recommendations/#comment-289566 Hope this helps, and definitely if you know how to program, when you run into issues, come here with a link to your code, and either a link or post your fml-client-latest.log, and you'll more than likely get help. The guys on here know their minecraft forge, they just don't have the time or inclination to teach kids java for free
  21. You really should create your own thread, because even though you may think it's the same problem, a lot of times it is not, and then you've gone and hijacked someone else's thread.
  22. http://mcforge.readthedocs.io/en/latest/datastorage/capabilities/ Without ever having made a fluid tank myself, I'm going to guess that you create your block/item and attach an IFluidHandler capability to it, which will provide methods to manage the input/output of fluid and the fluid storage. Make a go at it, post your code to github, and if you run into issues, come back posting the logs and link to code.
  23. Yup, looks good to me!
  24. tld is top level domain, i.e. com, net, org, etc.
×
×
  • Create New...

Important Information

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