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

Search found 1910 matches

by aluigi
Mon Feb 24, 2014 12:52 pm
Forum: Compressed files and methods
Topic: Glitches and errors with LEGO games 0.7a bms
Replies: 3
Views: 2567

Re: Glitches and errors with LEGO games 0.7a bms

Do you mean that the games don't work after you extract the files and remove (or leave there) the original archives? If that's the case I suggest this simple test, comment the 2 commands executed "if PACKED & 2" so that you will extract only the non-compressed files and check if the ga...
by aluigi
Mon Feb 24, 2014 12:46 pm
Forum: Game Archive
Topic: Strider (.PAK ) [Xbox360]
Replies: 15
Views: 7446

Re: Strider (.PAK ) [Xbox360]

unfortunately the problem in this case was a longlong that was set as long (fixed in the current script) and the need of allocating lot of memory for unpacking the archive. Basically the whole archive is packed as an unique compressed stream so the memory-to-memory feature of quickbms requires to al...
by aluigi
Sat Feb 22, 2014 12:31 pm
Forum: Game Archive
Topic: Ikaruga (.arc ) [PC]
Replies: 11
Views: 5596

Re: Ikaruga (.arc ) [PC]

except for the encryption, it's the same format of Sin Punishment 2.

The following is the quickbms script to extract the files:
http://aluigi.org/papers/bms/others/ikaruga.bms
by aluigi
Fri Dec 20, 2013 12:12 am
Forum: Game Localization
Topic: Telltale and Gametap - extract to translate
Replies: 620
Views: 263060

Re: Telltale and Gametap - extract to translate

@Ekey
thanks for the key

Luckily the update was quite simple and didn't require debugging, just added the new key and ttarch_chunks_b set to 1:

http://aluigi.org/papers.htm#ttarchext
by aluigi
Wed Nov 13, 2013 9:51 pm
Forum: Game Archive
Topic: unity3d Variant?
Replies: 14
Views: 11584

Re: unity3d Variant?

I'm checking the file and the bms script, looks like OFFSET is a 16bit field but it's not clear what's different in the lzma algorithm.
by aluigi
Sun Oct 20, 2013 8:57 am
Forum: Code Talk
Topic: BMS scripts details and search
Replies: 0
Views: 1737

BMS scripts details and search

I have improved the PHP script that lists the BMS scripts located in the "others" folder of the QuickBMS website: http://aluigi.org/quickbms.htm#others As you can see now you have also the title of the script and some parts of the idstring, comtype, encryption, filexor and filerot commands...
by aluigi
Fri Oct 18, 2013 4:09 pm
Forum: Game Archive
Topic: Black Desert PAZ + Meta File
Replies: 153
Views: 101274

Re: Black Desert Client Research - PAZ + META File

cool, script updated for supporting the handling of both meta and paz archives depending by what the user choice :)
by aluigi
Fri Oct 18, 2013 3:34 pm
Forum: Game Archive
Topic: Black Desert PAZ + Meta File
Replies: 153
Views: 101274

Re: Black Desert Client Research - PAZ + META File

the new version of quickbms is out: http://quickbms.aluigi.org regarding the paz archives I used those posted by ehnoah, and if you sum the offset and size of the last file you reach the end of archive without unused bytes at the end. maybe it's an old archive and they added the string tables in the...
by aluigi
Fri Oct 18, 2013 1:19 pm
Forum: Game Archive
Topic: Black Desert PAZ + Meta File
Replies: 153
Views: 101274

Re: Black Desert Client Research - PAZ + META File

I checked pad00001.paz (and I bet that 2.paz is the same), there is no free space for string tables.
it contains only the files content
by aluigi
Fri Oct 18, 2013 12:37 pm
Forum: Game Archive
Topic: Black Desert PAZ + Meta File
Replies: 153
Views: 101274

Re: Black Desert Client Research - PAZ + META File

I have checked one of the PAZ file but there is no names table there, just the header, the entries and the content of the files without "empty spaces".
by aluigi
Fri Oct 18, 2013 12:31 pm
Forum: Game Archive
Topic: Black Desert PAZ + Meta File
Replies: 153
Views: 101274

Re: Black Desert Client Research - PAZ + META File

I guess I have finished the script but I have not tested it because I don't have all the files: http://aluigi.org/papers/bms/others/blackdesert.bms You need the new version of quickbms for using it because I have added the new compression algorithm, I will release the new version in the next hours N...
by aluigi
Fri Oct 18, 2013 11:25 am
Forum: Game Archive
Topic: DJMax Trilogy [PC] .pak files
Replies: 25
Views: 12716

Re: DJMax Trilogy [PC] .pak files

judging the pseudocode it looks lzo1x
by aluigi
Fri Oct 18, 2013 9:16 am
Forum: Game Archive
Topic: Black Desert PAZ + Meta File
Replies: 153
Views: 101274

Re: Black Desert Client Research - PAZ + META File

here I have everything except the number of PAZ archive (pPAZFileNum) where is located the file assigned to the filename. Do we have a full understanding of the index table? This is what I have for the files linked in the first posts (0 meta and 1/2 paz): get HASH long get FOLDER_NUM long # 48c 48c ...
by aluigi
Thu Oct 17, 2013 9:28 pm
Forum: Game Archive
Topic: Black Desert PAZ + Meta File
Replies: 153
Views: 101274

Re: Black Desert Client Research - PAZ + META File

thanks a lot. I have tried the pseudo code of the sub_41C680 function (with some modification to compile it) and it works, while Decompress doesn't seem stable but after all it's not strictly necessary. so the only missing thing is the assigning of the filenames to the files, that Index table (the o...