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

Mortal kombat X "Coalesced.eng"

Need help translating games in other languages? Have your language problems solved here.
Post Reply
User avatar
LinkOFF
beginner
Posts: 38
Joined: Mon Sep 08, 2014 12:32 am
Has thanked: 10 times
Been thanked: 8 times

Mortal kombat X "Coalesced.eng"

Post by LinkOFF »

Hi! Is there anybody who can make coder/decoder for the Coalesced files please?
Sample (Coalesced.eng): http://rghost.ru/6XZw9QXmp
User avatar
BANDIT
n00b
Posts: 17
Joined: Mon Sep 12, 2011 9:19 pm
Has thanked: 12 times
Been thanked: 9 times

Re: Mortal kombat X "Coalesced.eng"

Post by BANDIT »

ponaromixxx
beginner
Posts: 27
Joined: Thu Jul 17, 2014 4:52 am
Location: Russian
Has thanked: 1 time
Been thanked: 11 times

Re: Mortal kombat X "Coalesced.eng"

Post by ponaromixxx »

1) Encoder: reset the code

Author: aluigi

Code: Select all

encryption aes "\x93\xBB\x69\xDF\x37\xD5\x38\x57\xB8\x6B\x20\xE1\x45\xCB\xA0\x61\xDD\x7D\xCF\xED\x3A\xAC\xF2\xDB\x29\x35\x91\x6C\x27\x66\x0B\xAF"
get SIZE asize
get NAME filename
log NAME 0 SIZE
2) Unpack: Take the file on which dropped cipher

Author: swuforce

Code: Select all

get asize asize
get unk long
do
get namesize long
math namesize ^= 0xffffffff
math namesize *= 2
get name unicode
get size long
math size ^= 0xffffffff
math size *= 2
savepos offset
log name offset size
getdstring data size
get null short
savepos pos
while pos < asize
3) Repack

Code: Select all

get csize asize
get cname filename
string cname += "_NEW"
log MEMORY_FILE 0 0
get unk long
put unk long MEMORY_FILE
do
get namesize long
put namesize long MEMORY_FILE
math namesize ^= 0xffffffff
xmath namesize "namesize * 2 + 2"
savepos nameoff
getdstring name namesize
putdstring name namesize MEMORY_FILE
goto nameoff
get name unicode
get size long
math size ^= 0xffffffff
xmath size "size * 2 + 2"
getdstring data size
open FDSE name 1
get asize asize 1
set size asize
math size /= 2
math size ^= 0xffffffff
put size long MEMORY_FILE
append
log MEMORY_FILE 0 asize 1
append
get msize asize MEMORY_FILE
goto msize MEMORY_FILE
put 0 short MEMORY_FILE
savepos pos
while pos < csize
get size asize MEMORY_FILE
log cname 0 size MEMORY_FILE


Author: spider91

And here is another script to unpack only

Code: Select all

get FILES long
math FILES /= 2
for i = 0 < FILES
   get NAME_SZ long
   math NAME_SZ *= -2
   get NAME unicode
   get SIZE long
   math SIZE *= -2
   savepos OFFSET
   log NAME OFFSET SIZE
   math OFFSET += SIZE
   goto OFFSET
next i


2) Unpack: settings Coalesced.ini

Author: n97t7f7b57f

Code: Select all

get FILES long
math FILES /= 2
for i = 0 < FILES
get NSIZE long
getdstring NAME NSIZE
get SIZE long
savepos OFFSET
log NAME OFFSET SIZE
math OFFSET += SIZE
goto OFFSET
next i
Scripts update!!!!!!
Last edited by ponaromixxx on Tue Apr 21, 2015 4:15 pm, edited 2 times in total.
User avatar
LinkOFF
beginner
Posts: 38
Joined: Mon Sep 08, 2014 12:32 am
Has thanked: 10 times
Been thanked: 8 times

Re: Mortal kombat X "Coalesced.eng"

Post by LinkOFF »

ponaromixxx, thanks
goldenboy78
n00b
Posts: 16
Joined: Sun Nov 23, 2014 2:07 am
Has thanked: 3 times
Been thanked: 1 time

Re: Mortal kombat X "Coalesced.eng"

Post by goldenboy78 »

How to reimport the two folders $EngineDir$ and $GameDir$ after extracting Coalesced.eng ?

