-
Posts
766 -
Joined
-
Last visited
-
Days Won
27
Everything posted by Paint_Ninja
-
1.19.2 Error Code: 1 when launching ATM 8
Paint_Ninja replied to itsKhoa's topic in Support & Bug Reports
You need to update your graphics drivers. Instructions on how to do this are in the FAQ here: https://forums.minecraftforge.net/topic/125488-rules-and-frequently-asked-questions-faq#:~:text=Forge immediately crashes on launch without any mods installed%2C how do I fix it%3F -
Please read the FAQ first and try again. Rule 3 - please include links to your debug.log and crash report on pastebin.com/paste.ee rather than dumping it in the post directly. https://forums.minecraftforge.net/topic/125488-rules-and-frequently-asked-questions-faq
-
Please read the FAQ first and try again. Rule 3 - please include links to your debug.log and crash report on pastebin.com/paste.ee rather than dumping it in the post directly. https://forums.minecraftforge.net/topic/125488-rules-and-frequently-asked-questions-faq
-
You need to update to Forge for MC 1.16.5 instead of 1.16.4. As far as I'm aware, all mods available for 1.16.4 have already updated to 1.16.5. In future, please read the rules and FAQ first. https://forums.minecraftforge.net/topic/125488-rules-and-frequently-asked-questions-faq
-
FML crash report after trying to load an old account?
Paint_Ninja replied to zalein's topic in Support & Bug Reports
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. -
1.18.2 forge connection time out when install
Paint_Ninja replied to dt_jack's topic in Support & Bug Reports
Please read the FAQ first and try again. Rule 3 - please include links to your log on pastebin.com/paste.ee rather than dumping it in the post directly. https://forums.minecraftforge.net/topic/125488-rules-and-frequently-asked-questions-faq -
Please read the FAQ first and try again. Rule 3 - please include links to your debug.log and crash report rather than dumping it in the post directly. https://forums.minecraftforge.net/topic/125488-rules-and-frequently-asked-questions-faq
-
1.18.2 DawnCraft server is not starting up
Paint_Ninja replied to Xosmuits's topic in Support & Bug Reports
Unfortunately the issue seems to be caused by a Mixin, so pinpointing the problematic mod will be tedious. Mixin means that the mod modifies the game directly rather than using a Forge API, which means we can't tell which mod modified the game to cause the issue - only know a list of mods using Mixin that might be causing it. In your case this line in your crash report tells you a list of mod IDs using Mixin. Backup your server, delete one of those mods and see if it works. If it does, that mod is the problem. If it doesn't, put it back and delete the next one in the list instead. Repeat the process until you find the broken mod. -
Forge Keeps Crashing Whenever I Use Mods
Paint_Ninja replied to BuildIt2278's topic in Support & Bug Reports
Please don't revive old threads. Read the rules and FAQ -
Update your graphics drivers. You want the ones labelled "WHQL Recommended"
-
Please read the FAQ first and try again if the solution in there doesn't work. Rule 3 - please include links to your debug.log and crash report rather than dumping it in the post directly.
-
Problem With Bungeecord & Forge
Paint_Ninja replied to TropicSnowJPR's topic in Support & Bug Reports
Unfortunately bungeecord doesn't support proxying Forge. However, you can get it to work by using this instead: https://www.curseforge.com/minecraft/mc-mods/server-redirect -
1.19.2 Oh, the BYG doesn't work (Forge 1 19 2)
Paint_Ninja replied to FFosfor's topic in Support & Bug Reports
Yes. Try deleting all the biomes you'll go config files. -
1.19.2 Oh, the BYG doesn't work (Forge 1 19 2)
Paint_Ninja replied to FFosfor's topic in Support & Bug Reports
One of the config files for Biomes You'll Go is broken or invalid. Try deleting it -
Server wont start with mods but will without them.
Paint_Ninja replied to VR_D0GE's topic in Support & Bug Reports
Please read the FAQ first and try again. Rule 3 - please include links to your debug.log and crash report rather than dumping it in the post directly. -
Minecraft crashing 1.20.1 modded using curseforge
Paint_Ninja replied to AbieunderFevine's topic in Support & Bug Reports
Please read the FAQ first and try again. Rule 3 - please include links to your debug.log and crash report rather than dumping it in the post directly. -
Exit Code: 1 with Forge 1.19.2-43.2.21
Paint_Ninja replied to Clover1k's topic in Support & Bug Reports
Please read the FAQ first and try again. Rule 3 - please include links to your debug.log and crash report rather than dumping it in the post directly. -
1.19.2 Exception in server tick loop
Paint_Ninja replied to RealLumiOff's topic in Support & Bug Reports
Unfortunately you'll need to do a binary search because some of your mods are directly modifying the game rather than using the Forge API, which makes it hard to tell which mod broke. The binary search is a way of finding a faulty thing among a lot of other things, without having to remove the things one-by-one. This is useful for finding a broken mod among hundreds of mods, without having to spend time testing the mods one-by-one. The procedure is simple: Remove half of the existing things, and put them aside. Run the program / game. Does the issue still exist? If YES: Repeat from step 1 with the current things. IF NO: Swap out the current things with the ones set aside, and repeat from step 1. Repeat this process until the problematic thing/s have been found.