Graviteam
March 19, 2024, 07:10:24 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
 
   Home   Help Search Login Register  
Pages: [1]
  Print  
Author Topic: List of User-Made Missions  (Read 87608 times)
0 Members and 1 Guest are viewing this topic.
Estnische
Oberstleutnant
*****
Posts: 111


« on: February 08, 2012, 08:45:47 AM »

Hi all

In an attempt to make things easier to find for newbies, I’m starting this thread as a database of user-made missions for the English-speaking community. The plan is to have consistent and helpful details for easy reference.

I’m happy to create entries for what I can find, but eventually it should be a place to self-publicise your new missions. Please don’t add any posts unless they contain missions or campaigns.

Any comments or suggestions, please post them up separately or send a PM to myself or Kyth.

Enjoy.
__________________________

1. JSGME:

After a request, here is some instruction on installing the campaigns, using the most common method for English-speaking missions - the JoneSoft Generic Mod Enabler (JSGME).

Godzilla1985 has so far provided the best explanation at simhq forums:

 First you will need the JoneSoft Generic Mod Enabler (JSGME). Get it here: http://simhq.com just follow the instructions on how to install and how to use JSGME.

After installing JSGME and following the prompts, it should create a folder in your SFK42 install, called 'MODS'. After I messed it up, I had to do it manually, but it needs to look like this:




You simply drop the extracted files from the downloads into the MODS folder using your PC file handling system. So you should end up with something like this:



If you did it correctly, when you open up JSGME again, it will show up in the left-hand box. When you click the right-hand arrow, it will activate and move to the right-hand box. Like this:



Then when you enter the game, it won't show up in your list of user-made missions straightaway. That's when you need to change the config file, as instructed in the creator's readme file.

__________________________

2. Config files

To show up in the selection screen, each mission needs to listed in one of the campaign files. The following is a general guide and explanation of what's needed.

__________________________

2.1 User-made standalone missions

The relevant files are 'user_camp.engcfg' and 'user_camp_list.engcfg'. They can usually be found in the following folder:



Sadly, in a chicken and egg situation, these files are only created by the game when the user makes his own user-made missions. As a quick work-around, many of the downloads here have some spare files named 'user_camp.txt' and 'user_camp_list.txt'. Just change their extensions as required.

The 'user_camp.engcfg' file should look something like this:

Quote
//Graviteam mission create system ver. 0.1

user1()
{

igor_niss_01, igor_niss_01, 1, 0, xream_01_back_t01.jpg, txt_ldm_igor_niss_01_cit_01, 3, txt_ldm_igor_niss_01_hist_intro, new_mission_01_hist_map, levels\levels\cm_users\igor_niss_01.level;

} //end of user1

To add any more new missions, copy and paste the needed entry from the readme file, like so:
Quote
//Graviteam mission create system ver. 0.1

user1()
{

igor_niss_01, igor_niss_01, 1, 0, xream_01_back_t01.jpg, txt_ldm_igor_niss_01_cit_01, 3, txt_ldm_igor_niss_01_hist_intro, new_mission_01_hist_map, levels\levels\cm_users\igor_niss_01.level;
Hetzer_01, Hetzer_01, 1, 0, hetzer_01.tga, txt_cit_01, 30, txt_hist_intro, hist_map_teach, levels\levels\cm_users\Hetzer_01.level;

} //end of user1

__________________________

2.2 User-made Campaigns

You need to create an entry for the user campaign file, which is already included with the download.  The relevant file to change is 'camp_list.engcfg'.

When you open it, it should look something like this:

Quote
camp_list()
{

   camp\main_camp.engcfg, teach,          txt_cm_camp_teach,         false, img_t34;
   camp\main_camp.engcfg, single,          txt_cm_camp_single,        false, img_single;
   camp\main_camp.engcfg, rkka_1,               txt_cm_camp_rkka_1,          true,  img_t34;
   camp\main_camp.engcfg, rkka_2,               txt_cm_camp_rkka_2,          true,  img_mk2;
   camp\main_camp.engcfg, rkka_8,              txt_cm_camp_rkka_8,          true,  img_teach;
   camp\main_camp.engcfg, rkka_4,               txt_cm_camp_rkka_4,          true,  img_user9;
   camp\main_camp.engcfg, rkka_3,               txt_cm_camp_rkka_3,          true,  img_user2;
   camp\main_camp.engcfg, rkka_t60,       txt_cm_camp_rkka_t60,        true, ,;
   camp\main_camp.engcfg, rkka_5,               txt_cm_camp_rkka_5,          true, ,;
   camp\main_camp.engcfg, rkka_6,               txt_cm_camp_rkka_6,          true, ,;
   camp\main_camp.engcfg, rkka_7,               txt_cm_camp_rkka_7,          true, ,;
   camp\main_camp.engcfg, rkka_trophy,       txt_cm_camp_rkka_trophy,     false, ,;
   camp\main_camp.engcfg, werm_1,               txt_cm_camp_werm_1,          true,  img_pz4;
   camp\main_camp.engcfg, werm_2,               txt_cm_camp_werm_2,          true,  img_user10;
   camp\main_camp.engcfg, werm_3,               txt_cm_camp_werm_3,          true,  img_user1;
   camp\main_camp.engcfg, werm_4,               txt_cm_camp_werm_4,          true,  img_user11;
   camp\main_camp.engcfg, werm_new,           txt_cm_camp_werm_new,        true,  img_user8;
   camp\main_camp.engcfg, werm_stug,      txt_cm_camp_werm_stug,       true, ,;
   camp\main_camp.engcfg, rkka_9,               txt_cm_camp_rkka_9,        true,  img_t34;
   camp\final_camp.engcfg, cm_final,      txt_cm_camp_final,           false, img_single;
}

_vars() {}


Just copy and paste the needed entry, for example:
Quote
camp_list()
{

   camp\main_camp.engcfg, teach,          txt_cm_camp_teach,         false, img_t34;
   camp\main_camp.engcfg, single,          txt_cm_camp_single,        false, img_single;
   camp\main_camp.engcfg, rkka_1,               txt_cm_camp_rkka_1,          true,  img_t34;
   camp\main_camp.engcfg, rkka_2,               txt_cm_camp_rkka_2,          true,  img_mk2;
   camp\main_camp.engcfg, rkka_8,              txt_cm_camp_rkka_8,          true,  img_teach;
   camp\main_camp.engcfg, rkka_4,               txt_cm_camp_rkka_4,          true,  img_user9;
   camp\main_camp.engcfg, rkka_3,               txt_cm_camp_rkka_3,          true,  img_user2;
   camp\main_camp.engcfg, rkka_t60,       txt_cm_camp_rkka_t60,        true, ,;
   camp\main_camp.engcfg, rkka_5,               txt_cm_camp_rkka_5,          true, ,;
   camp\main_camp.engcfg, rkka_6,               txt_cm_camp_rkka_6,          true, ,;
   camp\main_camp.engcfg, rkka_7,               txt_cm_camp_rkka_7,          true, ,;
   camp\main_camp.engcfg, rkka_trophy,       txt_cm_camp_rkka_trophy,     false, ,;
   camp\main_camp.engcfg, werm_1,               txt_cm_camp_werm_1,          true,  img_pz4;
   camp\main_camp.engcfg, werm_2,               txt_cm_camp_werm_2,          true,  img_user10;
   camp\main_camp.engcfg, werm_3,               txt_cm_camp_werm_3,          true,  img_user1;
   camp\main_camp.engcfg, werm_4,               txt_cm_camp_werm_4,          true,  img_user11;
   camp\main_camp.engcfg, werm_new,           txt_cm_camp_werm_new,        true,  img_user8;
   camp\main_camp.engcfg, werm_stug,      txt_cm_camp_werm_stug,       true, ,;
   camp\main_camp.engcfg, rkka_9,               txt_cm_camp_rkka_9,        true,  img_t34;
   camp\final_camp.engcfg, cm_final,      txt_cm_camp_final,           false, img_single;
   camp\bar_camp.engcfg, bar,                      txt_cm_camp_bar,             true, img_pz4;

}

_vars() {}


All the downloads here follow the same principles as set out above.
However, the installation instructions for each mission and campaign can be slightly different, so pay attention to their readme files.
Good luck!

PS
Here's updated User Manual by BigDuke66
http://www.file-upload.net/download-4314303/Steel-Fury-User-Manual-1.1-SPM-.pdf.html
« Last Edit: October 03, 2012, 11:37:13 PM by lockie » Logged
Estnische
Oberstleutnant
*****
Posts: 111