It doesn't work for me...
In quickbms command line I select the repack script, then I choose the two folders "$EngineDir$" "$GameDir$" and I choose same output folder where the Coalesced.eng was extracted.

After that it tells me.:
error ins src\file.c line 220:fdnum_open()
Error:Permission denied

Anyone can help?

Greets
ponaromixxx
beginner
Posts: 27
Joined: Thu Jul 17, 2014 4:52 am
Location: Russian
Has thanked: 1 time
Been thanked: 11 times

Re: Mortal kombat X "Coalesced.eng"

Post by ponaromixxx »

goldenboy78 wrote:How to reimport the two folders $EngineDir$ and $GameDir$ after extracting Coalesced.eng ?

It doesn't work for me...
In quickbms command line I select the repack script, then I choose the two folders "$EngineDir$" "$GameDir$" and I choose same output folder where the Coalesced.eng was extracted.

After that it tells me.:
error ins src\file.c line 220:fdnum_open()
Error:Permission denied

Anyone can help?

Greets


Here are promptly inserted in a hurry!

Вот накидал на скорую руку!

English

1) Throw our Coalesced.ENG in Original-Output
2) Press the Extract.bat
3) Start to edit something that Extract\$EngineDir$\Localization\ENG and Extract\$GameDir$\Localization\eng
4) How PUSH finished Repack.bat and repacked all your file is in the Original-Output

If you need a different file such Coalesced.RUS or Coalesced.FRA etc, then open a text document Extract.bat and Repack.bat and replace them all with Coalesced.ENG on Coalesced.RUS or any other.


Russian

1) Закинуть наш Coalesced.ENG в Original-Output
2) Нажать Extract.bat
3) Начинаем редактировать то что в Extract\$EngineDir$\Localization\ENG и Extract\$GameDir$\Localization\eng
4) Как закончил жми Repack.bat и все твой файл перепакован, находится в Original-Output

Если надо другой файл например Coalesced.RUS или Coalesced.FRA и т.д, тогда открой текстовым документом Extract.bat и Repack.bat и замени в них везде с Coalesced.ENG на Coalesced.RUS или какой другой.


https://yadi.sk/d/G4dFQEmwg6LAi
goldenboy78
n00b
Posts: 16
Joined: Sun Nov 23, 2014 2:07 am
Has thanked: 3 times
Been thanked: 1 time

Re: Mortal kombat X "Coalesced.eng"

Post by goldenboy78 »

Thanks very much ponaromixxx, it works now!
Taner038
mega-veteran
mega-veteran
Posts: 179
Joined: Fri Aug 22, 2014 6:14 pm
Has thanked: 16 times
Been thanked: 6 times

Re: Mortal kombat X "Coalesced.eng"

Post by Taner038 »

ponaromixxx wrote:
goldenboy78 wrote:How to reimport the two folders $EngineDir$ and $GameDir$ after extracting Coalesced.eng ?

It doesn't work for me...
In quickbms command line I select the repack script, then I choose the two folders "$EngineDir$" "$GameDir$" and I choose same output folder where the Coalesced.eng was extracted.

After that it tells me.:
error ins src\file.c line 220:fdnum_open()
Error:Permission denied

Anyone can help?

Greets


Here are promptly inserted in a hurry!

Вот накидал на скорую руку!

English

1) Throw our Coalesced.ENG in Original-Output
2) Press the Extract.bat
3) Start to edit something that Extract\$EngineDir$\Localization\ENG and Extract\$GameDir$\Localization\eng
4) How PUSH finished Repack.bat and repacked all your file is in the Original-Output

If you need a different file such Coalesced.RUS or Coalesced.FRA etc, then open a text document Extract.bat and Repack.bat and replace them all with Coalesced.ENG on Coalesced.RUS or any other.


Russian

1) Закинуть наш Coalesced.ENG в Original-Output
2) Нажать Extract.bat
3) Начинаем редактировать то что в Extract\$EngineDir$\Localization\ENG и Extract\$GameDir$\Localization\eng
4) Как закончил жми Repack.bat и все твой файл перепакован, находится в Original-Output

Если надо другой файл например Coalesced.RUS или Coalesced.FRA и т.д, тогда открой текстовым документом Extract.bat и Repack.bat и замени в них везде с Coalesced.ENG на Coalesced.RUS или какой другой.


https://yadi.sk/d/G4dFQEmwg6LAi
I could not repack
I do not have anything repack.bat click on.
Post Reply