Important information: this site is currently scheduled to go offline indefinitely by end of the year.

Dulala 3d files

The Original Forum. Game archives, full of resources. How to open them? Get help here.
Post Reply
jenny1367
beginner
Posts: 25
Joined: Wed Aug 18, 2021 8:10 pm
Has thanked: 9 times
Been thanked: 4 times

Dulala 3d files

Post by jenny1367 »

3d Unity game with unencrypted metadata and encrypted .data, some of which load an image but cannot preview/export.
The unity .pkg in apk also looks different than files from in-game.
in game file data, dump.cs https://mega.nz/folder/56BC1TAJ#QSKPlU85V2oDreSasLhYZA
(apk from https://www.biligame.com/detail/?id=109958)
all data is downloaded at launch, but I can provide an account if needed
MrYouKnowItAll
n00b
Posts: 13
Joined: Sat Aug 27, 2022 5:35 am
Been thanked: 4 times

Re: Dulala 3d files

Post by MrYouKnowItAll »

ask some people in the unitypy discord server to help you

< link removed by moderator>
jenny1367
beginner
Posts: 25
Joined: Wed Aug 18, 2021 8:10 pm
Has thanked: 9 times
Been thanked: 4 times

Re: Dulala 3d files

Post by jenny1367 »

MrYouKnowItAll wrote: Fri Apr 14, 2023 5:03 am ask some people in the unitypy discord server to help you

< link removed by moderator>
I did, there's no reply so I am asking here
Spiritovod
mega-veteran
mega-veteran
Posts: 181
Joined: Sun Oct 10, 2010 9:44 pm
Has thanked: 35 times
Been thanked: 162 times

Re: Dulala 3d files

Post by Spiritovod »

Alternative english title for the game is "Go Lala Go". The package format is quite interesting, kind of archive with each entry consists of preuso unity bundle header and entry can be any file (actual bundle, audio file, etc) - which is implementation of PhysFS. Last entry in archive is index with obfuscated names (probably xored), wrapped in the same way. But even if you'll extract bundles, part of the header is obfuscated along with paths in directoryinfo, and data chunks are zstd compressed with dictionary, while some chunks are marked as uncompressed, but they seem like fully encrypted.

The following script can extract separate entries from pkg archives as-is (index is ignored though). It may be useful for at least audio package, since files are not additionally obfuscated there.

unity_pkg_extract.zip
You do not have the required permissions to view the files attached to this post.
Last edited by Spiritovod on Sat Aug 26, 2023 10:57 am, edited 5 times in total.
jenny1367
beginner
Posts: 25
Joined: Wed Aug 18, 2021 8:10 pm
Has thanked: 9 times
Been thanked: 4 times

Re: Dulala 3d files

Post by jenny1367 »

Oo thank you so much ><
Post Reply