Alright, I finally found the time to check out the latest version—and it looks good!
!!! It would be great to get a verification from someone with a copy of the latest Linux package !!! My test results are below for comparison.
----------
Tested Version: x3_terran_war_pack_en_3_4_17054.pkg
In-Game: After just some quick testing, it looks like everything's working as it should in-game. In X3AP, Betty voice plays during the Options menu volume adjustment, and in game there is comms chatter from other ships and stations, as well as voiced item descriptions from trade menus.
Files: The fix here comes from the return of
addon/mov/00044.pck, which acts as the audio index for X3AP and was previously missing.
addon/mov/00244.dat in the same directory contains the additional content for AP—the rest is indexed from the TC audio in
mov/00144.dat.
I verified that the returned index (00044.pck) is the same one as is present in the Windows version of the game by matching the MD5 checksum against the one reported by steve_v:
steve_v: Works for me (grabbed from windoze install), should be in <game root>/game/addon/mov/
MD5s of working files:
190b5b7164b0d9e6f2a747d6672ca671 00044.pck
ea45d26fb5b2c4e3c81a170ba2ab4ca9 00144.dat
Quickest way to verify these files on a Mac or Linux install is using
find and
md5 (or
md5sum on Linux) from the game's installation directory—example:
Latest Release — 3_4_17054: $ find . -name *44.* | grep -v /t/ | xargs md5 -r 190b5b7164b0d9e6f2a747d6672ca671 ./game/addon/mov/00044.pck
<----- This was missing before d41d8cd98f00b204e9800998ecf8427e ./game/addon/mov/00144.dat
4555bf5a102f2aea8986382abec1e069 ./game/addon/mov/00244.dat
7abed0775ec16a9b13e44c9797514f41 ./game/mov/00044.pck
ea45d26fb5b2c4e3c81a170ba2ab4ca9 ./game/mov/00144.dat
Old Release — 2.1.0.5 (3.1): $ find . -name *44.* | grep -v /t/ | xargs md5 -r d41d8cd98f00b204e9800998ecf8427e ./addon/mov/00144.dat
4555bf5a102f2aea8986382abec1e069 ./addon/mov/00244.dat
7abed0775ec16a9b13e44c9797514f41 ./mov/00044.pck
ea45d26fb5b2c4e3c81a170ba2ab4ca9 ./mov/00144.dat