-
Posts
11222 -
Joined
-
Last visited
-
Days Won
67
Everything posted by DaemonUmbra
-
[1.7.10] What's the best way to modify the vanilla furnace?
DaemonUmbra replied to ThePwnd's topic in Modder Support
-
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.
-
You're using Twitch launcher aren't you, ok this is going to be a bit complicated to get the correct log. These instructions are Windows only, I need to do more research to get this working on other OS's Find the version of Forge that the pack is using Locate the JSON for this version in Curse's versions folder Open that JSON and between the last line of text and the last curly brace ( } ), put this line: "logging": {}. e.g: . . . "mainClass": "net.minecraft.launchwrapper.Launch" } to "mainClass": "net.minecraft.launchwrapper.Launch", "logging": {} } Note the comma in the second one. This is important, DO NOT LAUNCH THE PACK WITH TWITCH, use the attached batch file1, to do this: Put the batch file in /Curse/Minecraft/Install/, right next to Minecraft.exe Double click it and it should open the launcher with your most recent pack selected Run Minecraft as normal and Forge's logs should generate correctly 1This batch file uses the same launch argument that Twitch does to tell Minecraft's launcher where to look for its files, as they are not in the standard location, however it does this without resetting the version JSONs to Twitch's slightly broken ones (they are missing one line that breaks Forge's logging). Open MC Here.bat
-
I see nothing in the log that says the server hasn't stopped properly. If you are launching the server through a .bat file, put pause on a new line at the end of it, this will print "Press any key to continue . . ." to the console only when the server's process has stopped, and will keep the console open until you select the window and press a key. Looking at the log of my own server that I know stopped successfully, I can say that threading has derped up the order of some messages.
-
Please provide your debug.log as described in the EAQ and my Signature below.
-
Need help with forge 1.12.2 server (Finished)
DaemonUmbra replied to NovaTedd's topic in Support & Bug Reports
The Forge server goes through "Old" and "Vanilla" statuses while it starts up, just need to give it time. -
Minecraft using Intel HD Graphics instead AMD Radeon
DaemonUmbra replied to vpontin's topic in General Discussion
It should be in the new Radeon Settings app, but some people are reporting they can't find it. -
Minecraft 1.12.2 Forge Server Crashes
DaemonUmbra replied to Nakoma1227's topic in Support & Bug Reports
Once the .bat file runs the server will be started, you should only need to open your client and use "localhost" as the Server IP. Note that once the server is closed you should wait until the command window says "Press any key to continue . . ." and then it will automatically close when you click the window and press a key. -
Minecraft 1.12.2 Forge Server Crashes
DaemonUmbra replied to Nakoma1227's topic in Support & Bug Reports
If you are using a batch file (.bat) it will open its own console window and you shouldn't need to open another one. If you are launching the server through typing the commands manually then you can't exactly do it without a window open. -
Minecraft 1.12.2 Forge Server Crashes
DaemonUmbra replied to Nakoma1227's topic in Support & Bug Reports
How many server windows do you have open? That includes command prompt windows. For a server to start successfully you need to have all other instances closed down. -
Minecraft 1.12.2 Forge Server Crashes
DaemonUmbra replied to Nakoma1227's topic in Support & Bug Reports
Please send the server's debug.log rather than the crash report, this looks old. And ONCE AGAIN... please read my signature for how people on the forums would prefer you post the log. -
Minecraft 1.12.2 Forge Server Crashes
DaemonUmbra replied to Nakoma1227's topic in Support & Bug Reports
That means you had a Java process running that you couldn't find and the command killed it, you should be able to start the server now. -
Minecraft 1.12.2 Forge Server Crashes
DaemonUmbra replied to Nakoma1227's topic in Support & Bug Reports
I'm seeing the same issue with this log. If you really don't have anything running with java, open Powershell and use this command: kill -n java* this will kill any Java or Javaw process, if it shows you an error in red text then more investigation is required. -
Minecraft 1.12.2 Forge Server Crashes
DaemonUmbra replied to Nakoma1227's topic in Support & Bug Reports
Then try launching the server again and post the new debug.log and again please read my signature in regards to our preferred method of posting logs. -
Minecraft 1.12.2 Forge Server Crashes
DaemonUmbra replied to Nakoma1227's topic in Support & Bug Reports
Open Task manager and kill any java or javaw processes you see (if you have anything else running that uses Java be careful). -
Minecraft 1.12.2 Forge Server Crashes
DaemonUmbra replied to Nakoma1227's topic in Support & Bug Reports
I meant the debug.log from the server, and please re-read my signature. -
Minecraft 1.12.2 Forge Server Crashes
DaemonUmbra replied to Nakoma1227's topic in Support & Bug Reports
Please post your debug.log in the manner described in my signature. -
Minecraft 1.12.2 Forge Server Crashes
DaemonUmbra replied to Nakoma1227's topic in Support & Bug Reports
No, I mean your launch.bat file or whatever you called it. -
Minecraft 1.12.2 Forge Server Crashes
DaemonUmbra replied to Nakoma1227's topic in Support & Bug Reports
Can I see the text from your batch file? -
Minecraft 1.12.2 Forge Server Crashes
DaemonUmbra replied to Nakoma1227's topic in Support & Bug Reports
If you want Forge to have a decent amount of RAM you will need to run the jar through command line or a .bat file (.bat means batch file and is a "batch" of CMD commands that get executed one after another). If you launch the server using this method you will need to leave the CMD window open or else the server will stop HARD (meaning it might not have a chance to save everything and things might get corrupted). -
Minecraft 1.12.2 Forge Server Crashes
DaemonUmbra replied to Nakoma1227's topic in Support & Bug Reports
The java -version just prints the Java version and stops, if you're trying to execute a jar file don't use -version. -
Minecraft 1.12.2 Forge Server Crashes
DaemonUmbra replied to Nakoma1227's topic in Support & Bug Reports
You have 32-Bit Java, which only allows about 3GB of RAM, some of which is needed by Java's backend so it can't reserve enough for Forge AND the backend. You will need to get 64-Bit Java 8. (The Java 8 part is important because Forge does what it does by leveraging black magic that is unique between Java versions) -
Minecraft 1.12.2 Forge Server Crashes
DaemonUmbra replied to Nakoma1227's topic in Support & Bug Reports
Don't start the server, just press the windows key, type in cmd and press enter. That will bring up the command line, then in the command line type java -version