Important information: this site is currently scheduled to go offline indefinitely by end of the year.

Dead Rising 2 [PC] text & fonts export

Need help translating games in other languages? Have your language problems solved here.
prudislav
beginner
Posts: 35
Joined: Tue Oct 12, 2010 11:48 pm
Has thanked: 1 time

Dead Rising 2 [PC] text & fonts export

Post by prudislav »

Does anyone know how i can export texts from the game??? I want to translate it to my language but everytime i try to edit "str_en.bcs" the game crashes :-(
file:

Code: Select all

http://www.fileserve.com/file/efX57AJ
http://www.megaupload.com/?d=TKFE3ACO
Last edited by prudislav on Thu Oct 14, 2010 11:58 pm, edited 1 time in total.
WRS
ultra-veteran
ultra-veteran
Posts: 603
Joined: Fri Nov 06, 2009 12:13 am
Has thanked: 74 times
Been thanked: 137 times

Re: Dead Rising 2 [PC] text export

Post by WRS »

Code: Select all

get ITEMS long

for i = 0 < ITEMS
  get ITEMID long # assumed; if so, this doesn't need editing
next i

for i = 0 < ITEMS
  get ITEMSTRPTR long # string pointer
next i

for i = 0 < ITEMS
  get ITEMSTR string # null-terminated string
next i

# then padded, unsure of importance
any strings you change will affect the ITEMSTRPTR values following it IF the length changes - which is very likely..
not sure if the game could support different encoding, or how it treats such characters.

hope you can work with this.
Useful tool links:
prudislav
beginner
Posts: 35
Joined: Tue Oct 12, 2010 11:48 pm
Has thanked: 1 time

Re: Dead Rising 2 [PC] text export

Post by prudislav »

sorry i am new here :-( where i must copy this script?
WRS
ultra-veteran
ultra-veteran
Posts: 603
Joined: Fri Nov 06, 2009 12:13 am
Has thanked: 74 times
Been thanked: 137 times

Re: Dead Rising 2 [PC] text export

Post by WRS »

prudislav wrote:sorry i am new here :-( where i must copy this script?
its for http://aluigi.altervista.org/papers/quickbms.zip. just save the script as a text file and select it when you run quickbms.
it doesn't dump anything though - its just the structure of the format.
Useful tool links:
bacter
veteran
Posts: 142
Joined: Mon Feb 22, 2010 8:42 pm
Has thanked: 2 times
Been thanked: 83 times

Re: Dead Rising 2 [PC] text export

Post by bacter »

I created a simple BCS <-> TXT converter util. I hope that works.
Usage:
BCS_TXT.exe <file.BCS>
or:
BCS_TXT.exe <file.TXT>
Example:
BCS_TXT str_en.bcs ----> this will decode the str_en.bcs file to str_en.txt.
BCS_TXT str_en.txt ----> this will encode the str_en.txt file to str_en.bcs.
Warning! The existing files will be overwritten without asking!

PROGRAM UPDATE: Now the text file saved in UTF-8 format! Maybe this will be better, than the old, Ansi format was.

[Attached file deleted. See my latest comment for the most recent version of the program.]
Last edited by bacter on Wed Feb 02, 2011 12:59 pm, edited 2 times in total.
prudislav
beginner
Posts: 35
Joined: Tue Oct 12, 2010 11:48 pm
Has thanked: 1 time

Re: Dead Rising 2 [PC] text export

Post by prudislav »

thank you very much
EDIT: but game doesn't support centraleuropean charset (letters like "ěščřž") :-(
Last edited by prudislav on Wed Oct 13, 2010 10:15 pm, edited 2 times in total.
User avatar
Gocha
veteran
Posts: 109
Joined: Fri Dec 12, 2008 8:16 pm
Location: Batumi, Georgia, GE
Has thanked: 57 times
Been thanked: 9 times
Contact:

Re: Dead Rising 2 [PC] text export

Post by Gocha »

thanks bacter, nice job

but unfortunately it doesn't decode Russian version, looks like can't support Unicode or like thing, or may be character encoding isn't known
My great respect and appreciation for them, who research game files! Special thanks to: aluigi, bacter, DerPlaya, Rick, Turfster, twig, Zench. Sorry if someone is missing in my list, I'll update when I'll notice it again
prudislav
beginner
Posts: 35
Joined: Tue Oct 12, 2010 11:48 pm
Has thanked: 1 time

Re: Dead Rising 2 [PC] text export

Post by prudislav »

does anyone knows where is fonts and how can i edit them to Central Europena charset(ěščřžýáíéúů)?
prudislav
beginner
Posts: 35
Joined: Tue Oct 12, 2010 11:48 pm
Has thanked: 1 time

Re: Dead Rising 2 [PC] text export

Post by prudislav »

I think that fonts are hidden in these files :

Code: Select all

http://www.megaupload.com/?d=QF24XDAT
qabRieL
veteran
Posts: 124
Joined: Wed Aug 04, 2010 3:58 pm
Has thanked: 2 times
Been thanked: 3 times

Re: Dead Rising 2 [PC] text & fonts export

Post by qabRieL »

Thank you, bacter, good job.
How can we export the fonts?
dogkarl
ultra-n00b
Posts: 9
Joined: Fri Sep 10, 2010 7:56 am
Been thanked: 2 times

Re: Dead Rising 2 [PC] text export

Post by dogkarl »

Gocha wrote:thanks bacter, nice job

but unfortunately it doesn't decode Russian version, looks like can't support Unicode or like thing, or may be character encoding isn't known
Your're correct , the strings are encoded in UTF-8. Just add UTF-8 translation to the script and you're done.
qabRieL
veteran
Posts: 124
Joined: Wed Aug 04, 2010 3:58 pm
Has thanked: 2 times
Been thanked: 3 times

Re: Dead Rising 2 [PC] text export

Post by qabRieL »

dogkarl wrote:
Gocha wrote:thanks bacter, nice job

but unfortunately it doesn't decode Russian version, looks like can't support Unicode or like thing, or may be character encoding isn't known
Your're correct , the strings are encoded in UTF-8. Just add UTF-8 translation to the script and you're done.
How can I do that?
Sorry, I'm new in this job.
Mbi2010
Banned
Posts: 15
Joined: Fri Sep 03, 2010 7:12 am

Re: Dead Rising 2 [PC] text export

Post by Mbi2010 »

qabRieL wrote:
dogkarl wrote:
Gocha wrote:thanks bacter, nice job

but unfortunately it doesn't decode Russian version, looks like can't support Unicode or like thing, or may be character encoding isn't known
Your're correct , the strings are encoded in UTF-8. Just add UTF-8 translation to the script and you're done.
How can I do that?
Sorry, I'm new in this job.
+1
Can you make program for Russian text?
Here is a file from Russian version - http://www.multiupload.com/T3YD5E6CUX
prudislav
beginner
Posts: 35
Joined: Tue Oct 12, 2010 11:48 pm
Has thanked: 1 time

Re: Dead Rising 2 [PC] text & fonts export

Post by prudislav »

i start translating to my language but when i try to ply with edited text game donts save progress :-(
User avatar
Gocha
veteran
Posts: 109
Joined: Fri Dec 12, 2008 8:16 pm
Location: Batumi, Georgia, GE
Has thanked: 57 times
Been thanked: 9 times
Contact:

Re: Dead Rising 2 [PC] text & fonts export

Post by Gocha »

bacter,
I think it still have problem with Russian ecnoding, but i'm not sure of it.

You better make converter with support of ASCII table chars, and there codes for Russian chars are from 192 to 255
My great respect and appreciation for them, who research game files! Special thanks to: aluigi, bacter, DerPlaya, Rick, Turfster, twig, Zench. Sorry if someone is missing in my list, I'll update when I'll notice it again
Post Reply