-
Posts
2617 -
Joined
-
Last visited
-
Days Won
37
Everything posted by Ugdhar
-
Minecraft 1.6.4 Forge Server Keeps Crashing
Ugdhar replied to XCraftTM's topic in Support & Bug Reports
Really really old versions are no longer supported on these forums. Please update to a modern version to receive support here. More information on supported versions can be found in the LTS link at the top of every page. -
Please post the installer log, should be in the same folder as the installer, with the same name, but end with ".log".
-
Really old versions are no longer supported on these forums. Please update to a modern version to receive support here. More information on supported versions can be found in the LTS link at the top of every page.
-
File testmod-1.15.2.jar is not a valid mod file
Ugdhar replied to Xombifier's topic in Modder Support
In your project you should have src/main/resources/META-INF/mods.toml If you do not, grab it from the examplemod that comes with the forge SDK and put it there, then edit it so it represents your mod. -
1.12 is no longer supported on these forums due to age. Please update to a modern version to receive support here. More information on supported versions can be found in the LTS link at the top of every page.
-
1.12 is no longer supported on these forums due to age. Please update to a modern to receive support here. More information on supported versions can be found in the LTS link at the top of every page.
-
Please don't send PMs, there's no reason to, keep it on the forums. And it doesn't matter what you think is interesting, if you won't post the log, you can't get help, sorry.
-
Pretty sure there's a logfile with a lot more information than that in it! Check in the logs folder in your game directory.
-
Please post the full log, there is more information in there we are missing.
-
1.12 is no longer supported on these forums due to age. Please update to a modern versions to receive support here. More information on supported versions can be found in the LTS link at the top of every page.
-
java.lang.NullPointerException: Ticking player
Ugdhar replied to Silenter's topic in Support & Bug Reports
1.12 is no longer supported on these forums due to age. Please update to a modern versions to receive support here. More information on supported versions can be found in the LTS link at the top of every page. -
I modded a new fluid into minevcraft 1.15.2, but it has no physics.
Ugdhar replied to Press X For's topic in Modder Support
Package name is wrong, you have data.minecraft.tags with water.json, you need another package in tags called fluids -
Use Java 8, there's a library or something used by forge that requires it. Also, you don't need a JRE if you download a JDK, it comes with it. The Oracle account you need to download Java 8 is free, but if you don't want one you could try OpenJDK, lots of people on here are using it just fine: https://adoptopenjdk.net/
-
I modded a new fluid into minevcraft 1.15.2, but it has no physics.
Ugdhar replied to Press X For's topic in Modder Support
To make it water-like (swimming/pushing mobs) you need to add a tag that makes it behave like water in data.minecraft.tags.fluids called water.json (obviously this one is for the fluid I made when I was figuring this stuff out, make it for your fluids) And just a side note, the fluid I made testing I subclassed from ForgeFlowingFluid instead of FlowingFluid. Not sure if it matters for any reason or not, but figured I'd mention -
Well then. I guess I'm at a loss, the only thing I can think of at this point is reinstalling the JDK fresh, but I truly don't even know if that is really the issue. Sorry Hopefully someone else will see this and know what it's all about!
-
Hmm. Which version of Java are you using? From the commandline in your project folder (batch files are good for some stuff, but definitely not for this situation ) run java -version Doesn't matter what versions are installed, it depends on the command to tell which versions is actually being used. *edit: Googling has some people getting this error with really old java versions. I'd say make sure you have the latest Java 8 JDK.
-
Ah ok, so you're running your gradle commands from a batch file. Anhyhow, I'm not sure what's going on there to be honest, looks like some sort of SSL error trying to get https://files.minecraftforge.net/maven/net/minecraftforge/gradle/ForgeGradle/maven-metadata.xml Can you go to that link manually in a browser?
-
Ok, then open the folder your mod project is in, hold shift and right-click in a blank spot, and you should have a menu with an open to open powershell window here. Do that, then run ./gradlew eclipse *edit: might want --debug instead of --stacktrace, it looks like it gives more info. I've never really had any issues getting a workspace setup, so I'm just thinking of how I'd try to solve it if it were me.
-
File testmod-1.15.2.jar is not a valid mod file
Ugdhar replied to Xombifier's topic in Modder Support
The error was right there in the log Did you edit the mods.toml in your resources so it is for your mod or create a new one?