Hi, i'm trying to extract the files from this obb file but none of the current bms scripts are capable.
The closest one was This War of Mine bms script
viewtopic.php?p=6606#p6606
When i used that script it went into an endless loop and many extracted files were 0 bytes or were overlapping others or cut short.
here is a sample made from the filecutter script
if you need a larger sample i will generate another.
Thanks for any help!
[Android] Star Wars: Rebels. Recon missions (.obb)
-
- Posts: 706
- Joined: Fri Aug 08, 2014 1:06 am
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: [Android] Star Wars: Rebels. Recon missions (.obb)
Yeah the the starting cut must be bigger, let's say 10 Mb at least.
In the part you provide there is a table with references to unicode names followed by codepages, but no offsets.
In the part you provide there is a table with references to unicode names followed by codepages, but no offsets.
-
- Posts: 706
- Joined: Fri Aug 08, 2014 1:06 am
Re: [Android] Star Wars: Rebels. Recon missions (.obb)
Okay thanks here is 10 MB from start and end
Code: Select all
http://www.mediafire.com/download/63884tqcvahvcyz/filecutter10MB_SWRebels.7z
Last edited by Acewell on Fri Nov 20, 2015 1:40 pm, edited 1 time in total.
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: [Android] Star Wars: Rebels. Recon missions (.obb)
Apparently they were not filenames but just the files.
http://aluigi.org/bms/star_wars_rebels_obb.bms
http://aluigi.org/bms/star_wars_rebels_obb.bms
-
- Posts: 706
- Joined: Fri Aug 08, 2014 1:06 am
Re: [Android] Star Wars: Rebels. Recon missions (.obb)
Awesome thanks!
-
- Posts: 706
- Joined: Fri Aug 08, 2014 1:06 am
Re: [Android] Star Wars: Rebels. Recon missions (.obb)
here is an updated bms script to extract the files with names from game version 1.4.0 .obb
Code: Select all
# Star Wars: Rebels. Recon missions 1.4.0 (.obb)
get SKIP long
get FILES long
math NAME_OFF = 0x299bc520
for i = 0 < FILES
get SKIP long
get OFFSET longlong
savepos TMP
math OFFSET + 0x53228
goto OFFSET
get SIZE longlong
savepos OFFSET
goto NAME_OFF
getct NAME string 0x0a
savepos NAME_OFF
log NAME OFFSET SIZE
goto TMP
next i