The translation of the game is in this "masseffect.bin" file but I cannot export or import the translation file.
File Text:https://www.mediafire.com/file/io4odva7 ... t.bin/file
The rules have been updated, read them now: Rules!
How Translate Mass Effect Mobile?
- ikskoks
- Moderator
- Posts: 738
- Joined: Thu Jul 26, 2012 5:06 pm
- Location: Poland, Łódź
- Has thanked: 463 times
- Been thanked: 203 times
- Contact:
Re: How Translate Mass Effect Mobile?
First of all, don't make spam topics. You have created 3 topics in 2 days
regarding some mobile games. Just focus on one game at a time and try to finish what you have started.
Secondly, text block is on the end of your bin file inside "CDAT" chunk. All strings are null terminated.
That should be easy to export/import, but if you don't know how to deal
with that, just hire a programmer who will be able to help you.
If there is no existing tool already, custom tool needs to be created.
regarding some mobile games. Just focus on one game at a time and try to finish what you have started.
Secondly, text block is on the end of your bin file inside "CDAT" chunk. All strings are null terminated.
That should be easy to export/import, but if you don't know how to deal
with that, just hire a programmer who will be able to help you.
If there is no existing tool already, custom tool needs to be created.
-
- n00b
- Posts: 10
- Joined: Mon Nov 30, 2020 5:59 am
Re: How Translate Mass Effect Mobile?
Sorry this was not my intention to spam.ikskoks wrote: ↑Mon Jan 18, 2021 10:15 amFirst of all, don't make spam topics. You have created 3 topics in 2 days
regarding some mobile games. Just focus on one game at a time and try to finish what you have started.
Secondly, text block is on the end of your bin file inside "CDAT" chunk. All strings are null terminated.
That should be easy to export/import, but if you don't know how to deal
with that, just hire a programmer who will be able to help you.
If there is no existing tool already, custom tool needs to be created.
How do I export and import the text file?
- ikskoks
- Moderator
- Posts: 738
- Joined: Thu Jul 26, 2012 5:06 pm
- Location: Poland, Łódź
- Has thanked: 463 times
- Been thanked: 203 times
- Contact:
Re: How Translate Mass Effect Mobile?
As I said, there is a text block on the end with format
and someone with programming knowledge can create some custom tool to deal with that.
As far as I know there are no tools for this bin file.
Maybe you should start with games where tools already exist like Mass Effect 2 for example https://github.com/jgoclawski/me2-tlk-tool
Code: Select all
x bytes - text string
1 byte - null terminator
As far as I know there are no tools for this bin file.
Maybe you should start with games where tools already exist like Mass Effect 2 for example https://github.com/jgoclawski/me2-tlk-tool
-
- n00b
- Posts: 10
- Joined: Mon Nov 30, 2020 5:59 am
Re: How Translate Mass Effect Mobile?
Ok thanksikskoks wrote: ↑Mon Jan 18, 2021 6:03 pmAs I said, there is a text block on the end with formatand someone with programming knowledge can create some custom tool to deal with that.Code: Select all
x bytes - text string 1 byte - null terminator
As far as I know there are no tools for this bin file.
Maybe you should start with games where tools already exist like Mass Effect 2 for example https://github.com/jgoclawski/me2-tlk-tool