« Reply #1 on: February 08, 2012, 08:47:43 AM »

Mission/Campaign Name: Not Quiet On The Eastern Front
Author: Kyth




Date Added: 23/04/11

Missions: 10 missions

Player's Vehicle: German Panzer IIIJ and Panzer IVF2

Map: various stock Kharkov 1942 maps

Historical or Fictitious: Semi Historical - The Kharkov area was a pivotal area on the Eastern Front, sitting astride two important strategic axes towards Kursk and the Donbas. German forces in the area were weakened following their actions to combat the Russian winter offensive. The Russian STAVKA decided to launch another assault here in the spring of 1942, before German forces had time to refit. The objective: the city of Kharkov itself. However, the German 6th and 1st Panzer Armies were already assembling in the Kharkov area, preparing for an offensive against the nearby Barvenkovo salient - operation 'Friderikus'.

Mods Required: SPM 1.5 Beta

JSGME Ready: Yes

Download Location: http://www.4shared.com/file/gEekmKR6/KythCampaign.html

File Size: 10.3Mb

Notes: No special maps required for this one - install it and have fun!

This campaign was included into Update November 2012 English version (NTA).
« Last Edit: February 13, 2015, 05:20:23 PM by Krabb » Logged
Estnische
Oberstleutnant
*****
Posts: 111


« Reply #2 on: February 10, 2012, 08:41:49 AM »

Mission/Campaign Name: Seelow Heights

Author: Rends




Date Added: 29/10/11

Missions: 3 missions

Player's Vehicle: Command either Tiger I or IS-2.

Map: Rends Seelow map comes with the files.

Historical or Fictitious: Semi-historical. Based on the events of one of the last great battles of WWII, at the Gateway to Berlin.

Mods Required: SPM 1.5 Beta, Kyth and Donkens newbuilding3 mod

JSGME Ready: Yes

Download Location: Dead link

File Size: 38.0Mb

Notes: 3 playable missions. 1 from German and 2 from Soviet side. Feel free to modify and reuploading the map.

All three missions were included with a minor changes into Mission Pack 2.0.
« Last Edit: February 13, 2015, 05:22:26 PM by Krabb » Logged
Estnische
Oberstleutnant
*****
Posts: 111


« Reply #3 on: February 11, 2012, 09:27:05 PM »

Mission/Campaign Name: Operation Barbarossa

Author: Rends



Date Added: 31/12/11

Missions: 10 missions

Player's Vehicle: Command a Panzer III as part of Panzergruppe 2 (Guderian).

Map: Includes 6 Polish maps by Rends.

Historical or Fictitious: Semi-historical.  Based on the first 5 days of Operation Barbarossa, when Hitler tries to do what Napoleon could not. Ninety-nine German divisions are deployed against the Soviet Union to begin the offensive  along a massive front stretching from the Baltic to the Black seas, some 2,900km.

Mods Required: SPM 1.5 Beta and SPM 1.5 NTA1.4


JSGME Ready: Yes

Download Location: http://tanksim.tk/modules/wfdownloads/singlefile.php?cid=26&lid=162

File Size: 112.9Mb

Notes: The campaign is meant to be played at level 5. Campaign difficulty can be changed using Game Option 'Force BALANCE' setting (Novice 1-3, Normal 4-6, Hard 7+). The installation instructions are contained in the readme.txt file.
« Last Edit: October 05, 2017, 02:34:51 PM by Krabb » Logged
Estnische
Oberstleutnant
*****
Posts: 111


« Reply #4 on: February 18, 2012, 09:33:04 AM »

Mission/Campaign Name: Prokhorovka Battle (Final Version)

Author: Rends



Date Added: 10/10/10

Missions: 6 missions

Player's Vehicle: Command either a T-34, SU-122, Panther, Tiger or the Stug-III.

Map: Rends Prokhorovka map comes with the files.

Historical or Fictitious: Semi-historical based on the events of the biggest tank battle of WWII, Kursk.

Mods Required: SPM 1.5 Beta

JSGME Ready: Yes

Download Location: http://www.gamefront.com/files/17372583/Steel_Fury_Rends_ProkhoV1.zip/

