Sony Online Entertainment .soe file

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
MexicanPB
Posts: 15
Joined: Tue Apr 07, 2020 5:44 am

Sony Online Entertainment .soe file

Post by MexicanPB »

I am trying to mod Bejeweled 2, but the file is in some weird format. I notice the .soe format is common with games developed by Sony Online Entertainment. The header for the file I provided below has a header of SOE.ZLB https://drive.google.com/file/d/1-1jpyPwp1oC7ql1c5lG-MFyAnLYeaWdq/view?usp=sharing
mrmemmo_
Posts: 46
Joined: Sat Mar 16, 2019 1:21 pm

Re: Sony Online Entertainment .soe file

Post by mrmemmo_ »

it's zlib compress.

Code: Select all

char magic[4];
char compress[4];
int size;
int zsize;
int unknown;
byte buffer[zsize];
xmotoracer
Posts: 6
Joined: Sun May 01, 2022 6:07 pm

Re: Sony Online Entertainment .soe file

Post by xmotoracer »

nope
MexicanPB
Posts: 15
Joined: Tue Apr 07, 2020 5:44 am

Re: Sony Online Entertainment .soe file

Post by MexicanPB »

mrmemmo_ wrote:it's zlib compress.

Code: Select all

char magic[4];
char compress[4];
int size;
int zsize;
int unknown;
byte buffer[zsize];


Seems to not work for me
MexicanPB
Posts: 15
Joined: Tue Apr 07, 2020 5:44 am

Re: Sony Online Entertainment .soe file

Post by MexicanPB »

Okay, I solved it. I just used offzip