MP Combat Patrol – Arma 3

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Text replacement - "= (\$[^ ]+);" to "= "$1";")
(16 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[Category:{{Name|arma3}}]]
<syntaxhighlight lang="cpp"></syntaxhighlight>
{{GVI|a3|1.72|category}}<br/><br/>
{{GVI| arma3|1.72}}<br><br>
== Introduction ==
'''Combat Patrol''' is a game mode which can be easily set up on any map and offers short, randomized CQB scenarios on a location selected by the players. The system scans for any predefined map locations like towns or villages and allows players to vote for them. Custom locations can also be added.
Combat Patrol is a game mode which can be easily set up on any map and offers short, randomized CQB scenarios on a location selected by the players. The system scans for any predefined map locations like towns or villages and allows players to vote for them. You can add custom locations as well.
 


== Creating custom scenarios ==
== Creating custom scenarios ==
Note: While it is technically possible to play Combat Patrol in singleplayer, it's recommended to set up a multiplayer scenario instead, mainly due to respawn.
 
{{Feature|informative|While it is technically possible to play Combat Patrol in singleplayer, it is recommended to set up a multiplayer scenario instead, mainly due to respawn.}}


# Open the mission editor.
# Open the mission editor.
# Set respawn setting to Custom Position (Attributes > Multiplayer > Respawn > Respawn on Custom Position). Set the Respawn Delay in the same window to any value you like, preferably > 0s.
# Set respawn setting to Custom Position (Attributes > Multiplayer > Respawn > Respawn on Custom Position). Set the Respawn Delay in the same window to any wanted value, preferably &gt; 0 seconds.
# In the Rulesets directly below, check "Show respawn counter" and "Substract respawn tickets".
# In the Rulesets directly below, check "Show respawn counter" and "Substract respawn tickets".
# (Optional) Enable Revive.
# (Optional) Enable Revive.
# (Optional) Uncheck "Enable AI" in the Lobby section.
# (Optional) Uncheck "Enable AI" in the Lobby section.
# Place playable units (the team conducting the patrol) somewhere far from any possible target locations. Make sure they are all in the same group. Currently, only BLUFOR side is supported.
# Place playable units (the team conducting the patrol) somewhere far from any possible target locations. Make sure they are all in the same group. As of build 1.94, full support for all factions is available.
# Place the Combat Patrol Init module. It can be found under Systems (F5) > Combat Patrol.
# Place the Combat Patrol Init module. It can be found under Systems (F5) > Combat Patrol.
# Save the scenario in MPMissions.
# Save the scenario in MPMissions.


Now you are ready to play. There are some more options available to further customize your scenario:
Now the scenario is ready to be played - see below for further scenario customisation possibilities.
 


== Combat Patrol modules description ==
== Combat Patrol modules description ==
Apart from the aforementioned Combat Patrol Init, there are some modules you can use:


* '''Combat Patrol Azimuth Blacklist:''' Blacklists the nearest location's (1000m radius) azimuth range so it can't be used for the starting / ending position or reinforcements spawning points. Imagine a location that has very steep hills to the north. You don't want to climb up there while exfiltrating or see enemy reinforcements try to find their way down to you. You place this module near this location and blacklist North using azimuth arrays. In this case that would be <nowiki>[[330,30]]</nowiki>.
Apart from the aforementioned Combat Patrol Init, here are other modules that can be used:
* '''Combat Patrol Location Add:''' Adds a new selectable location to the map. You can define its name and relative size which is used to determie how big the AO is and how many units are stationed inside.
 
* '''Combat Patrol Azimuth Blacklist:''' Blacklists the nearest location's (1000m radius) azimuth range so it can't be used for the starting / ending position or reinforcements spawning points. Imagine a location that has very steep hills to the North - climbing up while exfiltrating or see enemy reinforcements trying to find their way down is not desired, it is therefore possible to place this module near this location and blacklist North using azimuth arrays. In this case that would be <nowiki>[[330,30]]</nowiki>.
* '''Combat Patrol Location Add:''' Adds a new selectable location to the map. Its name and relative size (which is used to determine how big the AO is and how many units are stationed inside) can be customised.
* '''Combat Patrol Location Remove:''' Removes the nearest (1000m radius) location from the selection screen.
* '''Combat Patrol Location Remove:''' Removes the nearest (1000m radius) location from the selection screen.
* '''Combat Patrol Location Reposition:''' Moves the nearest (1000m radius) location to this module's position. Some times the location keypoints are placed quite far from the actual location center so the name is properly visible in the map. This module allows you to remedy that.
* '''Combat Patrol Location Reposition:''' Moves the nearest (1000m radius) location to this module's position. The location keypoints are sometimes placed quite far from the actual location center so the name is properly visible in the map; this module allows to fix such cases.
 


