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.

I need help editing .binsloc file text for Dying Light 2

Featured Replies

  • Author
  • Localization

NoobInCoding, posted Tue Feb 15, 2022 7:26 am (69894)


can you send the other language files?
  • Author
  • Localization

expect_fail, posted Sat Feb 26, 2022 9:58 am (70123)


I started making a tool for converting binsloc files to text files and back again a couple days ago and I think it's more or less finished but it needs a bit more testing before it can be released to the public. It'll appear one one of my websites/Discord server a bit later but if you're interested in testing it right now then feel free to PM me. The tool is a single executable (CLI) file that supports Windows and Linux (tested on Ubuntu 20.04) so let me know which platform you're using.

I wanted to try the russian file you shared but it seems to no longer exist.

Image
Image
Image
  • Author
  • Localization

binlv1, posted Sat Mar 05, 2022 3:58 pm (70301)


expect_fail wrote:
I started making a tool for converting binsloc files to text files and back again a couple days ago and I think it's more or less finished but it needs a bit more testing before it can be released to the public. It'll appear one one of my websites/Discord server a bit later but if you're interested in testing it right now then feel free to PM me. The tool is a single executable (CLI) file that supports Windows and Linux (tested on Ubuntu 20.04) so let me know which platform you're using.

I wanted to try the russian file you shared but it seems to no longer exist.

Image
Image
Image

What about fonts file?
  • Author
  • Localization

dvionst, posted Sun Mar 13, 2022 8:12 pm (70468)


expect_fail wrote:
I started making a tool for converting binsloc files to text files and back again a couple days ago and I think it's more or less finished but it needs a bit more testing before it can be released to the public. It'll appear one one of my websites/Discord server a bit later but if you're interested in testing it right now then feel free to PM me. The tool is a single executable (CLI) file that supports Windows and Linux (tested on Ubuntu 20.04) so let me know which platform you're using.

I wanted to try the russian file you shared but it seems to no longer exist.

Image
Image
Image


Hi, check your PM. I'm interested to use your tool
  • Author
  • Localization

NoobInCoding, posted Mon Mar 14, 2022 10:06 am (70481)


Code:
//------------------------------------------------
//--- 010 Editor v11.0.1 Binary Template
//
//      File: Dying Light 2
//   Authors: NoobInCoding
//   Version:
//   Purpose:
//  Category:
// File Mask:
//  ID Bytes:
//   History:
//------------------------------------------------
int Flag;
short FileTypeLen;
char FileType[FileTypeLen];
int unknownOne;
int unknownTwo;
char SpaceOne[1];
short IdHeadLen;
char IdHead[IdHeadLen];
int IdChkSize;
int IdCount;
struct{
short IdSize;
char Id[IdSize];
}ID[IdCount];
char SpaceTwo[1];
short StrHeadLen;
char StrHead[StrHeadLen];
int StrChkSize;
int StrCount;
struct{
short StrLen;
char Str[StrLen];
}Str[StrCount];
byte EndOfFile[21];
  • Author
  • Localization

expect_fail, posted Tue Mar 22, 2022 7:11 am (70641)


My apologies for the delay. I thought nobody was interested so I stopped checking this site.
  • Author
  • Localization

expect_fail, posted Tue Mar 22, 2022 7:13 am (70642)


binlv1 wrote:
expect_fail wrote:
...

What about fonts file?

I haven't looked into font files but my tool only handles binsloc files.
  • Author
  • Localization

MuslimCyberGames, posted Mon Mar 28, 2022 7:49 pm (70761)


Hey, I just wanna some ask. How you find the binsloc files?
  • Author
  • Localization

expect_fail, posted Tue Mar 29, 2022 2:15 am (70764)


MuslimCyberGames wrote:
Hey, I just wanna some ask. How you find the binsloc files?

Code:
steamapps/common/Dying Light 2/ph/source/data_lang/dataen.pak/texts/pc/pc_en_lang.binsloc

Similar location for other languages.
  • Author
  • Localization

MuslimCyberGames, posted Tue Mar 29, 2022 10:34 am (70768)


Quote:
Code:
steamapps/common/Dying Light 2/ph/source/data_lang/dataen.pak/texts/pc/pc_en_lang.binsloc

Similar location for other languages.


As for the Pak file itself, how do I unpack it?
  • Author
  • Localization

expect_fail, posted Tue Mar 29, 2022 11:09 am (70769)


MuslimCyberGames wrote:
As for the Pak file itself, how do I unpack it?

It's a regular zip file so you can use any program that supports zip files.
  • Author
  • Localization

MuslimCyberGames, posted Tue Mar 29, 2022 2:51 pm (70772)


expect_fail wrote:
MuslimCyberGames wrote:
As for the Pak file itself, how do I unpack it?

It's a regular zip file so you can use any program that supports zip files.


Is this also included to import it into the Pak file too?
  • Author
  • Localization

expect_fail, posted Wed Mar 30, 2022 2:52 pm (70779)


MuslimCyberGames wrote:
expect_fail wrote:
MuslimCyberGames wrote:
As for the Pak file itself, how do I unpack it?

It's a regular zip file so you can use any program that supports zip files.


Is this also included to import it into the Pak file too?

You can use any zip archiving program to repack the pak file. WinZIP, WinRAR, 7-zip (recommended), etc. If you open the pak file in 7-zip then you can browse, extract and inject files by dragging and dropping them. My binsloc tool's only concern is binsloc files.
  • Author
  • Localization

MuslimCyberGames, posted Wed Mar 30, 2022 3:09 pm (70780)


expect_fail wrote:
MuslimCyberGames wrote:
expect_fail wrote:
It's a regular zip file so you can use any program that supports zip files.


Is this also included to import it into the Pak file too?

You can use any zip archiving program to repack the pak file. WinZIP, WinRAR, 7-zip (recommended), etc. If you open the pak file in 7-zip then you can browse, extract and inject files by dragging and dropping them. My binsloc tool's only concern is binsloc files.


Okey, thanks for help and sharing.
Guest
This topic is now closed to further replies.

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.