quickbms download

Doubts, help and support about QuickBMS and other game research tools
chrrox
Posts: 388
Joined: Thu Aug 07, 2014 10:28 pm

quickbms download

Post by chrrox »

I saw there was mention of quickbms being able to download files.
how would I have it download
http://cache.projecttokyodolls.jp/abd51 ... ackVer.snd
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: quickbms download

Post by aluigi »

dump to file:

Code: Select all

open "." "http://cache.projecttokyodolls.jp/abd513b6a9e1f9809b4416979bf760e2/md/dro/diff/MD_AssetbundleDLPackVer.snd"
get SIZE asize
log "dump.dat" 0 SIZE

dump to MEMORY_FILE:

Code: Select all

open "." "http://cache.projecttokyodolls.jp/abd513b6a9e1f9809b4416979bf760e2/md/dro/diff/MD_AssetbundleDLPackVer.snd" MEMORY_FILE
get SIZE asize MEMORY_FILE

Needs the -n option enabled for security reasons.