== Using scenario parameters ==
== Using scenario parameters ==
Parameters are editable in the MP lobby and offer even more control over various scenario rules. To be able to use them in your scenario, find the scenario folder (usually in Documents\Arma 3\MPMissions) and create a new file inside it. Name this file ''description.ext'' and put this code iside it:


<code>class Params
Parameters are editable in the MP lobby and offer even more control over various scenario rules. To be able to use them in a scenario, find the scenario directory (usually in {{hl|Documents\Arma 3\MPMissions}}) and create a new file inside it. Name this file {{hl|[[Description.ext|description.ext]]}} and put this inside:
<spoiler>
<syntaxhighlight lang="cpp">
class Params
{
{
class BIS_CP_startingDaytime
class BIS_CP_startingDaytime
{
{
title = $STR_A3_combatpatrol_params_1;
title = "$STR_A3_CombatPatrol_params_1";
values[] = {-1, 0, 1, 2, 3, 4};
values[] = { -1, 0, 1, 2, 3, 4 };
texts[] = {$STR_A3_bis_fnc_respawnmenuposition_random, $STR_A3_combatpatrol_params_2, $STR_A3_combatpatrol_params_3, $STR_A3_combatpatrol_params_4, $STR_A3_combatpatrol_params_5, $STR_A3_combatpatrol_params_6};
texts[] = {
$STR_A3_BIS_fnc_RespawnMenuPosition_random,
$STR_A3_CombatPatrol_params_2,
$STR_A3_CombatPatrol_params_3,
$STR_A3_CombatPatrol_params_4,
$STR_A3_CombatPatrol_params_5,
$STR_A3_CombatPatrol_params_6
};
default = 1;
default = 1;
};
};
class BIS_CP_weather
class BIS_CP_weather
{
{
title = $STR_A3_rscattributeovercast_title;
title = "$STR_A3_rscattributeovercast_title";
values[] = {-1, 0, 1, 2, 3};
values[] = { -1, 0, 1, 2, 3 };
texts[] = {$STR_A3_bis_fnc_respawnmenuposition_random, $STR_A3_combatpatrol_params_7, $STR_A3_combatpatrol_params_8, $STR_A3_combatpatrol_params_9, $STR_A3_combatpatrol_params_10};
texts[] = { $STR_A3_BIS_fnc_RespawnMenuPosition_random, $STR_A3_CombatPatrol_params_7, $STR_A3_CombatPatrol_params_8, $STR_A3_CombatPatrol_params_9, $STR_A3_CombatPatrol_params_10 };
default = 1;
default = 1;
};
};
class BIS_CP_garrison
class BIS_CP_garrison
{
{
title = $STR_A3_combatpatrol_params_11;
title = "$STR_A3_CombatPatrol_params_11";
values[] = {0, 1, 2};
values[] = { 0, 1, 2 };
texts[] = {$STR_A3_combatpatrol_params_12, $STR_A3_combatpatrol_params_13, $STR_A3_combatpatrol_params_14};
texts[] = { $STR_A3_CombatPatrol_params_12, $STR_A3_CombatPatrol_params_13, $STR_A3_CombatPatrol_params_14 };
default = 0;
default = 0;
};
};
class BIS_CP_reinforcements
class BIS_CP_reinforcements
{
{
title = $STR_A3_combatpatrol_params_15;
title = "$STR_A3_CombatPatrol_params_15";
values[] = {0, 1, 2};
values[] = { 0, 1, 2 };
texts[] = {$STR_A3_combatpatrol_params_12, $STR_A3_combatpatrol_params_13, $STR_A3_combatpatrol_params_16};
texts[] = { $STR_A3_CombatPatrol_params_12, $STR_A3_CombatPatrol_params_13, $STR_A3_CombatPatrol_params_16 };
default = 0;
default = 0;
};
};
class BIS_CP_showInsertion
class BIS_CP_showInsertion
{
{
title = $STR_A3_combatpatrol_params_17;
title = "$STR_A3_CombatPatrol_params_17";
values[] = {1, 0};
values[] = { 1, 0 };
texts[] = {$STR_A3_cfgvehicles_modulestrategicmapimage_f_arguments_shadow_values_yes_0, $STR_A3_cfgvehicles_modulestrategicmapimage_f_arguments_shadow_values_no_0};
texts[] = { $STR_A3_CfgVehicles_ModuleStrategicMapImage_f_arguments_shadow_values_yes_0, $STR_A3_CfgVehicles_ModuleStrategicMapImage_f_arguments_shadow_values_no_0 };
default = 0;
default = 0;
};
};
class BIS_CP_tickets
class BIS_CP_tickets
{
{
title = $STR_A3_combatpatrol_params_18;
title = "$STR_A3_CombatPatrol_params_18";
values[] = {5, 10, 20, 50, 100};
values[] = { 5, 10, 20, 50, 100 };
texts[] = {"5", "10", "20", "50", "100"};
texts[] = { "5", "10", "20", "50", "100" };
default = 20;
default = 20;
};
};
class BIS_CP_enemyFaction
class BIS_CP_enemyFaction
{
{
title = $STR_A3_combatpatrol_params_19;
title = "$STR_A3_CombatPatrol_params_19";
values[] = {0, 1, 2};
values[] = { 0, 1, 2 };
texts[] = {$STR_A3_cfgfactionclasses_opf_f0, $STR_A3_cfgfactionclasses_ind_f0, $STR_A3_bis_fnc_respawnmenuposition_random};
texts[] = { $STR_A3_CfgFactionClasses_OPF_f0, $STR_A3_CfgFactionClasses_IND_f0, $STR_A3_BIS_fnc_RespawnMenuPosition_random };
default = 2;
default = 2;
};
};
class BIS_CP_locationSelection
class BIS_CP_locationSelection
{
{
title = $STR_A3_combatpatrol_params_20;
title = "$STR_A3_CombatPatrol_params_20";
values[] = {0, 1};
values[] = { 0, 1 };
texts[] = {$STR_A3_combatpatrol_params_21, $STR_A3_bis_fnc_respawnmenuposition_random};
texts[] = { $STR_A3_CombatPatrol_params_21, $STR_A3_BIS_fnc_RespawnMenuPosition_random};
default = 0;
default = 0;
};
};
class BIS_CP_objective
class BIS_CP_objective
{
{
title = $STR_A3_combatpatrol_params_22;
title = "$STR_A3_CombatPatrol_params_22";
values[] = {-1, 1, 2, 3};
values[] = {-1, 1, 2, 3 };
texts[] = {$STR_A3_bis_fnc_respawnmenuposition_random, $STR_A3_combatpatrol_params_26, $STR_A3_combatpatrol_params_27, $STR_A3_combatpatrol_params_28};
texts[] = { $STR_A3_BIS_fnc_RespawnMenuPosition_random, $STR_A3_CombatPatrol_params_26, $STR_A3_CombatPatrol_params_27, $STR_A3_CombatPatrol_params_28 };
default = -1;
default = -1;
};
};
};</code>
};
</syntaxhighlight>
</spoiler>
 