File Size: 38.7Mb

Notes: After installation you will find 2 Prokhorovka entries in the campaign list. The first 2 mission for each side are basically the same just with different tanks. This means also that the mission instructions stay the same.

This campaign included into Mission Pack 1.0.
« Last Edit: November 16, 2012, 11:39:49 AM by lockie » Logged
Kyth
Generalfeldmarschall
*****
Posts: 2044


« Reply #5 on: March 17, 2012, 01:12:25 AM »

Mission/Campaign Name: Shamonin

Author: Hemisent



Date Added: 4/2/12

Missions: 1 mission

Player's Vehicle: Tiger.

Map: Stock.

Historical or Fictitious: (Pure product of the imagination.) The village of Shamonin is in danger of  being overrun. Three new Tigers have arrived by rail from the Fatherland. Take command of them, proceed to where you are sorely needed.

Mods Required: SPM 1.5 Beta

JSGME Ready: Yes

Download Location: http://www.4shared.com/zip/nQoCcGkW/Shamonin.html

File Size: 13 Kb

Notes: After installation, copy over the new mission line from the readme to 'user_camp.engcfg'.
Logged

"What am I, chopped liver..?"

"Yes."
Kyth
Generalfeldmarschall
*****
Posts: 2044


« Reply #6 on: April 06, 2012, 04:07:51 PM »

Mission/Campaign Name: Hetzer01

Author: yl9961027



Date Added: 21/8/11

Missions: 1 Mission

Player's Vehicle: Hetzer.

Map: Stock.

Historical or Fictitious: Fictional Scenario - Defend the hill against a massive armoured assault.

Mods Required: SPM 1.5 Beta

JSGME Ready: Yes

Download Location:
http://www.4shared.com/rar/iDj_FR_J/Hetzer_01.html

File Size: 1 Mb

Notes: After installation, copy over the new mission line from the readme to 'user_camp.engcfg'.

This mission was included with a minor changes into Mission Pack 2.1.
« Last Edit: February 13, 2015, 05:28:42 PM by Krabb » Logged

"What am I, chopped liver..?"

"Yes."
Kyth
Generalfeldmarschall
*****
Posts: 2044


« Reply #7 on: April 06, 2012, 04:13:51 PM »

Mission/Campaign Name: Tiger01

Author: yl9961027



Date Added: 2/9/11

Missions: 1 Mission

Player's Vehicle: Tiger.

Map: Rends Prokhorovka map. (Included with the download).

Historical or Fictitious: Semi-historical. Spearhead the attack on the enemy defense line.

Mods Required: SPM 1.5 Beta

JSGME Ready: Yes

Download Location:
http://www.4shared.com/rar/oYBSf8AT/Tiger_01.html

File Size: 35 Mb

Notes: After installation, copy over the new mission line from the readme to 'user_camp.engcfg'.

This mission was included with a minor changes into Mission Pack 2.0.
« Last Edit: February 13, 2015, 05:29:20 PM by Krabb » Logged

"What am I, chopped liver..?"

"Yes."
Kyth
Generalfeldmarschall
*****
Posts: 2044


« Reply #8 on: April 06, 2012, 04:21:20 PM »

Mission/Campaign Name: Ambush

Author: yl9961027



Date Added: 3/9/11

Missions: 1 Mission

Player's Vehicle: T-34/85.

Map: Stock.

Historical or Fictitious: Fictional. Take on an enemy armoured column in your tank.

Mods Required: SPM 1.5 Beta + Ultimate Update

JSGME Ready: Yes

Download Location:
http://www.4shared.com/rar/jMAvXpvO/Ambush.html

File Size: 300 Kb

Notes: After installation, copy over the new mission line from the readme to 'user_camp.engcfg'. Requires new platoon units, available with the Ultimate Update.

This mission was included with a minor changes into Mission Pack 2.0.
« Last Edit: February 13, 2015, 05:29:49 PM by Krabb » Logged

"What am I, chopped liver..?"

"Yes."
Kyth
Generalfeldmarschall
*****
Posts: 2044


« Reply #9 on: April 29, 2012, 03:42:07 AM »

Mission/Campaign Name: First Effort

Author: xream



Date Added: 18/12/07

Missions: 1 Mission

Player's Vehicle: T-34/76.

