-
Content Count
10340 -
Joined
-
Last visited
-
Days Won
62
Posts posted by DaemonUmbra
-
-
Posted · Edited by DaemonUmbra
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 recommendsetRegistryName(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.
-
-
-
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
-
Statues mod is broken, it's trying to access client-only stuff on the server, where it doesn't exist.
-
-
Posted · Edited by DaemonUmbra
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.
-
-
-
Posted · Edited by DaemonUmbra
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.
-
-
Ok, how reliant are you on a pretty interface, could you make do with a command line interface?
-
I can't confirm this but I'm seeing a lot of people reporting this, how are you launching the server, double clicking or with a bat or sh script?
-
Posted · Edited by DaemonUmbra
What does it say below the warning, becauseincremental CMS is NOT the cause.Woah woah woah wait... String Proxy? You need to re-read the Forge Docs.
-
Did you install java yourself or did you just install the Minecraft Launcher and it worked out of the box?
-
Please read my signature below and provide the relevant log in the manner described.
Also, this should be in Support and Bug Reports, thread moved.
-
Are you always registering these items or are they being excluded from load at times?
Do these blocks need to store a reference to items?
-
1.7.10 is no longer supported on this forum due to its age.
Please update to a modern version of the game to receive support.
-
All I can say is don't hold your breath.
Thread locked because this thread serves very little purpose.
-
The server jar needs to be all lowercase and once again you need to use Java 8, not just have it installed, if you have any other versions of Java that your computer might be trying to use instead you need to use the full path to the Java binary rather than just “Java”
-
1
-
-
This is all I have on trustAnchors
What I gave you before should fix the libraries not downloading.
Also Mojang is pushing the 1.13 server now, so you'll need a direct link to get 1.12.2 now.
-
1.7.10 isn't supported on these forums anymore.
Can I get the log for the most recent version you have? and Please use Pastebin or Gist, both are linked in my signature.
-
The first two pictures, try these instructions(They are for Windows but pay attention to the arguments given to Java when running the installer):
As for the third image, you need to use Java 8 to run Forge at this time.
-
1
-
-
Adding textures to items?
in Modder Support
Posted · Edited by DaemonUmbra
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.