Jump to content

Cadiboo

Members
  • Posts

    3624
  • Joined

  • Last visited

  • Days Won

    58

Everything posted by Cadiboo

  1. The supported versions are the latest stable version and the one before that. So we still support 1.12.2 and 1.11. 1.13.2 isn’t getting a recommended release, so when 1.14 gets finished I’m pretty sure we will only support 1.14 and 1.13 we will support 1.14 and 1.12.2.
  2. Would it be possible to make the installer generated forge profile point to the latest forge version the way that profiles can point to the latest minecraft version or the latest prerelease?
  3. After what I assume was a forum update the search feature is only showing results from the past few days and also not all results that match the criteria from the last few days are shown.
  4. No, move the } down so it’s the last thing and put "logging":{} where it was
  5. Change {"logging":} to "logging":{} and move it up 1 line
  6. Make sure you’ve refreshed your assets folder if you use eclipse and make sure that you’re not accidentally referencing “item” when your models are actually in “items”
  7. You can use .json models with vanilla and .obj or .b3d with Forge. If you want to use anything else you’ll need to write your own model loader
  8. You really don’t need to use an entity though
  9. It’s really, really not. What advantage does the JNI give you? From everything I’ve seen it’s causing you many unnecessary problems without having any benefits at all. I’m guessing that your having problems with obfuscation or are just mixing up your method signatures. You haven’t posted your code so right now there’s nothing we can do except tell you better ways of achieving what you’re trying to do.
  10. Don’t do this. If you have permission from the author you can use Forges Jar-In-Jar system to put baubles inside your mod.
  11. Post the error you get
  12. Points at IntelliJ
  13. Yeah, you would need to send a packet to the server saying that you’re typing then have the server tell other clients that info.
  14. Yeah, only use the JNI when you absolutely need to (i.e. never).
  15. I was assuming that you had updated to 1.13. CreativeTabs were renamed to ItemGroups in 1.13. Saying “an error” doesn’t really give us any information that we can use to help you. *UnlocalisedName -> *TranslationKey MOD_ID should be replaced by an import of your modid from your main class or constants class. I think that I use static imports in my 1.12.2 example mod which is apparently hard for many people so I’ve stopped using them on the 1.13 branch
  16. isSolid is the (new) 1.13.2 equivalent of isOpaqueCube & isOpaqueCubes is now a lot more complicated
  17. I thought that removing items wasn't supported
  18. What mods are you using? Post your logs as described in my signature and the EAQ
  19. don't forget to override isSolid and return false
  20. You're running the game on a Forge version older than the mod you installed requires. Update to a Forge version higher than 2786.
  21. You're running the game on a Forge version older than a mod you installed requires. Update to a Forge version higher than 2786.
  22. Take a look at https://www.minecraftforge.net/forum/topic/69816-classes-not-found-during-runtime/ and https://www.minecraftforge.net/forum/topic/69515-how-to-add-another-mod-to-his-workspace-on-eclipse-a-mod-dependency/?do=findComment&comment=336200
×
×
  • Create New...

Important Information

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