ARCANA HEART 3 How to extract text from this tdf file?
-
- Posts: 8
- Joined: Fri Nov 18, 2016 11:21 am
ARCANA HEART 3 How to extract text from this tdf file?
The name of the game is Arcana Heart 3
I can see text with hex editor, but how do I actually extract it from the file?
I figured that there are 114 characters between each FF and 00,02,04,06 and etc. have only zeroes or FF on them
I attached sample to the message and here is the image
Edit:
I figured that in the beginning, after TDF header, there are strange combination
00 0B 00 01
00 30 00 0B
00 01 00 30
00 0B 00 01
00 30 00 0B
00 01 00 30
00 10 00 00
00 04 00 FF
then next starts with FF and text begins
We can see that lines repeat themself
-
- Posts: 8
- Joined: Fri Nov 18, 2016 11:21 am
-
- Posts: 81
- Joined: Sun Jul 10, 2016 11:07 am
Re: ARCANA HEART 3 How to extract text from this tdf file?
maybe the header is 0x28 long and just search for FF FF 38 00 or "goto 0x28" then "getct TEXT unicode 0xFF" and log the text and repeat? if you goal is just text extraction... at first look can seem to see any data about the contents of the file on the table it got 870 text files size or tables are no there... maybe on another file?
BTW which platform is this? PS3/Vita or PC?
BTW which platform is this? PS3/Vita or PC?
-
- Posts: 8
- Joined: Fri Nov 18, 2016 11:21 am
Re: ARCANA HEART 3 How to extract text from this tdf file?
happydance wrote:maybe the header is 0x28 long and just search for FF FF 38 00 or "goto 0x28" then "getct TEXT unicode 0xFF" and log the text and repeat? if you goal is just text extraction... at first look can seem to see any data about the contents of the file on the table it got 870 text files size or tables are no there... maybe on another file?
BTW which platform is this? PS3/Vita or PC?
Hello, thanks for answering! This is PC version
You think there are other text files other than that?
I'm not good at writing those scripts, should it look like this?
Code: Select all
endian big
idstring "TDF\x02"
goto 0x28
getct TEXT unicode 0xFF
Log "text.txt" 0 SIZE
-
- Posts: 233
- Joined: Thu Oct 16, 2014 4:39 pm
Re: ARCANA HEART 3 How to extract text from this tdf file?
Try this tool.
-
- Posts: 1193
- Joined: Sun Aug 17, 2014 7:27 pm
Re: ARCANA HEART 3 How to extract text from this tdf file?
Thanks swuforce! How about .bin files?
-
- Posts: 233
- Joined: Thu Oct 16, 2014 4:39 pm
Re: ARCANA HEART 3 How to extract text from this tdf file?
This looks like plain unicode text without any line break.
And i don't know where is the pointer or lenght data for this files, sorry.
And i don't know where is the pointer or lenght data for this files, sorry.
-
- Posts: 1193
- Joined: Sun Aug 17, 2014 7:27 pm
Re: ARCANA HEART 3 How to extract text from this tdf file?
Ok, thanks swuforce.
-
- Posts: 1193
- Joined: Sun Aug 17, 2014 7:27 pm
Re: ARCANA HEART 3 How to extract text from this tdf file?
Game: http://store.steampowered.com/app/66199 ... X_SIXSTARS
How about Arcana Heart 3 LOVEMAX SIXSTARS!!!!!! .bin files?
How about Arcana Heart 3 LOVEMAX SIXSTARS!!!!!! .bin files?
-
- Posts: 233
- Joined: Thu Oct 16, 2014 4:39 pm
Re: ARCANA HEART 3 How to extract text from this tdf file?
Try the tool from my sources.
-
- Posts: 1193
- Joined: Sun Aug 17, 2014 7:27 pm
Re: ARCANA HEART 3 How to extract text from this tdf file?
Thanks a lot swuforce!