Map: igor_poly_01 map (included in the download).

Historical or Fictitious: Fictional. Coordinate with your infantry to capture the objective.

Mods Required: None. Compatible with stock game and all later versions

JSGME Ready: Yes

Download Location:
http://www.4shared.com/rar/IPMXwn8a/XreamMission1.html

File Size: 35 Mb

Notes: After installation, copy over the new mission line from the readme to 'user_camp.engcfg'.
- The mission's progress is triggered by moving into some key locations, so pay attention to the instructions, as they come.

NOTE:
This mission was included with a minor changes into Mission Pack 3.x
« Last Edit: February 13, 2015, 05:30:24 PM by Krabb » Logged

"What am I, chopped liver..?"

"Yes."
Kyth
Generalfeldmarschall
*****
Posts: 2044


« Reply #10 on: April 29, 2012, 03:52:26 AM »

Mission/Campaign Name: Alone and Against All Odds

Author: xream



Date Added: 7/2/08

Missions: 1 Mission

Player's Vehicle: T-34/76.

Map: best_poly map (included in the download).

Historical or Fictitious: Fictional. Eliminate 3 'Japanese' coastal bases in a clandestine operation.

Mods Required: None. Compatible with stock game and all later versions

JSGME Ready: Yes

Download Location:
http://www.4shared.com/rar/5WIPymAX/XreamMission2.html

File Size: 34 Mb

Notes: After installation, copy over the new mission line from the readme to 'user_camp.engcfg'.
- You can replenish your ammo in mid-mission. To enable this, don't issue any movement orders in the briefing screen.
- You will need to call on your driving skills and 'take the wheel' at certain places. 
Logged

"What am I, chopped liver..?"

"Yes."
lockie
Generalfeldmarschall
*****
Posts: 2348



« Reply #11 on: October 08, 2012, 12:08:46 PM »

1. Mission pack 1.1



Missions: 29 Missions

Links withdrawn by author

Notes: Installation order
1. SPM 1.5+fix
2. SPM 1.5 NTA 1.3
3. Mission pack 1.1
4. Real Churchill!

2. Real Churchill!



Missions: 1 Mission

Player's Vehicle: Churchill MKIII

Map: Sokolovo (polygon slightly adjusted and included in the download).

Historical or Fictitious: Fictional.

Notes: installation order
1. SPM 1.5+fix
2. SPM 1.5 NTA 1.3
3. Real Churchill
This mission was included into Mission Pack 2.1.

3. Ugly Duckling (JP IV)



Missions: 1 Mission

Player's Vehicle: Jagdpanzer IV

Map: Sokolovo (polygon slightly adjusted and included in the download).

Historical or Fictitious: Fictional.

Notes: installation order
1. SPM 1.5+fix
2. SPM 1.5 NTA 1.3
3. Ugly Duckling
This mission was included into Mission Pack 2.1.


4. Destroy Airfield!



Missions: 1 Mission

Player's Vehicle: T-44

Map:  aero_nt polygon included in the download.

Historical or Fictitious: Fictional.

Notes: installation order
1. SPM 1.5+fix
2. SPM 1.5 NTA 1.3
3. Destroy Airfield
This mission was included into Mission Pack 2.0.

5. A miracle weapon - Jagdtiger!



Missions: 1 Mission

Player's Vehicle: Jagdtiger

Map:  stock polygon M01_Taranovka

Historical or Fictitious: Fictional.

Notes: installation order
1. SPM 1.5+fix
2. SPM 1.5 NTA 1.3
3. A miracle weapon - Jagdtiger
This mission was included into Mission Pack 2.0.

6. Saboteur: Panther M-10



Missions: 1 Mission

Player's Vehicle: Panther M-10 (erzats)

Map:  stock polygon w08_lomovo enable only for the english game version (not included in the download)

Historical or Fictitious: Fictional.

Notes: Installation order
1. SPM 1.5+fix
2. SPM 1.5 NTA 1.3
3. Saboteur: Panther M-10
This mission was included into Mission Pack 2.0.

7. "Suka" bites deadly!



Missions: 1 Mission

Player's Vehicle: SU-76

Map:  sherman_nt polygon included in the download

Historical or Fictitious: Fictional.

