Jump to content

Cadiboo

Members
  • Posts

    3624
  • Joined

  • Last visited

  • Days Won

    58

Everything posted by Cadiboo

  1. Do you know if the distortion caused by nausea would also be possible with this event?
  2. Or that, but the first approach is easier to understand and read which is what I was aiming for. In actual code this method should be used, but I would probably wrap it in a method for readability
  3. We’ve given you at least 2 solutions to this problem
  4. Just do min_durability + ((max_durability - min_durability) * new Random.nextFloat(1)) This generates a random durability greater than or equal to min_durability and less than or equal to max_durability
  5. I assume your modifying your mod in 1.12.2 in preparation for 1.13?
  6. So OreDictionary is overriding your mod's recipes? This is a pretty unique problem that will probably be solved with data packs in 1.13, I'm not sure you could change this without modifying (with Reflection? or a CoreMod?) stuff in the Recipe registry like CraftingManager.getMatchingRecipeFor, which kinda defeats the whole point of JSON recipes which is to make everything dynamic and customisable
  7. Not sure I fully understand, but I believe that Ore Dictionary is going to be replaced by the 1.13 Vanilla Tag system
  8. so why is it an interface? I would expect the values to be in a reference class as constants
  9. why is this an interface??
  10. Have a look at the classic open-source mods like MinecraftByExample Jablears TestMod Choonsters TestMod tinkersconstruct mekanism
  11. Sorry, forgot that this was an error with installation and not a crash. On a side not only download mods from CurseForge.
  12. Then everything should work perfectly, can you post your most recent debug.log?
  13. Have a look at my solution to this problem at https://github.com/Cadiboo/WIPTechAlpha/blob/master/src/main/java/cadiboo/wiptech/util/ModEnums.java (ModMaterials) all my metals are registered here with properties (hasOre, hasNugget, hasTools etc.) and registration is done automatically based on this. It’s even possible for other mods to add, remove & modify the materials
  14. Never use 9minecraft, the mods u get from there are filled with viruses. Delete all the mods you got from there
  15. https://minecraft.gamepedia.com/Tutorials/Setting_up_a_Minecraft_Forge_server
  16. Thankyou! This helps a lot, what sites did you download your mods from?
  17. Run it from command line with ”java -Xmx1G -Xms1G -jar FILE_LOCATION.jar nogui
  18. Run “which java” and “java -version” and ”echo $JAVA_HOME” and post the results.
  19. Both block and item extend IForgeRegistryEntry if that helps
  20. What is the address of the site that led you to http://adfoc.us/serve/?id=27122867254393 it is important and could be the cause of your problem. Please post it
  21. Is there any output when running the server from the command line?
  22. Is java configured correctly? What does the java version command (in cmd) say? Does the system say why it didn’t work (error message? System log)
  23. You can also use -Xmx<gigabytes>g
  24. Post any logs you can find, computer specs, how your launching the sever & your java version
  25. Do you have a tile entity? How dynamic are your models/textures
×
×
  • Create New...

Important Information

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