One Piece Pirate Warriors 3 .a .b .c

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
troler11
Posts: 65
Joined: Sat Aug 29, 2015 1:13 am

One Piece Pirate Warriors 3 .a .b .c

Post by troler11 »

I wanted some program or BMS to unzip these files for me to translate the game into my language

LINKDATA_EU_OS_EUNA.A 2,568 MB
LINKDATA_EU_OS_EUNA.B 2,115 MB
LINKDATA_EU_OS_EUNA.C 848 MB
LINKDATA_EU_OS_EUNA.D 895 MB

http://bt.3dmgame.com/show.php?hash=518 ... 089d2facf8
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: One Piece Pirate Warriors 3 .a .b .c

Post by aluigi »

Use the filecutter script on LINKDATA_EU_OS_EUNA.C and upload the 2 resulted files:
http://aluigi.org/papers/bms/others/filecutter.bms
troler11
Posts: 65
Joined: Sat Aug 29, 2015 1:13 am

Re: One Piece Pirate Warriors 3 .a .b .c

Post by troler11 »

here the result
LINKDATA_EU_OS_EUNA.C

http://www.4shared.com/rar/svw2Ewgrce/dasdasda.html
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: One Piece Pirate Warriors 3 .a .b .c

Post by aluigi »

troler11
Posts: 65
Joined: Sat Aug 29, 2015 1:13 am

Re: One Piece Pirate Warriors 3 .a .b .c

Post by troler11 »

with this code, I can edit the text of the game?
why has created several .dat files
troler11
Posts: 65
Joined: Sat Aug 29, 2015 1:13 am

Re: One Piece Pirate Warriors 3 .a .b .c

Post by troler11 »

created several .dat files .gt1
however no text file.
and the servants are with also protection.
troler11
Posts: 65
Joined: Sat Aug 29, 2015 1:13 am

Re: One Piece Pirate Warriors 3 .a .b .c

Post by troler11 »

text http://prntscr.com/8a8bvh
LINKDATA_EU_OS_EUNA.C
I want to unzip the text files, and edit.
troler11
Posts: 65
Joined: Sat Aug 29, 2015 1:13 am

Re: One Piece Pirate Warriors 3 .a .b .c

Post by troler11 »

text http://prntscr.com/8a91e4
LINKDATA_EU_OS_EUNA.D
troler11
Posts: 65
Joined: Sat Aug 29, 2015 1:13 am

Re: One Piece Pirate Warriors 3 .a .b .c

Post by troler11 »

Direct editing in this file does not work in the game.
so I have to unpack to edit best.
troler11
Posts: 65
Joined: Sat Aug 29, 2015 1:13 am

Re: One Piece Pirate Warriors 3 .a .b .c

Post by troler11 »

http://prntscr.com/8a92hk
using the bms that you gave me, the files are so.
and not the to edit anything
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: One Piece Pirate Warriors 3 .a .b .c

Post by aluigi »

They are specific formats of this engine/game.
I can't help much but maybe someone with experience on this engine will give you some tips.
troler11
Posts: 65
Joined: Sat Aug 29, 2015 1:13 am

Re: One Piece Pirate Warriors 3 .a .b .c

Post by troler11 »

I found the translation files, but I edit and when it's part of the game it closes.
troler11
Posts: 65
Joined: Sat Aug 29, 2015 1:13 am

Re: One Piece Pirate Warriors 3 .a .b .c

Post by troler11 »

and when I edit the BMS says that the file and bigger, and the error to import
sigroon365
Posts: 330
Joined: Fri Nov 21, 2014 4:03 am

Re: One Piece Pirate Warriors 3 .a .b .c

Post by sigroon365 »

In my opinion, ZSIZE is Full_ZIZE, SIZE is Full_SIZE.

Code: Select all

get DUMMY long
get FILES long
get ALIGN long
get ZERO long

for i = 0 < FILES
    get OFFSET longlong
    get Full_ZSIZE long
    get Full_SIZE long
    math OFFSET * ALIGN
   
    if Full_SIZE == 0 || Full_SIZE == 1129534530
    log "" OFFSET Full_ZSIZE
    else
   
    do
    ...
       putvarchr MEMORY_FILE Full_SIZE 0
    log MEMORY_FILE 0 0
    append
    while ...

   clog MEMORY_FILE OFFSET Full_ZSIZE Full_SIZE

    endif     
next i   
   


520h at LINKDATA_EU_OS_EUNA.A is
0F 01 00 00 00 00 00 00 56 14 00 00 20 99 01 00

so, it starts at 87800h. And 19920 is Full_SIZE again. 5D9 is ZSIZE.
Image

Start from 87808h and SIZE 5D9 is ZSIZE2 = 637 at 87DE1h. And so again..
troler11
Posts: 65
Joined: Sat Aug 29, 2015 1:13 am

Re: One Piece Pirate Warriors 3 .a .b .c

Post by troler11 »

sigroon365 wrote:In my opinion, ZSIZE is Full_ZIZE, SIZE is Full_SIZE.

Code: Select all

get DUMMY long
get FILES long
get ALIGN long
get ZERO long

for i = 0 < FILES
    get OFFSET longlong
    get Full_ZSIZE long
    get Full_SIZE long
    math OFFSET * ALIGN
   
    if Full_SIZE == 0 || Full_SIZE == 1129534530
    log "" OFFSET Full_ZSIZE
    else
   
    do
    ...
       putvarchr MEMORY_FILE Full_SIZE 0
    log MEMORY_FILE 0 0
    append
    while ...

   clog MEMORY_FILE OFFSET Full_ZSIZE Full_SIZE

    endif     
next i   
   


520h at LINKDATA_EU_OS_EUNA.A is
0F 01 00 00 00 00 00 00 56 14 00 00 20 99 01 00

so, it starts at 87800h. And 19920 is Full_SIZE again. 5D9 is ZSIZE.
Image

Start from 87808h and SIZE 5D9 is ZSIZE2 = 637 at 87DE1h. And so again..


code error
troler11
Posts: 65
Joined: Sat Aug 29, 2015 1:13 am

Re: One Piece Pirate Warriors 3 .a .b .c

Post by troler11 »

sigroon365 wrote:In my opinion, ZSIZE is Full_ZIZE, SIZE is Full_SIZE.

Code: Select all

get DUMMY long
get FILES long
get ALIGN long
get ZERO long

for i = 0 < FILES
    get OFFSET longlong
    get Full_ZSIZE long
    get Full_SIZE long
    math OFFSET * ALIGN
   
    if Full_SIZE == 0 || Full_SIZE == 1129534530
    log "" OFFSET Full_ZSIZE
    else
   
    do
    ...
       putvarchr MEMORY_FILE Full_SIZE 0
    log MEMORY_FILE 0 0
    append
    while ...

   clog MEMORY_FILE OFFSET Full_ZSIZE Full_SIZE

    endif     
next i   
   


520h at LINKDATA_EU_OS_EUNA.A is
0F 01 00 00 00 00 00 00 56 14 00 00 20 99 01 00

so, it starts at 87800h. And 19920 is Full_SIZE again. 5D9 is ZSIZE.
Image

Start from 87808h and SIZE 5D9 is ZSIZE2 = 637 at 87DE1h. And so again..


Help please,
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: One Piece Pirate Warriors 3 .a .b .c

Post by aluigi »

Script updated to version 0.2.
I guess it's correct now.
troler11
Posts: 65
Joined: Sat Aug 29, 2015 1:13 am

Re: One Piece Pirate Warriors 3 .a .b .c

Post by troler11 »

aluigi wrote:Script updated to version 0.2.
I guess it's correct now.


files created equal the other.

gt1 files texture please.GT1G0600
transform .dss please
Filecutter http://www.4shared.com/rar/gMeVB5qace/Desktop.html
troler11
Posts: 65
Joined: Sat Aug 29, 2015 1:13 am

Re: One Piece Pirate Warriors 3 .a .b .c

Post by troler11 »

troler11
Posts: 65
Joined: Sat Aug 29, 2015 1:13 am

Re: One Piece Pirate Warriors 3 .a .b .c

Post by troler11 »

help aluigi.
error reimport.