I got tired of always cutting and pasting files for SFC2,
then explaining what files to cut and paste to others...
So I produced these:
SFC2 Shiplist/Script Installers These very simple installers detect your SFC (EAW or OP) installation folder and then copy the files
to the correct locations. I did not bother using the Uninstall section of the scripts but just
created stock installers instead. (I thought this made more sense - was easier too...)
I used this:
Nullsoft (SuperPiMP|Scriptable) Install System (Could be used to add custom models etc.. or create more detailed install/uninstalls)
It was really pretty easy:
-Install NSIS
-put all custom files in a new folder
-create an .nsi script (see example) in this folder
-compile the script!
Example for current ISC Invasion (using a custom fighterlist, shiplist and four missions):
Code:
Name "EAW2036 ISC Invasion"
OutFile "EAW2036_ISC_Invasion.exe"
InstallDirRegKey HKLM "SOFTWARE\Taldren\Starfleet Command II" "Path"
Section "" ;
SetOutPath $INSTDIR\MetaAssets
File shiplist.txt
File ftrlist.txt
SetOutPath $INSTDIR\Assets\specs
File shiplist.txt
File ftrlist.txt
SetOutPath $INSTDIR\Assets\Scripts
File Kar_ePatrol.scr
File Kar_FleetAction.scr
File Kar_hPatrol.scr
File Kar_SquadronAction.scr
SectionEnd ;
For OP just change the InstallDirRegKey line to:
InstallDirRegKey HKLM "SOFTWARE\Taldren\Starfleet Command Orion Pirates" "Directory"
If anyone finds them handy let me know if there are any problems.
I
highly reccomend that we use this as a standard installer for
custom campaigns. It is easy to use and I think it would significantly
reduce custom download confusion.