User Tools

Site Tools


ofp:missions:real_campaign

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
ofp:missions:real_campaign [2007/09/20 06:32] – created real_campaign initial page snakemanofp:missions:real_campaign [2024/07/31 15:09] (current) – links added. snakeman
Line 1: Line 1:
-====== Real Campaign ======+====== OFP Real Campaign ====== 
 + 
 +[[https://www.pmctactical.org/forum/viewforum.php?f=43|OFP Forum]], [[:ofp|OFP Home]], [[ofp:file_formats|OFP File Formats]], [[ofp:tools|OFP Tools]], [[ofp:missions|OFP Missions]], [[ofp:modeling|OFP 3D Modeling]], [[ofp:terrain|OFP Terrain]] 
 + 
 +**Operation Flashpoint (OFP)** aka ArmA: Cold War Assault (CWA) 
 + 
 +This article introduces you to a **Real Campaign** that remembers the weapon loadout, team status and captured objectives by your and enemy forces.
  
-This article introduces you to a **real campaign** that remembers the weapon loadout, team status and captured objectives by your and enemy forces. 
  
 ====== Commands ====== ====== Commands ======
Line 13: Line 18:
   * addWeaponPool   * addWeaponPool
   * saveVar   * saveVar
 +
  
 ====== Missions ====== ====== Missions ======
Line 22: Line 28:
   * trigger activated by west   * trigger activated by west
   * east and west starting location gamelogic's   * east and west starting location gamelogic's
 +
  
 ====== Scripts ====== ====== Scripts ======
Line 37: Line 44:
  
 StartMission.sqs: StartMission.sqs:
-<code>+<code cpp>
 ;---- weaponpool stuff ;---- weaponpool stuff
 _q = 1 _q = 1
Line 113: Line 120:
 This script saves the occupation status by looking the marker colors and the team weaponpool and savestatus. This script saves the occupation status by looking the marker colors and the team weaponpool and savestatus.
  
-<code>+<code cpp>
 ; ;
 ; this is for the captured towns stuff. ; this is for the captured towns stuff.
Line 236: Line 243:
 This script checks if we have any free groups in the PMC_groups array. If there is, the group will be selected, its leader and side passed into the sendgroup-<side>.sqs script. This script checks if we have any free groups in the PMC_groups array. If there is, the group will be selected, its leader and side passed into the sendgroup-<side>.sqs script.
  
-<code>+<code cpp>
 if (!local Server) then { exit; }; if (!local Server) then { exit; };
  
Line 276: Line 283:
 Here is the scripts that choose the target for this given group, selects the group behaviour and sends them on their way, managing them during the waypoints and while on the target area. If all goes well, group reaches target and patrols it, group is put back on the rotation to the moving.sqs script. Here is the scripts that choose the target for this given group, selects the group behaviour and sends them on their way, managing them during the waypoints and while on the target area. If all goes well, group reaches target and patrols it, group is put back on the rotation to the moving.sqs script.
  
-<code>+<code cpp>
 PMC_sdg=PMC_sdg+1; PMC_sdg=PMC_sdg+1;
  
Line 294: Line 301:
 _RunLoop=10; _RunLoop=10;
  
-; _RanP is the random patrol distance, again 100 meters is ok for infantry, but +; _RanP is the random patrol distance, again 100 meters is ok for infantry, but
 ; for helos it need much wider area to patrol to make it anything useful. ; for helos it need much wider area to patrol to make it anything useful.
 _RanP=100; _RanP=100;
Line 457: Line 464:
 ; plot waypoints by Snake Man & Zeneth ; plot waypoints by Snake Man & Zeneth
 ; ;
-; give this script a +; give this script a
 ; [groupname,destination object] exec "patrol.sqs"; ; [groupname,destination object] exec "patrol.sqs";
  
Line 508: Line 515:
 At start we define the local variables for the unit classnames. I wanted to have this script easily changed for other addons. At start we define the local variables for the unit classnames. I wanted to have this script easily changed for other addons.
  
-<code>+<code cpp>
 _WB="JAM_WBHDSoldier"; _WB="JAM_WBHDSoldier";
 _WAT="JAM_CAVS_WBHDLAWALLSoldier"; _WAT="JAM_CAVS_WBHDLAWALLSoldier";
Line 537: Line 544:
 There there is check for players benchmark which is used to decide how many units we place on the mission at one given time. This is sort of fishy as user with great computer gets much more intense fights than guy with poor computer, on the other hand you could say that nowadays everyone has benchmark for the highest score set here, which is the mission playability optimum/max. There there is check for players benchmark which is used to decide how many units we place on the mission at one given time. This is sort of fishy as user with great computer gets much more intense fights than guy with poor computer, on the other hand you could say that nowadays everyone has benchmark for the highest score set here, which is the mission playability optimum/max.
  
-<code>+<code cpp>
 ; unit maxes regarding CPU powah! ; unit maxes regarding CPU powah!
 if (benchmark < 3000) then { MaxEast=50/2; MaxWest=MaxEast; }; if (benchmark < 3000) then { MaxEast=50/2; MaxWest=MaxEast; };
Line 548: Line 555:
 Then there is the looping part which checkes periodically if there is room to place new units. PMC_WLoopDelay is the delay how long time we wait until next check. CreateEast and CreateWest are the goto labels for the unit/vehicle creation parts. Then there is the looping part which checkes periodically if there is room to place new units. PMC_WLoopDelay is the delay how long time we wait until next check. CreateEast and CreateWest are the goto labels for the unit/vehicle creation parts.
  
-<code>+<code cpp>
 #Loopah #Loopah
 ; ;
Line 580: Line 587:
 Then the CreateWest label part where we create the west soldiers and vehicles, this varies a bit but in this example we list just the first squad done. Additionally this loads up the ai.sqs improved AI by Bremmer, as well as killed.sqs and smoke/special effects scripts. Then the CreateWest label part where we create the west soldiers and vehicles, this varies a bit but in this example we list just the first squad done. Additionally this loads up the ai.sqs improved AI by Bremmer, as well as killed.sqs and smoke/special effects scripts.
  
-<code>+<code cpp>
 ; ;
 ; create US JAM Anti Armor soldier squad ; create US JAM Anti Armor soldier squad
Line 631: Line 638:
 ====== Notes ====== ====== Notes ======
  
-PMC Dynamic CE official topic [[http://tactical.nekromantix.com/forum/viewtopic.php?t=20857|here]].+PMC Dynamic CE official topic [[https://www.pmctactical.org/forum/viewtopic.php?t=20857|here]].
  
-PMC Tank Hunter official topic [[http://tactical.nekromantix.com/forum/viewtopic.php?t=21164|here]].+PMC Tank Hunter official topic [[https://www.pmctactical.org/forum/viewtopic.php?t=21164|here]].
  
-Download campaigns [[http://tactical.nekromantix.com/ofp/downloads.php|here]].+Download campaigns [[https://www.pmctactical.org/ofp/downloads.php|PMC Tactical OFP Downloads]].
  
 (This page is under work, but its pretty complete already). (This page is under work, but its pretty complete already).
 +
ofp/missions/real_campaign.1190269977.txt.gz · Last modified: 2007/09/20 06:32 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki

All PMC web site download services are temporarily suspended until web site yearly fees have been recovered, want to download addons/mods? Then Support PMC.

If you are grateful for all the work PMC has done in the past 25 years, use Support PMC page.