Hi postal,
You're not the first person to ask about this. I agree, it would be nice if it were possible to combine certain compatible mods (such as phantom and Blackops). Since I don't play Blackops very much, I never pursued it.
As you noticed, FAF uses LUA initialization files to start Forged Alliance. It wouldn't be very difficult to create an initialization file that loads phantom and blackops together.
Perhaps something like:
- Code: Select all
local File = '*.bo'
local File2 = '*.phx'
...
mount_dir(InitFileDir..'\\..\\gamedata\\'..File, '/')
mount_dir(InitFileDir..'\\..\\gamedata\\'..File2, '/')
...
It is fairly easy to run FA with a custom initialization file. I do it sometimes when I'm testing mods and script code (look in the FAF client log file for an example of the command line parameter). Custom ini files don't work with FAF though.
In order to launch blackops and phantom together in FAF, the FAF client will need to be modified to specifically call the initialization file. Also, people will need a way to select that mode (blackops + phantom) in the FAF client. If you'd like to request that as a new feature, I'd suggest posting in the "FAF Suggestions" forum.