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
Did either of you manage to get a fix for this? I am still having issues even after re-installing the game itself multiple times and redoing verifications etc.
fatal error:
[file:c:/B/tech_exiles/code/engine/source/runtime/coreuobject/private/serialization/asyncloading.cpp] [line: 3485]
could not find superstruct useSRGB to create useSRGB
That's what mine says when trying to load into official server, or any other server for that matter
OMG FUNCOM! Not again... dont you guys test???
I'm on my third re-install and file checking of the last 24 hours, hopefully it's worked this time
Using admin teleport, crash.
Ordering my thralls to drink aloe extract, crash.
Outfitting my thralls, crash.
Poking exiles with spear, crash.
Dead? Crash indeed.
That error happens when a non serializable type is used in a serialized variable, and that happens ALWAYS when a mod does it, because Funcom's own variable types are serializeable because they are declared BEFORE the content is loaded. When you have a mod, the game has already loaded the DB before loading your mod, so you cant use direct serialization with custom types made by you.
This problem often occurs when you use a mod that store data customized, which is common for mods using custom classes, custom appearances that are not originally in the game (instead of using the character layout type, they create one of their own).
This specific error often occurs when you use a mod that creates new character colors (skin, eyes, etc) and store it, then during an update, the mod cant rebuild that correctly before being updated itself, and then it triggers that error.
That is one "case", but the specific serialization error ALWAYS occur when a mod uses custom types. Again, Funcom types are not "custom" so they dont trigger that specific error.