Hi
How i do rip android games??
I wants some models but i dont now how i do this.
I use bluestacks with 3D Ripper DX but this dont work
Have somone a another idea??
Ps: I can rip unity3d games pc android ... but not unity3d i cant :/
If it's an apk file then just rename the extension to zip and extract. Then open the folder contents and post the file extensions here so the pros can help but Im assuming you already did the extraction thing already.
(01-16-2015, 03:41 PM)BlueBlur97 Wrote: [ -> ]If it's an apk file then just rename the extension to zip and extract. Then open the folder contents and post the file extensions here so the pros can help but Im assuming you already did the extraction thing already.
Here i upload a file but i cant open the files
i want some models
http://www71.zippyshare.com/v/LSz7FXXS/file.html
(01-17-2015, 11:16 AM)rayleigh Wrote: [ -> ] (01-16-2015, 03:41 PM)BlueBlur97 Wrote: [ -> ]If it's an apk file then just rename the extension to zip and extract. Then open the folder contents and post the file extensions here so the pros can help but Im assuming you already did the extraction thing already.
Here i upload a file but i cant open the files i want some models
http://www71.zippyshare.com/v/LSz7FXXS/file.html
That folder doesn't have models, assuming it's a UNITY3D game.
(01-17-2015, 11:44 AM)nobody231 Wrote: [ -> ] (01-17-2015, 11:16 AM)rayleigh Wrote: [ -> ] (01-16-2015, 03:41 PM)BlueBlur97 Wrote: [ -> ]If it's an apk file then just rename the extension to zip and extract. Then open the folder contents and post the file extensions here so the pros can help but Im assuming you already did the extraction thing already.
Here i upload a file but i cant open the files i want some models
http://www71.zippyshare.com/v/LSz7FXXS/file.html
That folder doesn't have models, assuming it's a UNITY3D game.
Can somone say me how i can open a *.jet data??
There are texutere and models i think because with hex edior it says me
........v..?...........data/ui/textures/fe_trailclosed.png.
.......U...!..w!......data/ui/textures/fe_trailarrow_green.png.....
I've written a script to extract the jet file, but the files are compressed
and I don't know the compression type used :/
By the way, is the game by any chance made by Planet Team?
EDIT:
yay!
Code:
# Game: Sledmania (Android)
# by TGE Jan 2015
# script for QuickBMS http://aluigi.org/papers.htm#quickbms
comtype LZMA
endian little
get dummy long
get PSIZE long
get dummy long
get PZSIZE long
get dummy long
get FILES long
get INFO_OFFSET long
goto INFO_OFFSET
for i = 0 < FILES
get OFFSET long
math OFFSET += 4
get ZSIZE long
get SIZE long
get dummy long
getdstring NAME 0x104
clog NAME OFFSET ZSIZE SIZE
next i
(01-17-2015, 01:32 PM)TGE Wrote: [ -> ]I've written a script to extract the jet file, but the files are compressed and I don't know the compression type used :/
By the way, is the game by any chance made by Planet Team?
EDIT:
yay!
Code:
# Game: Sledmania (Android)
# by TGE Jan 2015
# script for QuickBMS http://aluigi.org/papers.htm#quickbms
comtype LZMA
endian little
get dummy long
get PSIZE long
get dummy long
get PZSIZE long
get dummy long
get FILES long
get INFO_OFFSET long
goto INFO_OFFSET
for i = 0 < FILES
get OFFSET long
math OFFSET += 4
get ZSIZE long
get SIZE long
get dummy long
getdstring NAME 0x104
clog NAME OFFSET ZSIZE SIZE
next i
I can only say awesome
Thx you how do you now to extract the *.jet data??
The is make by Best Free games inc
Save the script I posted above, and use
QuickBMS to extract the files using the script.
(01-20-2015, 02:49 AM)TGE Wrote: [ -> ]Save the script I posted above, and use QuickBMS to extract the files using the script.
I know how to extract the *.jet data.
But my question was how do you do you script the script ?????
Do you have some tutorials for scripting ?????
(01-20-2015, 05:41 AM)rayleigh Wrote: [ -> ] (01-20-2015, 02:49 AM)TGE Wrote: [ -> ]Save the script I posted above, and use QuickBMS to extract the files using the script.
I know how to extract the *.jet data.
But my question was how do you do you script the script ?????
Do you have some tutorials for scripting ?????
http://zenhax.com/viewtopic.php?f=4&t=72
Aside from that, you also need a basic understanding of how binary files work, and how hexidecimal works.