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

Search found 1910 matches

by aluigi
Fri Jul 19, 2013 6:43 pm
Forum: Game Archive
Topic: SkyDrift .exp files - extractor/repacker needed
Replies: 4
Views: 1751

Re: SkyDrift .exp files - extractor/repacker needed

No, there is nothing to do.
It's a limitation of the reimport technique with content that is not located inside the original archive (memory_files are like temporary files).
by aluigi
Sat Jul 13, 2013 8:58 am
Forum: Game Archive
Topic: SkyDrift .exp files - extractor/repacker needed
Replies: 4
Views: 1751

Re: SkyDrift .exp files - extractor/repacker needed

try this script:
http://aluigi.org/papers/bms/others/skydrift.bms
don't worry if you receive an error with some of the big archives
by aluigi
Tue Jul 02, 2013 11:58 am
Forum: Game Archive
Topic: PAK format from the developer Targem Games
Replies: 7
Views: 2955

Re: PAK format from the developer Targem Games

the tables are encrypted/obfuscated so I don't see an easy way to extract the content (which is not obfuscated)
by aluigi
Tue Jul 02, 2013 6:43 am
Forum: Game Archive
Topic: PAK format from the developer Targem Games
Replies: 7
Views: 2955

Re: PAK format from the developer Targem Games

I fixed the behaviour with Insane2 but I pass on Star Conflict
by aluigi
Sun Jun 30, 2013 11:20 am
Forum: Code Talk
Topic: Question about QuickBMS commands
Replies: 19
Views: 15370

Re: Question about QuickBMS commands

set name unicode name remember to use the latest version of QuickBMS that I have released yesterday, it has a better support for unicode strings note that the handling of utf16 endianess depepends by the current endian status (I tell you in case you get strange chars), the one of that string is lit...
by aluigi
Sun Jun 09, 2013 3:53 pm
Forum: Code Talk
Topic: Question about QuickBMS commands
Replies: 19
Views: 15370

Re: Question about QuickBMS commands

I guess I have found a problem that may be related to this, I'm checking it
by aluigi
Sun Jun 09, 2013 3:42 pm
Forum: Code Talk
Topic: Question about QuickBMS commands
Replies: 19
Views: 15370

Re: Question about QuickBMS commands

Do you have an example command to replicate the problem? Here I have tried using -D with absolute and relative folders, from the input folder, from the output folder, using same input and output folder and so on but in my minimal tests I did there was nothing wrong. I used just a simple script like ...
by aluigi
Sun Jun 02, 2013 5:52 pm
Forum: Code Talk
Topic: Question about QuickBMS commands
Replies: 19
Views: 15370

Re: Question about QuickBMS commands

try placing echo y in pipe before quickbms:

Code: Select all

echo y | quickbms YOUR_OPTIONS
by aluigi
Sun Jun 02, 2013 1:37 pm
Forum: Code Talk
Topic: Question about QuickBMS commands
Replies: 19
Views: 15370

Re: Question about QuickBMS commands

cool idea the negative filter, I have just added it to quickbms 0.5.21a: -f "!{}.txt" will extract all the files except the txt ones -f "{}.mp*;!{}.mp3" all the mp* files (like mpg or mpeg) except the mp3 files why I use {} instead of *? because windows is so stupid that even if ...
by aluigi
Sat May 25, 2013 7:43 am
Forum: Code Talk
Topic: Add files size to beginning of another outputted file.
Replies: 6
Views: 3820

Re: Add files size to beginning of another outputted file.

I don't know what programming language you are using but with quickbms this is not complex: math ZSIZE = 0x1234 # placeholder math SIZE = 0x5678 # placeholder log MEMORY_FILE 0 0 put ZSIZE long MEMORY_FILE put 0 long MEMORY_FILE put SIZE long MEMORY_FILE append log MEMORY_FILE 0 ZSIZE append get SIZ...
by aluigi
Fri May 24, 2013 4:15 pm
Forum: Code Talk
Topic: Question about QuickBMS commands
Replies: 19
Views: 15370

Re: Question about QuickBMS commands

@chrrox
do you have the same problem if you use {} instead of * in your filter?
by aluigi
Wed May 22, 2013 7:02 am
Forum: Code Talk
Topic: Creating a CSV table with QuickBMS
Replies: 1
Views: 2559

Re: Creating a CSV table with QuickBMS

parsing strings with quickbms is a pain just because the language wasn't intended for it. for LINEBREAK you need to use the binary type because \n is a C escape char handled only by the bynary type. signed_short is handled in read mode like get VAR signed_int, and yes it's my fault to forget "s...
by aluigi
Wed May 22, 2013 5:54 am
Forum: Code Talk
Topic: Question about QuickBMS commands
Replies: 19
Views: 15370

Re: Question about QuickBMS commands

I have created a folder containing 2 files named asdf.dat and 00000000.dat and then I launched "quickbms script.bms that_folder" without having problems.

do you have a way to replicate that problem?