Jump to content

Ugdhar

Moderators
  • Posts

    2792
  • Joined

  • Last visited

  • Days Won

    44

Everything posted by Ugdhar

  1. I hope you mean make a mod for Minecraft that adds something similar to something in the game Deceit, and not make an actual mod for the game Deceit. The former we might be able to offer some advice on, the latter, not so much for obvious reasons! To make a Minecraft mod, you will need to know Java, or at the very least, similar/other programming languages so that you understand the core concepts. Otherwise it is impossible. Do you have any programming experience?
  2. I've never heard of that brand from Walmart, learn something new every day! Honestly, you likely won't find much of a better price for a new laptop with similar specs from what I've seen. I usually keep tabs on the sales and deals on newegg.com when I'm looking for stuff. You might be able to get a more known brand of laptop for a similar price doing that, possibly even something with a dedicated video card (like NVidia MX150 or something, not anything new). Good luck, hope you find something that suits your needs!
  3. Have you looked at the FillerBlockType class, or tried anything? 2 second check shows it's an extensible enum, so should be easy to add a new one, pretty sure I saw a create method in there. You should investigate and try stuff! That's half the fun of programming If you run into errors, come back, post code (pref a github repo of the project, makes it easier to find bugs/see the big picture), and the full debug.log
  4. Please post the entire debug.log using a github gist or something similar. Just posting a few lines from the log file is not helpful.
  5. Global loot modifiers are how you are supposed to change/add to drops, so they can be replaced/changed by datapacks from what I understand. I've only done it for blocks, not mobs yet myself, I was just giving you a place to start looking.
  6. Make your own thread, and post logs please.
  7. Probably Global Loot Modifiers: https://github.com/MinecraftForge/MinecraftForge/blob/1.15.x/src/test/java/net/minecraftforge/debug/gameplay/loot/GlobalLootModifiersTest.java
  8. I believe there is a weight parameter when you add the biome to the BiomeManager, increasing that should theoretically make your biome appear more frequently. *edit: what version is this for?
  9. Just curious if you'd mind sharing what you figured out? Messing with the noise generators is on my todo list
  10. Also, you could search around for open source mods that add dimensions to see what types of things they do.
  11. Not really. I've done a little searching, and about the best I've come up with is: https://wiki.mcjty.eu/modding/index.php?title=Tut14_Ep12 https://gist.github.com/Commoble/ac7d7b57c9cbbfcae310c4ab110c3cc0 and small bits and pieces here and there from random googling. Really more than likely, after getting the hang of how things are put together, chunk generators/biome providers/etc. looking at the vanilla code, and probably reading up on noise algorithms are going to be the best bet. I usually make it an hour-2 digging through the vanilla code for world stuff before I start going in circles and my eyes cross lol.
  12. It's free, there's no reason to not have one! And it's so helpful. Not to mention if you're not using git, you should start, because its awesome. Here are some links that may help you get started, don't be scared! https://github.com/ https://readwrite.com/2013/09/30/understanding-github-a-journey-for-beginners-part-1/ https://www.atlassian.com/git/tutorials/using-branches
  13. If you keep stepping through it, do you get to an endless loop or something? I mean, doing that should show you exactly where in the code it's getting stuck. I'm guessing something is null, or there's a loop that never meets its exist condition or something. And I figured you weren't getting a crash since you mentioned that it got stuck. You should push this to a github so that people can see updated code as you change things, and see the big picture. For instance, we have no dimension code, and can't see the resource location of the dimension. Sometimes something that appears unrelated might have something to do with the problem, that's why when I have an issue I always share all my code, I figure since I'm asking for help, what do I know what code is relevant or not?
  14. Where does it get stuck/what is it doing?
  15. Side note: you can use DimensionManager.registerOrGetDimension instead of checking for the dimensiontype by name being null. Have you tried setting breakpoints, stepping through the code, and seeing where the code execution gets stuck?
  16. 1.12 is no longer supported due to age. To receive support you will need to update to a modern version (1.14.4/1.15.2). See the LTS link at the top of every page for more information on supported versions.
  17. To be honest, I'm not sure, I haven't done much with datapacks yet, I just know that the minecraft wiki has details on all the vanilla formats and file structures and stuff. I would hope (again, haven't looked!) that the answer would be on that page somewhere!
  18. https://minecraft.gamepedia.com/Data_pack
  19. You can just edit your build.gradle, open it up and First update mappings: change the line similar to this: by changing the date in the version part to be yesterday or today. Leave the -1.15.1 at the end of it. Then, update the forge version by finding the line similar to this: And change the forge version to be the latest (or whatever never version) as shown on files.minecraftforge.net Save it, then refresh your gradle project, and it should update everything for you. Depending on the mappings you've used, you may have to fix a minor things where methods got named, but it shouldn't be a big deal. *edit: You don't want to just extract a new MDK over on top of your project, it would overwrite your build.gradle, mods.toml, and possibly other files you have customized you wouldn't want overwritten.
  20. Make sure you only get forge from http://files.minecraftforge.net/ You want Latest not Recommended
  21. Ah ok, then update to a newer forge and it should work with newer Java *I just wasn't sure, the changelog basically said no promises
  22. Use Java 8, higher versions are not supported yet
  23. Have you tried updating to see if it's fixed in a newer version?
  24. Unplug this device, it may be some USB thingy.
  25. Check out the code for the bed, and see how it does it, and use a similar approach. Vanilla sources are one of the most valuable assets while modding, and can be viewed in the referenced libraries of your IDE.
×
×
  • Create New...

Important Information

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