This came to me in a different thread, but I should repost here. Basically, the person is trying to install packages put together by various individuals.
Namely:
- OP+ Shiplist 1.2
- NW's EvilDave missions
- EAW single-player campaigns recompiled for OP.
- the .MCT files to mixed the 2 above.
Here's the info:
Quote:
What is the proper order to install these Files? And also, I looked on Firesouls site, But didn't finrd the EAW_campaigns_for_OP-20030303.zip file, Any other place have It?
Thanks.
Ok.
IN ORDER:
1- NW's Missions: http://klingon.stasis.ca/sources_and_utils/EvilDave/OPMissions.zip (currently the most updated)
2- the EAW campaigns for OP: http://klingon.stasis.ca/EAW_missions/EAW_campaigns_for_OP-20030303.zip
3- The campaign files that mix both of the above for maximum ribbed pleasure: http://klingon.stasis.ca/sources_and_utils/EvilDave/NW_EAWtoOP_Campaigns.zip (replaces some .MCTs. That's ok.)
Everything above can be found by surfing through http://klingon.stasis.ca/ .
The OP+ shiplist works PERFECTLY with all of the above: http://klingon.stasis.ca/OP_plusrefit/op_plusrefit_shiplist-20030320.zip
Check the readme for proper installation. Backup your own files or get the original shiplist files from: http://klingon.stasis.ca/sources_and_utils/#orig
I spent much time testing the EAW campaigns recompiled to OP (and fixing them) in the last few months. I would install the above files prepared onto a Tester's OP version (2534, 2535, 2536..) and play a given single-player campaign from beginning to end. The above works.
NOTE: Try to avoid starting a campaign in Advanced era. I think the single player D2 doesn't know how to start in advanced.
ie: (taken and reported during testing)
Instead, edit "MetaAssets\ServerProfiles\SinglePlayer\Time.gf" and change one of the eras listed at the bottom of that file to "30". That should put the campaign in the beginning of the Advanced era, some years prior to the Taldren X2 ships.
Be sure to pick the corresponding era when starting your campaign.
ie: Late era changed to Advanced.
Code:
2 = 30 // Late becomes Advanced Era
-- Luc
FireSoul
Linux rocks:
Code:
unzip NW_EAWtoOP_Campaigns.zip
cd Campaigns/
for ii in *; do cat $ii | sed -e 's/Name="/Name="NW Missions - /' > 1 ; mv 1 NW_${ii} ; done
cd ..
rm NW_EAWtoOP_Campaigns.zip
zip -r NW_EAWtoOP_Campaigns.zip Campaigns/
In English:
- unpack the package
- got to package's subdir
- for each file in present dir, do:
- change the line(s) with "Name="
- write to a file called "1"
- rename and overwrite (move) file called "1" to a file called "NW_" with the rest of the original filename after.
- "cd .."
- erase old zip
- make new zip file
This came to me in a different thread, but I should repost here. Basically, the person is trying to install packages put together by various individuals.
Namely:
- OP+ Shiplist 1.2
- NW's EvilDave missions
- EAW single-player campaigns recompiled for OP.
- the .MCT files to mixed the 2 above.
Here's the info:
Quote:
What is the proper order to install these Files? And also, I looked on Firesouls site, But didn't finrd the EAW_campaigns_for_OP-20030303.zip file, Any other place have It?
Thanks.
Ok.
IN ORDER:
1- NW's Missions: http://klingon.stasis.ca/sources_and_utils/EvilDave/OPMissions.zip (currently the most updated)
2- the EAW campaigns for OP: http://klingon.stasis.ca/EAW_missions/EAW_campaigns_for_OP-20030303.zip
3- The campaign files that mix both of the above for maximum ribbed pleasure: http://klingon.stasis.ca/sources_and_utils/EvilDave/NW_EAWtoOP_Campaigns.zip (replaces some .MCTs. That's ok.)
Everything above can be found by surfing through http://klingon.stasis.ca/ .
The OP+ shiplist works PERFECTLY with all of the above: http://klingon.stasis.ca/OP_plusrefit/op_plusrefit_shiplist-20030320.zip
Check the readme for proper installation. Backup your own files or get the original shiplist files from: http://klingon.stasis.ca/sources_and_utils/#orig
I spent much time testing the EAW campaigns recompiled to OP (and fixing them) in the last few months. I would install the above files prepared onto a Tester's OP version (2534, 2535, 2536..) and play a given single-player campaign from beginning to end. The above works.
NOTE: Try to avoid starting a campaign in Advanced era. I think the single player D2 doesn't know how to start in advanced.
ie: (taken and reported during testing)
Instead, edit "MetaAssets\ServerProfiles\SinglePlayer\Time.gf" and change one of the eras listed at the bottom of that file to "30". That should put the campaign in the beginning of the Advanced era, some years prior to the Taldren X2 ships.
Be sure to pick the corresponding era when starting your campaign.
ie: Late era changed to Advanced.
Code:
2 = 30 // Late becomes Advanced Era
-- Luc
FireSoul
Linux rocks:
Code:
unzip NW_EAWtoOP_Campaigns.zip
cd Campaigns/
for ii in *; do cat $ii | sed -e 's/Name="/Name="NW Missions - /' > 1 ; mv 1 NW_${ii} ; done
cd ..
rm NW_EAWtoOP_Campaigns.zip
zip -r NW_EAWtoOP_Campaigns.zip Campaigns/
In English:
- unpack the package
- got to package's subdir
- for each file in present dir, do:
- change the line(s) with "Name="
- write to a file called "1"
- rename and overwrite (move) file called "1" to a file called "NW_" with the rest of the original filename after.
- "cd .."
- erase old zip
- make new zip file