Everything posted by warjort
-
Mods are awesome... but the crashes...
https://github.com/Asek3/Oculus/issues/257
-
The game crashed whilst initializing game Error: java.lang.RuntimeException: null
Now you have an issue with the betterf3 mod. Probably for the same reason? You need to check the mods you install are actually compatible with the version of minecraft you are using.
-
Exit code -1073740940 when joining a Server
The only thing I can suggest is trying a different version of java. e.g. https://adoptium.net/ You configure the java to use in curseforge's minecraft settings. There have been quite a few reports of hard crashes for microsoft's version of java in this forum recently. Your's seems to be an old version: 17.0.1 vs 17.0.5 for adoptium
-
The game crashed whilst initializing game Error: java.lang.RuntimeException: null
Issue with the elevatorId mod. Looks like you are trying to use a 1.19.2 mod with minecraft 1.19.3 and it is not compatible? Check you have the latest version compatible with 1.19.3 then contact the mod author
-
Exit code -1073740940 when joining a Server
There is no new information in that log, but it does say it is submitting a crash report to minecraft's website. It doesn't say which report it is submitting. Check your crash-reports folder. Also since this is curseforge, the hs_err_pid file might be somewhere else. Curseforge has a nasty habit of overriding folder locations. Places to check for the hs_err_pid might be: * curseforge\minecraft\Instances\All the Mods 7 - To the Sky - atm7sky * curseforge\minecraft\Install (or other curseforge folders?) * your home folder * your desktop * your temp folder, type %TEMP% into the location bar of windows explorer
-
Exit code -1073740940 when joining a Server
You need to show the log. We can't help you if you don't show the error. And make sure it is the log directly directly after the crash without restarting the launcher. Otherwise the log will be cleared and we won't see the error. The other person hijacking this thread and not helping the original poster needs to start their own thread and post the same information.
-
Exit code -1073740940 when joining a Server
That error is a crash in native code. Forge won't get a chance to log that error. You need to look in your launcher_log.txt to see what error message it has logged. Or check your minecraft folder for a hs_err_pid file created at the time of the crash. If there is one, only post the first 20 lines so we can see the error.
-
How do I show an input screen on game load?
Cracked minecraft is definitely a breach of the EULA and not supported in this forum.
-
How to find the block below a player
Entity.isInWater()
-
help cant it keep crashing
Issue with dynamicsurroundings. Check you have the latest version then contact the mod author.
-
How do I show an input screen on game load?
I don't know. I can't think of a single mod that does anything like that. Denying users access to a game they paid for, is questionable in terms of Mojang's EULA: https://www.minecraft.net/en-us/eula and almost certainly a breach if you are doing it to make money. Having said that, you could try listening on ScreenEvent.Render.Pre If event.getScreen() is the TitleScreen and your conditions are met, * cancel the event so it doesn't display the title screen * Use Minecraft.getInstance().setScreen() to change to your screen If you have done as little research as your original question suggested, your next will question will be "how do I write a screen?" https://docs.minecraftforge.net/en/latest/gui/screens/ or look at vanilla's ErrorScreen for a simple example.
-
How do i registerbootstrap(BootstapContext<PlacedFeature> context)
Directly modifying the vanilla builtin registries is not the correct way to do it. Before 1.19.3 you could use the standard DeferredRegister mechanism https://forums.minecraftforge.net/topic/115928-1182-error-trying-to-register-a-custom-feature-based-on-kelpfeature-solved/?do=findComment&comment=512366 I haven't tried doing that in 1.19.3 after Mojang refactored it all so I don't have an example. The recommended way to do it though is to register your Placed/Configured features using json. Like any normal datapack. https://forums.minecraftforge.net/topic/118924-solved-1193-placedfeature-register/#comment-522171 I believe you can also generate them using datagen? e.g. https://github.com/BluSunrize/ImmersiveEngineering/blob/1.19.3/src/datagen/java/blusunrize/immersiveengineering/data/WorldGenerationProvider.java I haven't tried this myself either.
-
The game crashed whilst experiencing error/The game crashed whilst unexpected error Error: org.spongepowered.asm.mixin.transform
Issue with create. Check you have the latest version then contact the mod author. It's probably a conflict with another mod?
-
Server Crash
Then do as the forums rules say in the sticky post and post your logs to a file upload site. That way we won't get confused when there are multiple logs/crash reports on the same thread and can properly search the relevant one. Issue with craftpresence trying to load client side only classes on the server. Check you have the latest version then contact the mod author.
-
All The Mods 8 LAN Null Pointer Exeption
You need to post the logs/debug.log so we can see the full error. But from the little you show, it looks like one of your mods has broken networking code. Usually the only way to find it is to experiment with removing mods until the problem goes away. (Backup your world before removing mods).
-
I got Minecraft java downloaded forge then opened forge clicked ok I did the thing and it said that its finished
You need to post your logs/debug.log so we can see the error.
-
The game crashed whilst rendering overlay
Install the latest optifine preview release.
-
New Instance Won't Open
Issue with the iceberg mod. Check you have the latest version then contact the mod author.
-
Server Crash
Use java 17, mixin does not support java 19
-
Forge minecraft exit code 1, i fixed everything in the crash log but dont know what to do now. maybe you know.
There is no error in that log. If that really is the full log then the last thing is Which suggests it is a problem with the "Essential" Mod. Check you have the latest version and contact the mod author. Otherwise, post a link to your launcher_log.txt from directly after the crash without restarting the launcher.
-
Copying Files from Mod‘s resources folder to minecraft directory
That's because my code contains a bug. I said it was untested. 🙂 Path and String both have a method called endsWith() but they do very different things. The code should be: path.toString().endsWith(".json")
-
My minecraft keeps crashing with mods.
That crash says you have 4G configured for heap:
-
My minecraft keeps crashing with mods.
This is crash in the java virtual machine. You need to report it Microsoft. Or you can try a different version of java e.g. https://adoptium.net/ It might also be you ran out of memory and java didn't handle it properly?
-
Game Starts up then closes and gives me error code -1along with a mod.
This is the 1.19.2 version of JEI. You will have to wait for a 1.19.3 release of that mod. https://www.curseforge.com/minecraft/mc-mods/jei/files/all?filter-game-version=1738749986%3a73407 Or roughly enough items has a beta release for 1.19.3 while you wait. https://www.curseforge.com/minecraft/mc-mods/roughly-enough-items/files/all?filter-game-version=1738749986%3a73407
-
How to find the block below a player
Look at how Entity.travel() uses getBlockPosBelowThatAffectsMyMovement() and entity.isOnGround() when calculating the friction.
IPS spam blocked by CleanTalk.