[Android] Manny Pacquiao : Real Boxing Game Archive (.obb)

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
shinobix
Posts: 6
Joined: Sun Mar 25, 2018 1:59 pm

[Android] Manny Pacquiao : Real Boxing Game Archive (.obb)

Post by shinobix »

Hi guys/@Luigi, i need to unpack the .obb of the game, does anyone know any script for it? sample link : -

https://drive.google.com/open?id=1ZXXkD ... er2hHYJKYo

Thanks
DrStrange20
Posts: 10
Joined: Wed Jan 10, 2018 6:29 pm

Re: [Android] Manny Pacquiao : Real Boxing Game Archive (.obb)

Post by DrStrange20 »

This file UE3 archive
Jaxas
Posts: 6
Joined: Wed Feb 28, 2018 9:30 pm

Re: [Android] Manny Pacquiao : Real Boxing Game Archive (.obb)

Post by Jaxas »

Code: Select all

# By LinXP (script v0.1)
idstring "UE3AndroidOBB"
get FILES long
for i = 0 < FILES
   get NAMEZ long
   GetDString NAME NAMEZ
   get OFFSET long
   get DUMMY long
   get SIZE long
   log NAME OFFSET SIZE
next i
shinobix
Posts: 6
Joined: Sun Mar 25, 2018 1:59 pm

Re: [Android] Manny Pacquiao : Real Boxing Game Archive (.obb)

Post by shinobix »

Jaxas wrote:

Code: Select all

# By LinXP (script v0.1)
idstring "UE3AndroidOBB"
get FILES long
for i = 0 < FILES
   get NAMEZ long
   GetDString NAME NAMEZ
   get OFFSET long
   get DUMMY long
   get SIZE long
   log NAME OFFSET SIZE
next i

thanks ill try this