Hello. I was able to extract a .bf file from said game and got several unextractable .bin files. If anyone could figure out how to decode them that would be nice
https://mega.nz/file/pF9B1TiA#IFHKRn8m8 ... M8_TujhZ7E
It has .swf files in it according to HxD.
Just Dance 1 .bin files
-
- Posts: 165
- Joined: Wed Jun 01, 2016 5:53 pm
Re: Just Dance 1 .bin files
Code: Select all
get FILENAME basename
get FLAG long
get FILES long
savepos FILES_OFF
FindLoc BASE_OFF binary "\x43\x4C\x49\x50"
goto FILES_OFF
for i = 0 < FILES
get NAME string
get EXT string
FindLoc FLAGOFF binary "\x22\x05"
goto FLAGOFF
getdstring DUMMY 0x2
get CHECK0 long
get CHECK1 long
if CHECK0 == 7001934 && CHECK1 == 7002082
getdstring SKIP 0x1C
get SIZE long
get OFFSET long
math OFFSET + BASE_OFF
string NAME p= "%s/%s.%s" FILENAME NAME EXT
savepos TMP_OFF
log NAME OFFSET SIZE
elif CHECK0 == 86169596 && CHECK1 == 7001934
getdstring SKIP 0x20
get SIZE long
get OFFSET long
math OFFSET + BASE_OFF
string NAME p= "%s/%s.%s" FILENAME NAME EXT
savepos TMP_OFF
log NAME OFFSET SIZE
endif
goto TMP_OFF
next i
-
- Posts: 70
- Joined: Thu Mar 21, 2019 1:02 am
Re: Just Dance 1 .bin files
Thanks! How exactly do I open these? They won't open in Adobe Flash projector content debugger.
-
- Posts: 70
- Joined: Thu Mar 21, 2019 1:02 am
Re: Just Dance 1 .bin files
Silly me, forgot to add sample files. Here you go: https://drive.google.com/file/d/1m9Yrop ... sp=sharing