Notes: Installation order
1. SPM 1.5+fix
2. SPM 1.5 NTA 1.3
3. "Suka" bites deadly
This mission was included into Mission Pack 2.0.

8. "Tommy-Cooker" into the fire!



Missions: 1 Mission

Player's Vehicle: Sherman M4A3-76

Map:  sherman_nt polygon included in the download

Historical or Fictitious: Fictional.

Notes: Installation order
1. SPM 1.5+fix
2. SPM 1.5 NTA 1.3
3. "Tommy-Cooker" into the fire
This mission was included into Mission Pack 2.0.

9. Mission T-35 In Attack!



Missions: 1 Mission

Player's Vehicle: T-35

Map:  stock polygon w08_lomovo (english game version) included in the download

Historical or Fictitious: Fictional.

Notes: mission included in the Mission pack 1.0c
Installation order
1. SPM 1.5+fix
2. SPM 1.5 NTA 1.3
3. Mission T-35 In Attack
This mission was included into Mission Pack 2.0.

10. Kolobanov Feat of Arms

Author: deviator, ntalex
English translation: lockie, Txema



Date Added: 12/01/12

Missions: 1 Mission

Player's Vehicle: KV-1e

Map: polygon Piter01 included in the download

Historical or Fictitious: a mission based on the true event near Leningrad

Mods Required: SPM 1.5 Beta + SPM1.5 NTA 1.3

JSGME Ready: Yes

Notes: after installation, copy over the new mission line from the reame_kolobanov.txt to user_camp.engcfg.
This mission was included into Mission Pack 2.0.

11. Find the fords!



Missions: 1 Mission

Player's Vehicle: Luchs ausf. L Pz-II

Map:  stock polygon w07_fedorovka enable only for the english game version (not included in the download)

Historical or Fictitious: Fictional.

Mods Required: SPM 1.5 Beta + SPM1.5 NTA 1.3

Notes: Installation order
1. SPM 1.5+fix
2. SPM 1.5 NTA 1.3
2. Find the fords
This mission was included into Mission Pack 2.0.

12. Jagdpanther: Over The Top!



Missions: 1 Mission

Player's Vehicle: Jagdpanther

Map:  stock polygon w04_kr_dolina (english game version) included in the download

Historical or Fictitious: Fictional.

Mods Required: SPM 1.5 Beta + SPM 1.5 NTA 1.3

Notes: mission included in the Mission pack 1.0c
Installation order
1. SPM 1.5+fix
2. SPM 1.5 NTA 1.3
2. Jagdpanther: Over The Top

13. Defend the Fatherland part I



Missions: 1 Mission (current)

Player's Vehicle: Pz V "Panther" ausf. G

Map:  polygon attk_shyrz included in the download

Historical or Fictitious: Fictional.

Mods Required: SPM 1.5+ SPM 1.5 NTA 1.3

Notes: see readme for details.
Installation order:
1. SPM 1.5+fix
2. SPM 1.5 NTA 1.3
3. SPM UU+update
4. Defend the Fatherland pI
This mission was included into Mission Pack 2.0.

14. T-38: Scout-tank

Author: ntalex



Date Added: 25/01/11

Missions: 1 Mission

Player's Vehicle: T-38

Map: w06_petrovka (eng version) included in the download

Historical or Fictitious: Fictional.

Mods Required: SPM 1.5 Beta

JSGME Ready: Yes

Notes:
1. After installation, copy over the new mission line from the ...docs\T38_scout\reame_T38_scout.txt to user_camp.engcfg.
2. This mission included into Mission Pack 1.0c

15. SU-100: The number of the beast!



Missions: 1 Mission

Player's Vehicle: SU-100

Map: w03_ozerki (eng version) included in the download

Historical or Fictitious: Fictional.

Mods Required: SPM 1.5 Beta and SPM 1.5 + SPM 1.5 NTA 1.3

JSGME Ready: Yes

Notes:
1. After installation, copy over the new mission line from the ...\docs\SU-100_beast\reame_su-100_the_beast(e).txt to user_camp.engcfg.
2. This mission included into Mission Pack 1.0c
3. Installation order:
1. SPM 1.5+fix
2. SPM 1.5 NTA 1.3
- SU-100: The number of the beast!

16. Go, bike, Go!



Missions: 1 Mission

