-
-
Notifications
You must be signed in to change notification settings - Fork 478
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: Game crashes without any log entry #768
Comments
Give the latest alpha-development build of v0.6.6 a try and let me know if you have the same problem. |
Thanks for responding! Tried both x64 Release and Debug there, in clean installs, and they fail in the same spot. Same 0xc0000005 in GameAssembly.dll . Anything else I could try? |
Redownload the alpha-development build of v0.6.6 from the same URL and try again. |
Thanks for staying on this! Same issue in a clean install with no mods unfortunately - 0xc0000005 in GameAssembly.dll . I've highlighted the changes to the most recent Debug.log using Beyond Compare (Latest-Bootstrap.log is the same)
Please keep looking, and I'll keep trying! |
Been wondering if its something in the binaries of the latest game update causing the crash, aka attempts to block external loaders/libraries etc, so found a pre-update copy of the game with 0.6.2 installed. It still runs without crashing, and stops with the expected "You need to update your game" screen (process stays executing, my mod loads great, no appcrash or uncaught exception). Keeping the pre-update copy of the game, removing the 0.6.2 Melonloader folder and emptying the Mods and UserLibs folders, and then installing 0.6.4, 0.6.5 and latest alpha 0.6.6 all yield the 0xc0000005 appcrash in the GameAssembly.dll I mentioned "the rock solid 0.6.3" in my initial post. I meant to say 0.6.2 was rock solid. In the above scenario 0.6.3 fails early with the following (typed out from a screenshot, not present in Latest.log): [NewEntryPoint] Passing ptr to LoadAssemblyAndGetFunctPtr back to host... I really hope this helps nail down when the issue could have crept in. |
This does actually. Thank you! |
@HerpDerpinstine Possible issue and temp fix is in: #780 |
@startrekfleetcommand-dev Can you try my temp fix in #780 ? |
Hi Lillious, thanks for checking in with my issue. I definitely tried all variations of command line parameters early on. I even downloaded and built the MelonLoader source to determine the exact line of code that was failing, but I'm guessing its related to a method patch gone awry. I'm not very familiar with this concept, so not sure how to trace it. On a related note @HerpDerpinstine, while Bepinex 6 loads successfully with no mods enabled, and also with the basic mod enabled (that simply prints on various callbacks), it fails the exact same way when trying to read an external file (0xc0000005 appcrash in the GameAssembly.dll, with nothing written to log, and the only indication is in Event Viewer). I know its not necessarily related to what's happening in MelonLoader with no mods installed, but its interesting that they both crash the same way. It suggests to me that there's an issue, potentially with both tools, in running certain external functions. I'll be posting this issue in their wiki, but here's what it looks like: Works (prints the line and the game loads):
Prints both correctly (even if the file is zero or one bytes), but crashes silently as described above:
|
hello @HerpDerpinstine I tried the version you suggested https://nightly.link/LavaGang/MelonLoader/workflows/build/alpha-development/MelonLoader.Windows.x64.CI.Debug.zip this has fixed the issue for me however, it's worth noting that my AV flagged il2CppZenject.dll and moved it to quarantine, wondering if AV is causing issues for other users without them noticing. as I never noticed this being flagged in the past but I may have missed it. |
I also had AVG issues Ceph (all false positives hopefully) - I have done my testing with AVG enabled (and creating exceptions) and disabled so I'm pretty sure its not the cause if my issue. While I had no problems getting the game to boot with the latest Bepinex 6, it would crash for certain operations with my mod (reading or writing some files) or randomly after differing periods of time (whether sitting idle, or in active use). I therefore tried copying the output of Il2CppAssemblyGenerator from Bepinex (folder Bepinex\interop) to MelonLoader 0.6.2 (folder MelonLoader\Managed) and was able to boot the game, even with my mod enabled. This required that I prevent the MelonLoader assembly generation (which cannot read version 31 metadata) by adding the correct GameAssemblyHash and OldFiles entries in MelonLoader\Dependencies\Il2CppAssemblyGenerator\Config.cfg , and updating MelonLoader\Dependencies\SupportModules\Il2CppInterop.Runtime.dll from 1.4.5 to 1.4.6 I was very pleased to see the game running under the older MelonLoader, but it unfortunately has the same issue as when running in Bepinex 6. It would randomly crash with my mod, whether after 3 minutes of gameplay or 30, idle or in use. Even with extraneous libraries and all file I/O removed. Not sure where to go next, other than try other loaders and frankenstein what works :-) I'll keep checking back! PS - I attached dnSpyEx to the running process, and had it break on all thrown exceptions (to see if I could catch the unhandled exception that was causing the crash). While it did catch a large number of System.BadImageFormatExceptions (Read out of bounds) in System.Reflection.Metadata , these were handled and none immediately preceded the crash. The only indication dnSpyEx's output gave was "The program '[0x4A90] prime.exe' has exited with code 0 (0x0)." |
Latest.log
All of the following criteria must be met
All of the following are optional to answer
Describe the issue.
With 0.6.5 on Windows 11, the game gets to a loading screen but consistently crashes silently, even when no mods or plugins are installed. With the example plugin it shows that OnInitializeMelon fires, but nothing after (OnGUI, OnUpdate etc.) No errors in Latest-Bootstrap.log either. Tried with AVG off, and in safe mode. Latest nightly as well, same thing.
https://startrekfleetcommand.com/download-game/
Event Viewer shows exception code 0xc0000005 in GameAssembly.dll , which Microsoft's Debug Diagnostic Tool describes as an access violation.
Had to move off of the rock solid 0.6.3 as it (and all versions before it) have Il2CppAssemblyGenerator throwing the following:
Cpp2IL.Core.Exceptions.LibCpp2ILInitializationException: Fatal Exception initializing LibCpp2IL! ---> System.FormatException: Unsupported metadata version found! We support 23-29, got 31
Weirdly the latest bepinex 6 can load into the game with the sample mod without errors, but it lacks the OnGui and OnUpdate functionality.
Did you attach your log file?
Yes, I attached my log file to the text box above.
The text was updated successfully, but these errors were encountered: