Pirates of Black Cove

Need help translating games in other languages? Have your language problems solved here.
Post Reply
gaolon
ultra-n00b
Posts: 4
Joined: Sun Jun 20, 2010 7:15 pm
Has thanked: 1 time
Been thanked: 1 time

Pirates of Black Cove

Post by gaolon » Tue Aug 02, 2011 6:37 pm

Hello,

I wanna translate Pirates of Black Cove badly,its fonts and subtitles are easy to find,but now I run into a stone wall...

Take 'Start the Game' as an example ,I tanslate it into Chinese while I keep English words firstly,i.e '开始游戏Start the Game',

both Chinese and English words can be displayed perfectly in the game with the new fonts files I made; But when I delete the

English words,just left the Chinese words,it becomes 'n/a'...so do the dialog subtitles.

I tried to add 'space' after the last chinese word of the sentence,but failed...

Can anyone tell me why it comes this way? It seems every sentence must contain English words... :?

User avatar
evin
ultra-veteran
ultra-veteran
Posts: 336
Joined: Sat Aug 05, 2006 2:04 pm
Location: Hungary
Has thanked: 1 time
Been thanked: 147 times
Contact:

Re: Pirates of Black Cove

Post by evin » Wed Aug 03, 2011 6:52 am

Sample file!

Ekey
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 1739
Joined: Wed Mar 31, 2010 6:54 am
Has thanked: 85 times
Been thanked: 961 times

Re: Pirates of Black Cove

Post by Ekey » Mon Jul 23, 2012 7:14 pm

Script for unpack.

Code: Select all

filexor 0x55

ComType deflate

for
    idstring "PK\x03\x04"

    get ver         short
    get flag        short
    get method      short
    get timedate    long
    get crc         long
    get comp_size   long
    get uncomp_size long
    get name_len    short
    get extra_len   short
    getdstring name     name_len
    getdstring extra    extra_len

    savepos offset
    if method == 0
    Log name offset uncomp_size
else
    CLog name offset comp_size uncomp_size
endif
    math offset += comp_size
    goto offset
next i

Post Reply