Not all of the settings have to be used; check in-game to see what they offer and feel free to add/remove the wanted ones.


You don't need to use all of them of course. Check ingame to see what they offer and feel free to remove some of them if you want.


[[Category:Multiplayer]]
{{GameCategory|arma3|MP Modes}}
[[Category:Introduced with Arma 3 version 1.72]]

Revision as of 17:02, 25 February 2023

Arma 3 logo black.png1.72

Combat Patrol is a game mode which can be easily set up on any map and offers short, randomized CQB scenarios on a location selected by the players. The system scans for any predefined map locations like towns or villages and allows players to vote for them. Custom locations can also be added.


Creating custom scenarios

While it is technically possible to play Combat Patrol in singleplayer, it is recommended to set up a multiplayer scenario instead, mainly due to respawn.
  1. Open the mission editor.
  2. Set respawn setting to Custom Position (Attributes > Multiplayer > Respawn > Respawn on Custom Position). Set the Respawn Delay in the same window to any wanted value, preferably > 0 seconds.
  3. In the Rulesets directly below, check "Show respawn counter" and "Substract respawn tickets".
  4. (Optional) Enable Revive.
  5. (Optional) Uncheck "Enable AI" in the Lobby section.
  6. Place playable units (the team conducting the patrol) somewhere far from any possible target locations. Make sure they are all in the same group. As of build 1.94, full support for all factions is available.
  7. Place the Combat Patrol Init module. It can be found under Systems (F5) > Combat Patrol.
  8. Save the scenario in MPMissions.

Now the scenario is ready to be played - see below for further scenario customisation possibilities.


Combat Patrol modules description

