Jump to content

DaemonUmbra

Members
  • Posts

    11222
  • Joined

  • Last visited

  • Days Won

    67

Everything posted by DaemonUmbra

  1. 1.12 is no longer supported on this forum. Please update to a modern version of Minecraft to receive support.
  2. Please don't Necro old threads, if you have an issue make your own.
  3. 1.8 is no longer supported on this forum. Please update to a modern version of Minecraft to receive support.
  4. Please keep this forum in English. What version of Minecraft are you using?
  5. Well that looks like you're good now, the command I gave you included some refresh flags that essentially told gradle to take it from the top in addition to the options for logging it to a file.
  6. I'm not suree what to tell you, I don't know what's causing the issue with configs being invalid, it's an issue with the library we use
  7. 1.8 is no longer supported on this forum. Please update to a modern version of Minecraft to receive support.
  8. RenderGameOverlayEvent does not fire on the Mod Bus, if you can provide code that proves otherwise then please do.
  9. The file is a config file that gets regenerated with the default settings, we're not quite sure why it sometimes comes out invalid
  10. That's the one! Well you have two broken resource packs. aaaand it looks like the issue may be forge-client.toml, try deleting that one
  11. 1.12 is no longer supported on this forum. Please update to a modern version of Minecraft to receive support.
  12. I believe you should get the ItemHandler capability of the TileEntity and do your operations on that (do note the JavaDocs)
  13. What version of Minecraft are you using?
  14. Off the top of my head I'm fairly certain getStackInSlot(int slotNum) is a thing
  15. This shows a completely separate error that looks like you're trying to start the server when another instance of it is already running
  16. I don't. debug.log should be right next to latest.log, I'm going to assume you've got that stupid default setting of "hide file extensions" that makes debug.log look like it's just called debug
  17. 1.12 is no longer supported on this forum. Please update to a modern version of Minecraft to receive support.
  18. Ok, I'll do my best to break this down for you. @ECHO OFF java -Xms4G -Xmx8G -jar minecraft_server.1.15.2.jar --nogui pause @echo off This tells cmd to not parrot commands back to you before running them (the @ turns it off for just this line before the command runs) java -Xms4G -Xmx8G -jar minecraft_server.1.15.2.jar --nogui This is where the actual running of the server takes place, invoking java (the program that starts the whole JVM), giving it the options -Xmx and -Xms (the memory setting arguments for max and initial allocation, respectively), -jar (telling it which file to run), and nogui (you should remove the double-hyphen as this one is actually an argument to Minecraft itself rather than the JVM) Edit: To clarify this further as it's a common issue, -jar needs to be the last of the Java arguments, anything after it is considered an argument to the jar being run. pause This one is a cmd command that waits for a keypress before closing, useful for flow control in larger batch files and used here to stop the console closing when the server stops, so in the event of a crash you actually have a chance to see the error until you press a key and it continues to the end of the batch file where the command window will close. As for your issue, you're starting a vanilla server because you're starting the vanilla jar
×
×
  • Create New...

Important Information

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