Skip to content
View in the app

A better way to browse. Learn more.

ResHax

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
Help us keep the site running.
Zero Tolerance for Disrespect

Indiana Jones and the Great Circle - .resources

Featured Replies

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

  • Replies 83
  • Views 17.5k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • NoobInCoding
    NoobInCoding

    My job is not to do YOUR work. My comment is for other people so they don't have the hope for something that not exist

  • Thank @Franco for help me test importing text into gameresources_patch1_pc2.resources. It will be completed at least by next week or later.

  • @Franco @PlounchBoyTry it, pack text to resources. if you need more information, read README. IndyRes TextInjector.zip

Posted Images

  • 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

  • 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.

  • 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;

 

  • 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?

  • 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.

  • 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.

  • 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

  • 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.

  • 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?

  • 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.

does anyone know the name of the text file, I've looked for it but can't find it.

20124129225974312246886.png

  • 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.
 

  • 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.

  • 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?

  • 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

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.

  • 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

  • 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?

  • 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.

  • 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

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.