Hello guys, The game is Chasm. > Steam
Can anyone help me with this ".ser" files? I dont how program use for extract/import this files.
Here is the folder of language of the game:
Regards.
Chasm .ser files
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Chasm .ser files
it's a sort of binary csv file.
You can use this quickbms script for dumping all the strings and possibly reimporting them (size limit), it's not like a csv but it's better than nothing if nobody else replies:
You can use this quickbms script for dumping all the strings and possibly reimporting them (size limit), it's not like a csv but it's better than nothing if nobody else replies:
Code: Select all
callfunction DUMP 1
get ELEMENTS long
for x = 0 < ELEMENTS
callfunction DUMP 1
next x
startfunction DUMP
get STRINGS long
for i = 0 < STRINGS
get SIZE byte
slog "" -1 SIZE
next i
endfunction
-
- Posts: 72
- Joined: Fri Oct 09, 2015 1:41 am
Re: Chasm .ser files
aluigi wrote:it's a sort of binary csv file.
You can use this quickbms script for dumping all the strings and possibly reimporting them (size limit), it's not like a csv but it's better than nothing if nobody else replies:Code: Select all
callfunction DUMP 1
get ELEMENTS long
for x = 0 < ELEMENTS
callfunction DUMP 1
next x
startfunction DUMP
get STRINGS long
for i = 0 < STRINGS
get SIZE byte
slog "" -1 SIZE
next i
endfunction
Ty Aluigi, i'll test. <3
-
- Posts: 72
- Joined: Fri Oct 09, 2015 1:41 am
Re: Chasm .ser files
aluigi wrote:it's a sort of binary csv file.
You can use this quickbms script for dumping all the strings and possibly reimporting them (size limit), it's not like a csv but it's better than nothing if nobody else replies:Code: Select all
callfunction DUMP 1
get ELEMENTS long
for x = 0 < ELEMENTS
callfunction DUMP 1
next x
startfunction DUMP
get STRINGS long
for i = 0 < STRINGS
get SIZE byte
slog "" -1 SIZE
next i
endfunction
Hi Aluigi! I test the scritp, but the scritp dont work on only this file "formatted_text.ser", you can help me with this?
Here the all the texts files with text:
Regards.
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Chasm .ser files
Eh no the structure of that specific file isn't clear.
-
- Posts: 72
- Joined: Fri Oct 09, 2015 1:41 am
Re: Chasm .ser files
aluigi wrote:Eh no the structure of that specific file isn't clear.
:/
I hope someone can figure out this file, remain just this for translate that game.
-
- Posts: 561
- Joined: Tue Oct 13, 2015 1:26 pm
Re: Chasm .ser files
Chasm SER Tool
By Delutto
See Readme.txt for instructions.
Attention! The tool doesn't work with *formatted_text.ser files yet.
By Delutto
See Readme.txt for instructions.
Attention! The tool doesn't work with *formatted_text.ser files yet.