Player's Vehicle: Motorcycle BMW-R12

Map:  polygon attk_shyrz included in the download

Historical or Fictitious: fictitious.

Notes:
Installation order:
1. Unofficial patch_SF_v0.1_(ENG)
2. Upd_Sept_2013(NTA) (three mods merged in one)
3. Sound Mod (NTA) 1.0
4. Missions pack v1.1 (optional)
5. Missions pack v2.1
6. SPM (NTA) 1.7.1 alpha
7. Start the game ->Campaigns ->Mission Pack 2.1 ->Go, bike, Go!
« Last Edit: February 13, 2015, 05:48:10 PM by Krabb » Logged

Provocative signature removed
lockie
Generalfeldmarschall
*****
Posts: 2348



« Reply #12 on: December 03, 2012, 07:01:35 PM »

1. Mission pack 2.1



Missions: 42 Missions

Links withdrawn by author

Player's Vehicle: various

Map:  All polygons included in the download, except which English game version had.

Historical or Fictitious: various

Notes: Installation order

1. Unofficial patch_SF_v0.1_(ENG)
2. Upd_Sept_2013(NTA) (three mods merged in one)
3. Sound Mod (NTA) 1.0
4. Missions pack v1.1 (optional)
5. Missions pack v2.1
6. SPM (NTA) 1.7.1 alpha

Start the game ->Campaigns ->Mission pack 2.1
« Last Edit: February 13, 2015, 05:49:59 PM by Krabb » Logged

Provocative signature removed
lockie
Generalfeldmarschall
*****
Posts: 2348



« Reply #13 on: December 12, 2012, 11:00:29 AM »

1. Destroy enemy HQ!



Missions: 1 Mission

Links withdrawn by author

Player's Vehicle: Panther G

Map:  w09_b_polyana (polygon included in the download)

Historical or Fictitious: fictitious

Notes: Installation order
1. Unofficial patch_SF_v0.1_(ENG)
2. Upd_Sept_2013(NTA) (three mods merged in one)
3. Sound Mod (NTA) 1.0
4. Missions pack v1.1 (optional)
5. Missions pack v2.1
6. SPM (NTA) 1.7.1 alpha
8. Start the game ->Campaigns ->Mission Pack 2.1 ->Destroy HQ


2. Everything, but the bridge!



Mission review by 33lima.

Missions: 1 Mission

Links withdrawn by author

Player's Vehicle: 'Sherman' M4A3-76

Map:  stock polygon w02_r_oskol (english game version)

Historical or Fictitious: fictitious

Notes: Installation order
1. Unofficial patch_SF_v0.1_(ENG)
2. Upd_Sept_2013(NTA) (three mods merged in one)
3. Sound Mod (NTA) 1.0
4. Missions pack v1.1 (optional)
5. Missions pack v2.1
6. SPM (NTA) 1.7.1 alpha
7. Start the game ->Campaigns ->Mission Pack 2.1 ->Everything, but the bridge!
« Last Edit: February 13, 2015, 05:52:29 PM by Krabb » Logged

Provocative signature removed
Anddy
Major
****
Posts: 98


« Reply #14 on: January 17, 2013, 08:58:47 PM »

Hill 257.0
Left flank of the northern facade of the Kursk Bulge.




Missions: 1 Mission

Player's Vehicle: T-34/76

Map:  Kashara (polygon included in the download)

Historical or Fictitious: Historical

File Size: ~30 Mb

Notes: Installation order
1. Unofficial patch_SF_v0.1_(ENG)
2. SPM 1.5 beta
3. SPM1.5_ultimate_update
4. Hill 257,0 Install whith JSGME.


And, add in this line to the 'user_camp.engcfg' file:
Quote
Kashara, Kashara, 1, 0, back_hgt257.tga, txt_ldm_kashara_cit, 10, txt_ldm_kashara_hist_intro, olhovatka, levels\levels\cm_users\Kashara.level;

Author: SVN (sukhoi.ru)
« Last Edit: October 05, 2017, 02:35:56 PM by Krabb » Logged
lockie
Generalfeldmarschall
*****
Posts: 2348



« Reply #15 on: July 31, 2013, 03:48:42 PM »

1. Otto Carius: Siivertsi
Author: Estnische, lockie



Missions: 1 Mission