Apart from the aforementioned Combat Patrol Init, here are other modules that can be used:

  • Combat Patrol Azimuth Blacklist: Blacklists the nearest location's (1000m radius) azimuth range so it can't be used for the starting / ending position or reinforcements spawning points. Imagine a location that has very steep hills to the North - climbing up while exfiltrating or see enemy reinforcements trying to find their way down is not desired, it is therefore possible to place this module near this location and blacklist North using azimuth arrays. In this case that would be [[330,30]].
  • Combat Patrol Location Add: Adds a new selectable location to the map. Its name and relative size (which is used to determine how big the AO is and how many units are stationed inside) can be customised.
  • Combat Patrol Location Remove: Removes the nearest (1000m radius) location from the selection screen.
  • Combat Patrol Location Reposition: Moves the nearest (1000m radius) location to this module's position. The location keypoints are sometimes placed quite far from the actual location center so the name is properly visible in the map; this module allows to fix such cases.


Using scenario parameters

Parameters are editable in the MP lobby and offer even more control over various scenario rules. To be able to use them in a scenario, find the scenario directory (usually in Documents\Arma 3\MPMissions) and create a new file inside it. Name this file description.ext and put this inside:

class Params
{
	class BIS_CP_startingDaytime
	{
		title = "$STR_A3_CombatPatrol_params_1";
		values[] = { -1, 0, 1, 2, 3, 4 };
		texts[] = {
			$STR_A3_BIS_fnc_RespawnMenuPosition_random,
			$STR_A3_CombatPatrol_params_2,
			$STR_A3_CombatPatrol_params_3,
			$STR_A3_CombatPatrol_params_4,
			$STR_A3_CombatPatrol_params_5,
			$STR_A3_CombatPatrol_params_6
		};
		default = 1;
	};
	class BIS_CP_weather
	{
		title = "$STR_A3_rscattributeovercast_title";
		values[] = { -1, 0, 1, 2, 3 };
		texts[] = { $STR_A3_BIS_fnc_RespawnMenuPosition_random, $STR_A3_CombatPatrol_params_7, $STR_A3_CombatPatrol_params_8, $STR_A3_CombatPatrol_params_9, $STR_A3_CombatPatrol_params_10 };
		default = 1;
	};
	class BIS_CP_garrison
	{
		title = "$STR_A3_CombatPatrol_params_11";
		values[] = { 0, 1, 2 };
		texts[] = { $STR_A3_CombatPatrol_params_12, $STR_A3_CombatPatrol_params_13, $STR_A3_CombatPatrol_params_14 };
		default = 0;
	};
	class BIS_CP_reinforcements
	{
		title = "$STR_A3_CombatPatrol_params_15";
		values[] = { 0, 1, 2 };
		texts[] = { $STR_A3_CombatPatrol_params_12, $STR_A3_CombatPatrol_params_13, $STR_A3_CombatPatrol_params_16 };
		default = 0;
	};
	class BIS_CP_showInsertion
	{
		title = "$STR_A3_CombatPatrol_params_17";
		values[] = { 1, 0 };
		texts[] = { $STR_A3_CfgVehicles_ModuleStrategicMapImage_f_arguments_shadow_values_yes_0, $STR_A3_CfgVehicles_ModuleStrategicMapImage_f_arguments_shadow_values_no_0 };
		default = 0;
	};
	class BIS_CP_tickets
	{
		title = "$STR_A3_CombatPatrol_params_18";
		values[] = { 5, 10, 20, 50, 100 };
		texts[] = { "5", "10", "20", "50", "100" };
		default = 20;
	};
	class BIS_CP_enemyFaction
	{
		title = "$STR_A3_CombatPatrol_params_19";
		values[] = { 0, 1, 2 };
		texts[] = { $STR_A3_CfgFactionClasses_OPF_f0, $STR_A3_CfgFactionClasses_IND_f0, $STR_A3_BIS_fnc_RespawnMenuPosition_random };
		default = 2;
	};
	class BIS_CP_locationSelection
	{
		title = "$STR_A3_CombatPatrol_params_20";
		values[] = { 0, 1 };
		texts[] = { $STR_A3_CombatPatrol_params_21, $STR_A3_BIS_fnc_RespawnMenuPosition_random};
		default = 0;
	};
	class BIS_CP_objective
	{
		title = "$STR_A3_CombatPatrol_params_22";
		values[] = {-1, 1, 2, 3 };
		texts[] = { $STR_A3_BIS_fnc_RespawnMenuPosition_random, $STR_A3_CombatPatrol_params_26, $STR_A3_CombatPatrol_params_27, $STR_A3_CombatPatrol_params_28 };
		default = -1;
	};
};
↑ Back to spoiler's top

Not all of the settings have to be used; check in-game to see what they offer and feel free to add/remove the wanted ones.