December 18, 20241 yr Anyone able to make a script to extract the .resources files for this game? It's probably based off of the Wolfenstein 2 file format since it is the same developer. I attached a sample resource file indy.zip
December 18, 20241 yr Localization 2 hours ago, SiOreng said: try this https://github.com/brunoanc/EternalResourceExtractor Unfortunately, this tool does not extract text and also does not repack. It would be really nice if a tool could be made for this game. Edited December 18, 20241 yr by Franco
December 19, 20241 yr Author 20 hours ago, Franco said: Unfortunately, this tool does not extract text and also does not repack. It would be really nice if a tool could be made for this game. I wish we could make it load loose files for after it extracts files
December 20, 20241 yr Localization Unfortunately, none of these tools fully unarchive and repack. This game needs a tool that will extract and repack the language files. And I'm sure there are some very talented people here who can do it.
December 27, 20241 yr Supporter I believe that game uses some resources check so you will need patch the exe to load modified resources. At DOOM Eternal there is code which dissable loading lang file from resources and reads is as loose file. But there is only strings/lang for all languages. No name like english.lang, german.lang or russian.lang etc. Anyway struct of *.lang file is quite simple. local uint32 i; uint32 StringSize; BigEndian(); uint32 StringCount; LittleEndian(); struct { for (i=0; i < StringCount; i++) struct { uint32 Hash; uint32 KeyLen; char KeyStr[KeyLen+1]; uint32 ValLen; char ValStr[ValLen+1]; }StringRef; }Strings;
December 27, 20241 yr Localization 6 hours ago, h3x3r said: I believe that game uses some resources check so you will need patch the exe to load modified resources. At DOOM Eternal there is code which dissable loading lang file from resources and reads is as loose file. But there is only strings/lang for all languages. No name like english.lang, german.lang or russian.lang etc. Anyway struct of *.lang file is quite simple. local uint32 i; uint32 StringSize; BigEndian(); uint32 StringCount; LittleEndian(); struct { for (i=0; i < StringCount; i++) struct { uint32 Hash; uint32 KeyLen; char KeyStr[KeyLen+1]; uint32 ValLen; char ValStr[ValLen+1]; }StringRef; }Strings; Thanks h3x3r, can you please make a tool for this?
December 28, 20241 yr Supporter Infogram did his tool for DOOM Eternal lang. So i edited it a bit to work with this one from Indy. But it has one flaw. The lang file has int32 size pointer on the start of file, but i don't know how to read text buffer and and return size of it and write it. So i was doing that with 010 hex editor.
December 28, 20241 yr Localization 7 hours ago, h3x3r said: Infogram did his tool for DOOM Eternal lang. So i edited it a bit to work with this one from Indy. But it has one flaw. The lang file has int32 size pointer on the start of file, but i don't know how to read text buffer and and return size of it and write it. So i was doing that with 010 hex editor. I understand, but thank you for your efforts. I hope you find a way.
January 3, 20251 yr Localization On 12/20/2024 at 11:44 PM, Franco said: Unfortunately, none of these tools fully unarchive and repack. This game needs a tool that will extract and repack the language files. And I'm sure there are some very talented people here who can do it. https://dtzxporter.com/tools/henri Use tool, the text file is located in gameresources_patch1_pc.resources, it is named Strings
January 4, 20251 yr Localization 13 hours ago, Datura2 said: https://dtzxporter.com/tools/henri Use tool, the text file is located in gameresources_patch1_pc.resources, it is named Strings Thanks, but there is no back packing feature, so it's not really useful.
January 4, 20251 yr Localization 9 hours ago, Franco said: Thanks, but there is no back packing feature, so it's not really useful. Do you need a tool to edit Strings or pack Strings into resources?
January 4, 20251 yr Localization 3 hours ago, Datura2 said: Do you need a tool to edit Strings or pack Strings into resources? Yes, right now we need a tool that will unpack and package both the archive file and the string file.
January 6, 20251 yr does anyone know the name of the text file, I've looked for it but can't find it.
January 6, 20251 yr Localization On 1/5/2025 at 3:02 AM, Franco said: Yes, right now we need a tool that will unpack and package both the archive file and the string file. I'm writing a tool to edit Strings, wait for it.
January 6, 20251 yr Localization 3 hours ago, Datura2 said: I'm writing a tool to edit Strings, wait for it. Thank you very much 🙂 We also need to repack the .resources, the archive file, so I hope you will take a look at that too.
January 6, 20251 yr Localization 1 hour ago, Franco said: Thank you very much 🙂 We also need to repack the .resources, the archive file, so I hope you will take a look at that too. Can you send me the Strings file?
January 6, 20251 yr Localization 31 minutes ago, Datura2 said: Can you send me the Strings file? Hello, thank you very much for your interest in the tool. There are two different tools that open the .resources file, but I'm not sure if they literally extract the string file with the extension defined. So I guess the content of the .resources file should be resolved first. Because we cannot repack the archive file, and we are not sure if the string file is fully defined. Because we extracted this file raw with the Henri tool. strings.rar
January 6, 20251 yr 34 minutes ago, Datura2 said: Can you send me the Strings file? Hi Datura2, as Franco said above, I think you first need an unpacking and repackaging tool inside the .resources archive file. Because we need to put the string file back into the archive. We would really appreciate it if you could take a look at this too.
January 7, 20251 yr Localization 19 hours ago, Franco said: Hello, thank you very much for your interest in the tool. There are two different tools that open the .resources file, but I'm not sure if they literally extract the string file with the extension defined. So I guess the content of the .resources file should be resolved first. Because we cannot repack the archive file, and we are not sure if the string file is fully defined. Because we extracted this file raw with the Henri tool. strings.rar 1.01 MB · 4 downloads forgot, I need the file gameresources_patch1_pc.resources as well
January 7, 20251 yr 7 hours ago, Datura2 said: forgot, I need the file gameresources_patch1_pc.resources as well Here is the file you asked for. https://www.mediafire.com/file/xchl050u5yvsyp2/gameresources_patch1_pc.rar/file
January 11, 20251 yr Localization On 1/7/2025 at 8:55 AM, Datura2 said: forgot, I need the file gameresources_patch1_pc.resources as well Hello Datura2, is there any news?
January 11, 20251 yr Localization 3 hours ago, Franco said: Hello Datura2, is there any news? I've done some research on Strings, the struct is simple, I might have a tool for it, just wait.
January 11, 20251 yr Localization 41 minutes ago, Datura2 said: I've done some research on Strings, the struct is simple, I might have a tool for it, just wait. I see, this is very good news. We are looking forward to it, thank you 🙂
Create an account or sign in to comment