Dead by Daylight - values are encrypted (?)

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
SexehMyerinio
Posts: 5
Joined: Sun Sep 08, 2019 6:04 am

Dead by Daylight - values are encrypted (?)

Post by SexehMyerinio »

Hi!
I'm trying to read perks and items values from .uasset files.
I open them with Notepad++ and the text shows just fine:
"GameplayModifierType.ModifyNurseBlinkAccuracy=�íËŠ9" (Check attached file)
but the value isn't showing as a number but some weird chars.
Does that mean these values are encrypted?
I unpacked .pak files without any AES key.
Thanks
SexehMyerinio
Posts: 5
Joined: Sun Sep 08, 2019 6:04 am

Re: Dead by Daylight - values are encrypted (?)

Post by SexehMyerinio »

Has anyone got any idea?

This is the value I'm looking for:
ED 1C CB 8A 39

From other forum I know it's 0.45 (45%) but how can I decrypt it by myself? There are still many other values which I have to read.
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Dead by Daylight - values are encrypted (?)

Post by Ekey »

I guess it's a string hash > ED 1C CB 8A, next values 39 00 00 00 it's a string length.
SexehMyerinio
Posts: 5
Joined: Sun Sep 08, 2019 6:04 am

Re: Dead by Daylight - values are encrypted (?)

Post by SexehMyerinio »

Yeah, sounds good but still, how I'm suppossed to know it means 0.45?
GHFear
Posts: 290
Joined: Fri Mar 30, 2018 2:48 am

Re: Dead by Daylight - values are encrypted (?)

Post by GHFear »

SexehMyerinio wrote:Yeah, sounds good but still, how I'm suppossed to know it means 0.45?


Is there no uexp or ubulk file with the same name?
or are there only uasset files?
SexehMyerinio
Posts: 5
Joined: Sun Sep 08, 2019 6:04 am

Re: Dead by Daylight - values are encrypted (?)

Post by SexehMyerinio »

GHFear wrote:
SexehMyerinio wrote:Yeah, sounds good but still, how I'm suppossed to know it means 0.45?


Is there no uexp or ubulk file with the same name?
or are there only uasset files?


I searched the whole game folder and didn't find either the uexp or ubulk files :/ Only .uasset files.
This is where I found these .uasset files:
Image
Image
Image

I used unreal_tournament_4.bms to unpack the .pak files if that changes anything.
SexehMyerinio
Posts: 5
Joined: Sun Sep 08, 2019 6:04 am

Re: Dead by Daylight - values are encrypted (?)

Post by SexehMyerinio »

To my understanding, I need to deserialize these binary files somehow, right?