Links withdrawn by author

Player's Vehicle: Tiger Pz.VI H

Map:  Siivertsi (polygon included into `Mission pack 3.3`)

Historical or Fictitious: based on the history

Installation order: (through JSGME)
1. Unofficial patch_SF_v0.1_(ENG)
2. Sound Mod (NTA) 1.0 compilation of the sounds, which adjusted to the same format: 44kHz, 16bit, mono.
3. Missions pack v1.1 (optional)
4. Missions pack v2.1 (optional)
5. NTA 1.8 full(beta)
6. Mission Pack 3.5
8. Recommended Winter mode for the mission "Otto Carius: Siivertsi".
9. Start the game ->Campaigns ->Mission Pack 3.5 ->Otto Carius: Siivertsi


2. River of Doom
Author: lockie



Missions: 1 Mission

Links withdrawn by author

Player's Vehicle: M-36 `Jackson`

Map:  eu_m36_west (polygon included into `Mission pack 3.3`)

Historical or Fictitious: fictitious

Installation order: (through JSGME)
1. Unofficial patch_SF_v0.1_(ENG)
2. Sound Mod (NTA) 1.0 compilation of the sounds, which adjusted to the same format: 44kHz, 16bit, mono.
3. Missions pack v1.1 (optional)
4. Missions pack v2.1 (optional)
5. SPM (NTA) 1.8 full(beta)
6. Mission Pack 3.5
8. Start the game ->Campaigns ->Mission Pack 3.5 ->River of Doom


3. Machine Head (Pz. VI H1`Tiger`)
Author: lockie



Missions: 1 Mission

Links withdrawn by author

Player's Vehicle: Tiger Pz.VI H1

Map:  Siivertsi (polygon included into mission)

Historical or Fictitious: fictitious

Notes:
- 5 min. video included

Installation order: (through JSGME)
1. Unofficial patch_SF_v0.1_(ENG)
2. Sound Mod (NTA) 1.0 compilation of the sounds, which adjusted to the same format: 44kHz, 16bit, mono.
3. Missions pack v1.1 (optional)
4. Missions pack v2.1 (optional)
5. SPM (NTA) 1.8 full(beta)
6. Mission Pack 3.x
8. Start the game ->Campaigns ->Mission Pack 3.x ->Machine Head (Pz. VI H1`Tiger`)
« Last Edit: February 13, 2015, 05:59:08 PM by Krabb » Logged

Provocative signature removed
lockie
Generalfeldmarschall
*****
Posts: 2348



« Reply #16 on: October 28, 2013, 01:30:16 PM »

Save general Frinikenko!
Author: lockie

 

Missions: 2 Missions

Links withdrawn by author

Player's Vehicle: M3 halftrack, M26

Map:  eu_m36_west (polygon included into `Mission pack 3.5`)

Historical or Fictitious: fictitious

Installation order: (through JSGME)
1. Unofficial patch_SF_v0.1_(ENG)
2. Sound Mod (NTA) 1.0 compilation of the sounds, which adjusted to the same format: 44kHz, 16bit, mono.
3. Missions pack v1.1 (optional)
4. Missions pack v2.1 (optional)
5. SPM (NTA) 1.8 full(beta)
6. Mission Pack 3.5
7. Start the game ->Campaigns ->Mission Pack 3.5 ->Save general Frinikenko!

Dust in the wind
Author: lockie



Missions: 1 Mission

Links withdrawn by author

Player's Vehicle: M5A1 "Stuart"

Map:  nta_sahara (polygon not included into `Mission pack 3.61`)

Historical or Fictitious: fictitious

Installation order:
1. Unofficial patch_SF_v0.1_(ENG)
2. Sound Mod (NTA) 1.1
3. SPM (NTA) 1.8
4. Missions Pack 3.61
5. AprUpd_2014
6. Africa mod (optional, but highly recommended)
7. Dust in the wind
8. Start the game ->Campaigns ->Mission Pack 3.61 ->Dust in the wind

Notes:
Mission has video and all radio messages are fully voiced.
« Last Edit: February 13, 2015, 06:01:07 PM by Krabb » Logged

Provocative signature removed
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.21 | SMF © 2015, Simple Machines
Simple Audio Video Embedder
Valid XHTML 1.0! Valid CSS!