Jump to content

DaemonUmbra

Members
  • Posts

    11222
  • Joined

  • Last visited

  • Days Won

    67

Everything posted by DaemonUmbra

  1. You do NOT have the latest version of Forge for 1.11.2
  2. Some of your mods require a later version of Forge than you are using.
  3. Have you checked your recycle bin?
  4. Please provide your logs as described in the EAQ and my signature.
  5. I assume you are talking about a GriefPrevention plugin for Bukkit/Spigot or Sponge, if this is the case you will need to go to their forums.
  6. Try this: This explains how to use the same arguments you mentioned previously, if you are "getting the same error" after using these arguments please post a screenshot of your command line and post your installer log.
  7. If you had built a Jar of it before I can suggest running it through Fernflower and BON2, then unzipping it with a tool like 7Zip
  8. They can both be installed on one machine, but note anything you purchased through Bedrock's in-game store will not exist in Java Edition.
  9. This looks like something going wrong reading a file on your end, please post logs as described in the EAQ and my signature below.
  10. Something is missing from your @SidedProxy annotation, can you tell me what? Edit: Also Code Style 1 and 2
  11. 1.7.10 is no longer supported on this forum due to its age. Please update to a more modern version of Minecraft to receive support.
  12. Mo'Creatures is broken, it's assuming things about data it reads which then blow up in its face.
  13. 1.7.10 is no longer supported on this forum due to its age. Please update to a modern version of Minecraft to receive support. Additionally, user was banned for using a cracked launcher.
  14. Checking the GitHub it looks like that's relatively new, I did not know that was a thing. Edit: Nope I'm just a massive derp, I could've sworn I had an issue with this in the past.
  15. The ObjectHolder annotation is described on this page of the Forge Documentation, please read it. Also your registry name setup right now is broken, I recommend setRegistryName(MODID,"ItemName") otherwise using getRegistryName() within setCustomModelResourceLocation() will be telling Minecraft to look within itself for your model files. It appears I am behind the times.
  16. Objectholder takes the registry name, in yours they do not match.
  17. DaVinci's vessels is having packet issues, all I can suggest is removing the mod
  18. I'm not sure, it's the one that breaks first but since that halts the whole thing when it crashes other things that might have broken later on would get skipped
  19. Statues mod is broken, it's trying to access client-only stuff on the server, where it doesn't exist.
  20. Ok could you send me the log? Its name depends on the version but it's described in my signature. Edit: Feeling like the issue is likely your computer is trying to use Java 9+, but I'll need the log to confirm.
  21. you'll need to include the .jar at the end of the forge universal but yes
  22. Disable spawning and implement logic to self-remove if they are already spawned?
  23. Ok so you'll want to make a bat file. Just make a text file, rename it to Launch.bat (or something similar) and make sure you have file explorer set to show known file extensions when you do this or things won't work. The most basic command to put in the file will be java -jar <the name of the forge universal> nogui this will launch the server as if you clicked on it but without the GUI, you can still see messages from the server and run commands through the cmd window though. Note though that this will only give your server the default amount of ram which may not be enough, to give it more you will need to put the memory arguments -Xmx (and -Xms) before the -jar argument. With the memory arguments you will specify the amount of memory using a number and a one-letter-unit (K for KB, G for GB, etc.) with no space. The typical launch command I use is java -Xms4G -Xmx4G -jar <forge universal> nogui. I make no promises of this being the best or most efficient configuration, but you can take it as an example of the syntax.
×
×
  • Create New...

Important Information

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