Jump to content

Cadiboo

Members
  • Posts

    3624
  • Joined

  • Last visited

  • Days Won

    58

Everything posted by Cadiboo

  1. ^ This would allow mods to be added and removed without restarting the game
  2. What draco18s said as well as You can’t control the order of when they are instantiated. This poses a problem for items with creative tabs, and creative tabs with item icons, either the item will have a null creative tab, or the creative tab will have a null item, and you can’t control which one it is. Also, you should use @ObjectHolder so people can override your objects
  3. Edit the original post and add “[SOLVED] “ to the title
  4. You could also use GLStateManager.color(r, g, b); remember to reset it to white afterwards though!
  5. If you know any other Object Oriented Programming already, it won’t be impossible to go straight into modding, and all you really need is a basic java tutorial. It shouldn’t take very long at all to learn java, and that time is definitely not “wasted”
  6. Wait what why? How does that have anything to do with what I said?
  7. Don’t use ITileEntityProvider, it’s legacy Minecraft code. Just override hasTileEntity(IBlockState) and getTileEntity in your block class
  8. I believe it’s the “render distance” + 2, I could be wrong as I can’t remember where I got this information from though
  9. Can you explain what those two tasks do? I have very minimal gradle experience
  10. Your resource location shouldn’t contain “.json” and you should make a resourcelocation and then call toString() on it to both protect yourself from future changes to the resource location format and to make sure that you don’t get a problem like using uppercase names
  11. Can you mark your topic as solved and post your final solution for future people please?
  12. Sorry we don't support 1.7.10 on this forum anymore due to its age (4+ years old). We simply don't know how to help you anymore. You can go to the Minecraft Forum where I think that they still still support older versions, or update to a modern version of Minecraft (the latest version or the one before it) to receive support on this forum.
  13. Thanks @V0idWa1k3r, that helped a bit! The solution was to add to my build.gradle file //exclude class jar { sourceSets { main { java { exclude '**/ModWritingUtil.java' } } } } //exclude debug folder/package jar { sourceSets { main { java { exclude '**/debug/**' } } } manifest { attributes 'FMLAT': 'renderchunkrebuildchunkhooks_at.cfg' attributes 'FMLCorePlugin': 'cadiboo.renderchunkrebuildchunkhooks.loadingplugin.RenderChunkRebuildChunkHooksLoadingPlugin1_12' attributes 'FMLCorePlugin': 'cadiboo.renderchunkrebuildchunkhooks.loadingplugin.RenderChunkRebuildChunkHooksLoadingPlugin1_12_1' attributes 'FMLCorePlugin': 'cadiboo.renderchunkrebuildchunkhooks.loadingplugin.RenderChunkRebuildChunkHooksLoadingPlugin1_12_2' attributes 'FMLCorePluginContainsMod': 'true' } }
  14. BetterFoliage just released a new version https://minecraft.curseforge.com/projects/better-foliage/files/2631951
  15. You might want to try the DNS tech pack from the ATLauncher, its a massive tech based modpack that existed for ages (6+ years) and is always updated to the latest minecraft version. I don't think it has Galacticraft, but you could easily add it
  16. Also Galacticraft seems to have broken resource namespaces in their object registration, Are you using the latest version of it?
  17. The people in the video were playing a big (private, custom) modpack and you've only installed 3 of those mods From that video someone suggests this: Click this link and that comment will be the top post if you want to read more
  18. Your logs are found in your .minecraft/logs/ folder, please post them in a spoiler (click the eye icon while posting) or using PasteBin or GitHub Gist https://minecraft.gamepedia.com/.minecraft#Locating_.minecraft
  19. https://www.youtube.com/watch?v=2SJ3HoJ823Y I understand what your trying to do, I'm trying to establish what the problem is. So, can you can /give yourself items AND they appear in the creative tab? Does the mod show up in both the mods button on the Main Menu and in the Mods button in the Ingame Menu? What happens when you press the "o" key when playing? What happens when you press Control and "o" while playing? Can you please post your logs?
  20. have you tried giving any modded items to yourself with /give? Or looked in your creative inventory for them?
  21. You might want to read this, it might be helpful if you get another crash in the future. Edit: Wrong link but I’ve forgotten what it’s meant to be. Still a useful link tho
  22. You might want to read this, it will be very helpful if you ever get another crash
  23. Are you running the forge launcher profile? Where did you download the forge installer from (url)? Do you have any logs?
  24. Why would you do this on exit. Hey, the game just fatally crashed - seems like a good time to send a request over the internet and wait for a response...
  25. https://mcforge.readthedocs.io/en/latest/concepts/sides/ Physical Side - Client software application or Server software application Logical Side - Where logic like keystrokes (client) and mob spawning (server) is done. It can be either Server Thread or Client Thread (the Integrated (Physical) Client has both a server and client thread so you can play single player. The Physical Server does not have a client thread.)
×
×
  • Create New...

Important Information

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