Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Ugdhar

Moderators
  • Joined

  • Last visited

Everything posted by Ugdhar

  1. 1.12 is no longer support on this forum due to age. Please update to a modern version to receive support. More information can be found in the LTS link at the top of every page.
  2. Ugdhar replied to blinky000's topic in Modder Support
    The log files generated when you run through eclipse are in the run/logs folder within your project folder. If you're using debug, I would guess you'd need to check debug.log to see if your note gets printed. I just tested myself using the latest 1.15.2 build, and it worked fine for me. *edit: Not sure if it matters, but I would change the name of your logger so it is not exactly the same as the class name. Make it all caps or something
  3. Ugdhar replied to Beaker's topic in Modder Support
    Reference for shapeless recipe json format: https://minecraft.gamepedia.com/Recipe#crafting_shapeless
  4. Spend time browsing the minecraft sourcecode for things you are interested in trying or how they work. Make good use of google and the search on this forum. I find searching class/method names that I'm working with yields decent results most of the time. Make sure you have a decent grasp on Java, if you are confused by the basics (or even advanced features) of the language, stop to go back and figure them out.
  5. Make sure you read the whole log
  6. I don't use optifine, I would check their website for instructions. My best guess, not using it at all, would be run its installer again and look for an uninstall option. edit: and I would double check [C:\Users\hidve\AppData\Roaming\.minecraft\mods for Optifine, since it says that's where it is.
  7. Brewing recipes can't be made with json at this time. This is a known/open issue, hopefully it gets worked on so ugly hacks don't have to be used to add brewing recipes https://github.com/MinecraftForge/MinecraftForge/issues/5814 In the meantime I found this link with some info on getting around it: https://www.minecraftforge.net/forum/topic/73496-1132-alternative-to-potionbrewingaddmix-solved/
  8. Looks like it is still trying to load Optifine
  9. It appears you have the correct file, but you must have java ( use Java 8 ) installed. If you do, try running Jarfix (google will find it for you), as it appears your system associates .jar files with an archive manager rather than the JVM.
  10. I know you said ignore, but if you'd like any feedback/opinions, Intellij Dark looks best/easiest to read IMO (I am using the dark forum theme).
  11. Using Eclipse, I had to run the eclipse tasks (from the commandline) twice to get it to let me to view sources, both when originally setting up the project and when updating forge/mappings in build.gradle. Otherwise when trying to look up classes and such it would tell me source was not available. No clue why, but like I said, running the tasks once, then opening in eclipse won't let me view sources, close it down, rerun tasks again, and I can view sources. This was using eclipse 2019-12.
  12. Yes, it's part of the minecraft sourcecode that is setup as part of a mod development project. I don't know anything about mcreator, so I cannot help with that in any way.
  13. the entity models are java code, not json. They are in the net.minecraft.client.renderer.entity.model package.
  14. Have you looked at the DefaultBiomeFeatures class to see how vanilla ores get spawned? What exactly have you tried? (post code/links to github) What were the exact results? I haven't tried it yet myself, but looking in the class I mentioned above shows things like public static void addOres(Biome biomeIn) { biomeIn.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, COAL_ORE, 17)).func_227228_a_(Placement.COUNT_RANGE.func_227446_a_(new CountRangeConfig(20, 0, 0, 128)))); biomeIn.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, IRON_ORE, 9)).func_227228_a_(Placement.COUNT_RANGE.func_227446_a_(new CountRangeConfig(20, 0, 0, 64)))); biomeIn.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, GOLD_ORE, 9)).func_227228_a_(Placement.COUNT_RANGE.func_227446_a_(new CountRangeConfig(2, 0, 0, 32)))); biomeIn.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, REDSTONE_ORE, 8)).func_227228_a_(Placement.COUNT_RANGE.func_227446_a_(new CountRangeConfig(8, 0, 0, 16)))); biomeIn.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, DIAMOND_ORE, 8)).func_227228_a_(Placement.COUNT_RANGE.func_227446_a_(new CountRangeConfig(1, 0, 0, 16)))); biomeIn.addFeature(GenerationStage.Decoration.UNDERGROUND_ORES, Feature.ORE.withConfiguration(new OreFeatureConfig(OreFeatureConfig.FillerBlockType.NATURAL_STONE, LAPIS_ORE, 7)).func_227228_a_(Placement.COUNT_DEPTH_AVERAGE.func_227446_a_(new DepthAverageConfig(1, 16, 16)))); } and seems like a good place to start looking
  15. Try deleting the config folder in the run folder of your project, then rerun.
  16. 1.7 is no longer supported on these forums due to age. Please update to a modern version to receive support. See the LTS link at the top of every page for more information.
  17. 1.8 is no longer supported on this forum due to age. Please update to a modern version to receive support. See the LTS link at the top of every page for more information.
  18. Just for grins did you double check the top of the list? On mine, 1.12 is at the bottom, but the 1.15 versions are at the top. Just wanna make sure!
  19. 1.7.10 is no longer supported on this forum due to age. Please update to a modern version to receive support. See the LTS link at the top of every page for more information.
  20. Which launcher are you using? You may have to create your own Installation and choose the new version of forge.
  21. 1.8 is no longer supported on this forum due to age. Please update to a modern version to receive support. More information can be found in the LTS link at the top of every page.
  22. Please post the cmd window output from when you tried this. And your English appears fine so far!
  23. Never download from 9minecraft, they are an illegal repost site. Only ever download forge from files.minecraftforge.net and only download mods from curseforge. If you downloaded from elsewhere, delete the files and redownload from legit sites See https://stopmodreposts.org for more info.
  24. First, rather than resurrect an almost 4 year old thread, you should start your own thread. However, 1.12 is no longer supported due to age, please update to a modern version to receive support. See the LTS link at the top of every page for more information.
  25. 1.12 is no longer support on this forum due to age. Please update to a modern version to receive support. More information can be found in the LTS link at the top of every page.

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.