Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
"Loaded file (Map) is from version 1.3.3117 rev669, we are running version 1.3.3159 rev754"
Have you changed some mod versions or the Rimworld client version?
All the errors i looked at were all to do with plants, animals or biome. Some for the same items being added twice, do you possibly have 2 versions of the same mod with different version numbers loading at the same time?
I am not a coder, this is my best guess.
I use Rimpy and there is no 2 versions of the same mod. Thank you for your answer.
Your error says you're running out of memory. Typically caused by a memory leak, but could also be bad RAM. If you're getting the error in other applications, check your hardware.
Otherwise, realize that Rimworld was updated a couple days ago and you're running 500 mods. Something likely broke.
No, I'm not a programmer. But I know that "stack overflow" has something to do with memory and memory leaks. It is when some error in the programming leads the program to use up all of the memory which leads to crashes or bluescreens. That can happen in many other programs as well. I had it once in Rimworld and it had to do with textures not being correctly loaded.
Also, by just looking through your modlist... I mean, it looks like you just took everything from the workshop and mashed it together. There are like 5 different storage mods AND stack mods, all the veggie/farming mods put together, like all the builder mods.. literally everything. I've used most of these as well but not in a single modlist! There is no way that all that works well together even on a normal day.
I'll delete some big mods and write what came of it.
When this crush happens, the RAM used about 70% . So do I need 32 Gb instead of 16 now?
And yes. every thing was fine before 1.3.3159 patch.
PS: 123 try to delete 4M Mehni's Misc Modifications and RimThreaded to run your game. Hope it will help you.
But, what is the cause of this error that make crush of the game? And the most important thing is how to fix this error.
- config file.
Start a new game (no errors) , no crush.
Thank you everyone
In programming, a "stack" is exactly what it sounds like. The computer can put a block of data on the stack, or it can take the top block of data off of it; the items "stack up". Por ejemplo, the computer needs to check each pawn's light level to see which pawns get the Darkness moodlet, but a raid is in progress and bullets are flying around. So the computer pushes each pawn's light level onto the stack, and goes "I'll get around to these later". Then, after the bullets are processed, the computer comes back to the stack, pulls each light level off the stack, one by one, and checks it.
A "stack overflow" is when the computer tries to push too many items onto the stack and the stack runs out of space (when you get right down to it, the "stack" is just a chunk of memory). So, somewhere, the OP's computer is trying to do too much stuff at once. Possibly the newest game update streamlined some stuff, and doesn't need as big a stack--but the save, from an older version, DOES need the bigger stack.