Debugging of static mission spawner

This commit is contained in:
Ghostrider-GRG- 2018-06-13 21:40:11 -04:00
parent b0b0764e54
commit 84902062da
3 changed files with 95 additions and 81 deletions

View File

@ -22,10 +22,14 @@ _fnc_updateGroupSpawnTimerFields = {
diag_log format["_fnc_updateGroupSpawnTimerFields::-> _this = %1",_this]; diag_log format["_fnc_updateGroupSpawnTimerFields::-> _this = %1",_this];
params["_array","_element",["_group",grpNull],["_spawnedAt",0]]; params["_array","_element",["_group",grpNull],["_spawnedAt",0]];
private _index = _array find _element; private _index = _array find _element;
if !(isNull _group) then
{
_element set[patrolGroup,_group]; _element set[patrolGroup,_group];
_element set[spawnedAt,_spawnedAt]; _element set[spawnedAt,_spawnedAt];
_element set[respawnAt,0];
_array set[_index,_element]; _array set[_index,_element];
}; };
};
triggerRange = 1000; triggerRange = 1000;
@ -142,6 +146,15 @@ _fnc_evaluateSpawnedGroups = {
blck_sm_monitoring = 1; blck_sm_monitoring = 1;
[onFoot,blck_sm_Groups] call _fnc_evaluateSpawnedGroups;
[inVehicle,blck_sm_Vehicles] call _fnc_evaluateSpawnedGroups;
[inVehicle,blck_sm_Aircraft] call _fnc_evaluateSpawnedGroups;
[inVehicle,blck_sm_Emplaced] call _fnc_evaluateSpawnedGroups;
[onFoot,blck_sm_scubaGroups] call _fnc_evaluateSpawnedGroups;
[inVehicle,blck_sm_surfaceShips] call _fnc_evaluateSpawnedGroups;
[inVehicle,blck_sm_submarines] call _fnc_evaluateSpawnedGroups;
_sm_groups = +blck_sm_Groups; _sm_groups = +blck_sm_Groups;
{ {
_x params["_groupParameters","_group","_spawnedAt","_respawnAt","_lastTimePlayerNear"]; _x params["_groupParameters","_group","_spawnedAt","_respawnAt","_lastTimePlayerNear"];
@ -169,38 +182,40 @@ _sm_groups = +blck_sm_Groups;
}; };
}; };
}forEach _sm_groups; }forEach _sm_groups;
[onFoot,blck_sm_Groups] call _fnc_evaluateSpawnedGroups;
_sm_Vehicles = +blck_sm_Vehicles; _sm_Vehicles = +blck_sm_Vehicles;
{ {
// ["B_G_Offroad_01_armed_F",[22819.4,16929.5,3.17413],"red",600,0,_group,_spawnAt], // ["B_G_Offroad_01_armed_F",[22819.4,16929.5,3.17413],"red",600,0,_group,_spawnAt],
//diag_log format["_sm_monitorVehicles::-> _x = %1",_x]; //diag_log format["_sm_monitorVehicles::-> _x = %1",_x];
_x params["_groupParameters","_group","_spawnAt"]; _x params["_groupParameters","_group","_spawnedAt","_respawnAt","_lastTimePlayerNear"];
_groupParameters params["_vehicleType","_pos","_difficulty","_patrolRadius","_respawnInterval"]; _groupParameters params["_vehicleType","_pos","_difficulty","_patrolRadius","_respawnInterval"];
if ([_pos,triggerRange] call blck_fnc_playerInRange) then if ([_pos,triggerRange] call blck_fnc_playerInRange) then
{ {
if ( (_group isEqualTo grpNull) && (diag_tickTime > _spawnAt) && (_spawnAt != -1) ) then // no group has been spawned, spawn one. if ((isNull _group)) then
{
if ( ((_spawnedAt == 0) && (_respawnAt == 0)) || ((diag_tickTime > _respawnAt) && (_respawnAt > 0)) ) then // no group has been spawned, spawn one.
{ {
//params["_coords","_noVehiclePatrols","_aiDifficultyLevel","_missionPatrolVehicles",["_useRelativePos",true],["_uniforms",blck_SkinList], ["_headGear",blck_headgear],["_vests",blck_vests],["_backpacks",blck_backpacks],["_weaponList",[]],["_sideArms",blck_Pistols], ["_isScubaGroup",false]]; //params["_coords","_noVehiclePatrols","_aiDifficultyLevel","_missionPatrolVehicles",["_useRelativePos",true],["_uniforms",blck_SkinList], ["_headGear",blck_headgear],["_vests",blck_vests],["_backpacks",blck_backpacks],["_weaponList",[]],["_sideArms",blck_Pistols], ["_isScubaGroup",false]];
_return = [_pos,1,_difficulty,[_groupParameters],false] call blck_fnc_spawnMissionVehiclePatrols; _return = [_pos,1,_difficulty,[_groupParameters],false] call blck_fnc_spawnMissionVehiclePatrols;
// _return = [_vehicles, _missionAI, _abort]; // _return = [_vehicles, _missionAI, _abort];
_group = group (_return select 1 select 0); _group = group (_return select 1 select 0);
[blck_sm_Vehicles,_x,_group,-1] call _fnc_updateGroupSpawnTimerFields; [blck_sm_Vehicles,_x,_group,diag_tickTime] call _fnc_updateGroupSpawnTimerFields;
//diag_log format["_sm_monitorStaticUnits | spawn emplaced step :: blck_sm_Vehicles updated to %1",blck_sm_Vehicles]; //diag_log format["_sm_monitorStaticUnits | spawn emplaced step :: blck_sm_Vehicles updated to %1",blck_sm_Vehicles];
}; };
}; };
};
}forEach _sm_Vehicles; }forEach _sm_Vehicles;
[inVehicle,blck_sm_Vehicles] call _fnc_evaluateSpawnedGroups;
_sm_Aircraft = +blck_sm_Aircraft; _sm_Aircraft = +blck_sm_Aircraft;
{ {
// ["Exile_Chopper_Huey_Armed_Green",[22923.4,16953,3.19],"red",1000,0], // ["Exile_Chopper_Huey_Armed_Green",[22923.4,16953,3.19],"red",1000,0],
_x params["_groupParameters","_group","_spawnAt"]; _x params["_groupParameters","_group","_spawnedAt","_respawnAt","_lastTimePlayerNear"];
_groupParameters params["_aircraftType","_pos","_difficulty","_patrolRadius","_respawnInterval"]; _groupParameters params["_aircraftType","_pos","_difficulty","_patrolRadius","_respawnInterval"];
if ([_pos,triggerRange] call blck_fnc_playerInRange) then if ([_pos,triggerRange] call blck_fnc_playerInRange) then
{ {
if ( (isNull _group) && (diag_tickTime > _spawnAt) && (_spawnAt != -1)) then // no group has been spawned, spawn one. if ((isNull _group)) then
{
if ( ((_spawnedAt == 0) && (_respawnAt == 0)) || ((diag_tickTime > _respawnAt) && (_respawnAt > 0)) ) then // no group has been spawned, spawn one.
{ {
_weapon = [toLower _difficulty] call blck_fnc_selectAILoadout; _weapon = [toLower _difficulty] call blck_fnc_selectAILoadout;
//params["_coords","_skillAI","_helis",["_uniforms", blck_SkinList],["_headGear",blck_headgear],["_vests",blck_vests],["_backpacks",blck_backpacks],["_Launcher","none"],["_weaponList",[]],["_sideArms",[]]] //params["_coords","_skillAI","_helis",["_uniforms", blck_SkinList],["_headGear",blck_headgear],["_vests",blck_vests],["_backpacks",blck_backpacks],["_Launcher","none"],["_weaponList",[]],["_sideArms",[]]]
@ -209,44 +224,48 @@ _sm_Aircraft = +blck_sm_Aircraft;
diag_log format["[blckeagls] static aircraftePatrol spawner -> _return = %1",_return]; diag_log format["[blckeagls] static aircraftePatrol spawner -> _return = %1",_return];
_return params ["_patrolHeli","_ai","_abort"]; _return params ["_patrolHeli","_ai","_abort"];
_group = group (_ai select 0); _group = group (_ai select 0);
[blck_sm_Aircraft,_x,_group,-1] call _fnc_updateGroupSpawnTimerFields; [blck_sm_Aircraft,_x,_group,diag_tickTime] call _fnc_updateGroupSpawnTimerFields;
diag_log format["_sm_monitorStaticUnits | spawn emplaced step :: blck_sm_Aircraft updated to %1",blck_sm_Aircraft]; diag_log format["_sm_monitorStaticUnits | spawn emplaced step :: blck_sm_Aircraft updated to %1",blck_sm_Aircraft];
}; };
}; };
};
}forEach _sm_Aircraft; }forEach _sm_Aircraft;
[inVehicle,blck_sm_Aircraft] call _fnc_evaluateSpawnedGroups;
_sm_Emplaced = +blck_sm_Emplaced; _sm_Emplaced = +blck_sm_Emplaced;
{ {
// ["B_G_Mortar_01_F",[22944.3,16820.5,3.14243],"green",0,0,_group,_spawnAt] // ["B_G_Mortar_01_F",[22944.3,16820.5,3.14243],"green",0,0,_group,_spawnAt]
//diag_log format["_sm_monitorEmplacedUnits::-> _x = %1",_x]; //diag_log format["_sm_monitorEmplacedUnits::-> _x = %1",_x];
_x params["_groupParameters","_group","_spawnAt"]; _x params["_groupParameters","_group","_spawnedAt","_respawnAt","_lastTimePlayerNear"];
_groupParameters params["_weapType","_pos","_difficulty","_patrolRadius","_respawnInterval"]; _groupParameters params["_weapType","_pos","_difficulty","_patrolRadius","_respawnInterval"];
if ([_pos,triggerRange] call blck_fnc_playerInRange) then if ([_pos,triggerRange] call blck_fnc_playerInRange) then
{ {
if ( (_group isEqualTo grpNull) && (diag_tickTime > _spawnAt) && (_spawnAt != -1) ) then // no group has been spawned, spawn one. if ((isNull _group)) then
{
if ( ((_spawnedAt == 0) && (_respawnAt == 0)) || ((diag_tickTime > _respawnAt) && (_respawnAt > 0)) ) then // no group has been spawned, spawn one.
{ {
//diag_log format["[blckeagls static Emplaced spawner] _weapType = %1 and _difficulty = %2",_weapType,_difficulty]; //diag_log format["[blckeagls static Emplaced spawner] _weapType = %1 and _difficulty = %2",_weapType,_difficulty];
// params["_coords","_missionEmplacedWeapons","_useRelativePos","_noEmplacedWeapons","_aiDifficultyLevel",["_uniforms",blck_SkinList], ["_headGear",blck_headgear],["_vests",blck_vests],["_backpacks",blck_backpacks],["_weaponList",[]],["_sideArms",blck_Pistols]]; // params["_coords","_missionEmplacedWeapons","_useRelativePos","_noEmplacedWeapons","_aiDifficultyLevel",["_uniforms",blck_SkinList], ["_headGear",blck_headgear],["_vests",blck_vests],["_backpacks",blck_backpacks],["_weaponList",[]],["_sideArms",blck_Pistols]];
_group = [_pos,[_groupParameters],false,1,_difficulty] call blck_fnc_spawnEmplacedWeaponArray; _group = [_pos,[_groupParameters],false,1,_difficulty] call blck_fnc_spawnEmplacedWeaponArray;
[blck_sm_Emplaced,_x,_group,-1] call _fnc_updateGroupSpawnTimerFields; [blck_sm_Emplaced,_x,_group,diag_tickTime] call _fnc_updateGroupSpawnTimerFields;
//diag_log format["_sm_monitorStaticUnits | spawn emplaced step :: blck_sm_Emplaced updated to %1",blck_sm_Emplaced]; //diag_log format["_sm_monitorStaticUnits | spawn emplaced step :: blck_sm_Emplaced updated to %1",blck_sm_Emplaced];
}; };
}; };
};
}forEach _sm_Emplaced; }forEach _sm_Emplaced;
[inVehicle,blck_sm_Emplaced] call _fnc_evaluateSpawnedGroups;
_sm_scubaGroups = +blck_sm_scubaGroups; _sm_scubaGroups = +blck_sm_scubaGroups;
{ {
// [ [px, py, pz] /* position*/, "difficulty", 4 /*Number to Spawn*/, 150 /*radius of patrol*/, _respawnInterval, _group, _spawnAt] // [ [px, py, pz] /* position*/, "difficulty", 4 /*Number to Spawn*/, 150 /*radius of patrol*/, _respawnInterval, _group, _spawnAt]
_x params["_groupParameters","_group","_spawnAt"]; _x params["_groupParameters","_group","_spawnedAt","_respawnAt","_lastTimePlayerNear"];
_groupParameters params["_pos","_difficulty","_units","_patrolRadius","_respawnInterval"]; _groupParameters params["_pos","_difficulty","_units","_patrolRadius","_respawnInterval"];
//diag_log format["<_sm_monitorScubaUnits:: _group = %1 | _x = %2 |_forEachIndex = %3",_group,_x,_forEachIndex]; //diag_log format["<_sm_monitorScubaUnits:: _group = %1 | _x = %2 |_forEachIndex = %3",_group,_x,_forEachIndex];
private _groupSpawned = false; private _groupSpawned = false;
if ([_pos,triggerRange] call blck_fnc_playerInRange) then if ([_pos,triggerRange] call blck_fnc_playerInRange) then
{ {
if ((isNull _group) && (diag_tickTime > _spawnAt) && (_spawnAt != -1)) then // no group has been spawned, spawn one. if ((isNull _group)) then
{
if ( ((_spawnedAt == 0) && (_respawnAt == 0)) || ((diag_tickTime > _respawnAt) && (_respawnAt > 0)) ) then // no group has been spawned, spawn one.
{ {
//diag_log format["[blckeagls static scubaGroup spawner] evaluating _x = %1 ",_x]; //diag_log format["[blckeagls static scubaGroup spawner] evaluating _x = %1 ",_x];
_numAI = [_units] call blck_fnc_getNumberFromRange; _numAI = [_units] call blck_fnc_getNumberFromRange;
@ -254,61 +273,56 @@ _sm_scubaGroups = +blck_sm_scubaGroups;
//params["_pos", "_numUnits", ["_skillLevel","red"], "_center", ["_minDist",20], ["_maxDist",35], ["_uniforms",blck_UMS_uniforms], ["_headGear",blck_UMS_headgear],["_configureWaypoints",true],["_weapons",blck_UMS_weapons],["_vests",blck_UMS_vests]]; //params["_pos", "_numUnits", ["_skillLevel","red"], "_center", ["_minDist",20], ["_maxDist",35], ["_uniforms",blck_UMS_uniforms], ["_headGear",blck_UMS_headgear],["_configureWaypoints",true],["_weapons",blck_UMS_weapons],["_vests",blck_UMS_vests]];
_group = [_pos,_difficulty,_units,_patrolRadius] call blck_fnc_spawnScubaGroup; _group = [_pos,_difficulty,_units,_patrolRadius] call blck_fnc_spawnScubaGroup;
//diag_log format["[blckeagls static scubaGroup spawner] _group %1",_group]; //diag_log format["[blckeagls static scubaGroup spawner] _group %1",_group];
[blck_sm_scubaGroups,_x,_group,-1] call _fnc_updateGroupSpawnTimerFields; [blck_sm_scubaGroups,_x,_group,diag_tickTime] call _fnc_updateGroupSpawnTimerFields;
//diag_log format["_sm_monitorStaticUnits | spawn Group step :: blck_sm_Groups updated to %1",blck_sm_Groups]; //diag_log format["_sm_monitorStaticUnits | spawn Group step :: blck_sm_Groups updated to %1",blck_sm_Groups];
}; };
}; };
};
}forEach _sm_scubaGroups; }forEach _sm_scubaGroups;
[onFoot,blck_sm_scubaGroups] call _fnc_evaluateSpawnedGroups;
_sm_surfaceVehicles = +blck_sm_surfaceShips; _sm_surfaceVehicles = +blck_sm_surfaceShips;
{ {
// ["B_G_Offroad_01_armed_F",[22819.4,16929.5,3.17413],"red",600,0,_group,_spawnAt], // ["B_G_Offroad_01_armed_F",[22819.4,16929.5,3.17413],"red",600,0,_group,_spawnAt],
_x params["_groupParameters","_group","_spawnAt"]; _x params["_groupParameters","_group","_spawnedAt","_respawnAt","_lastTimePlayerNear"];
_groupParameters params["_weapType","_pos","_difficulty","_patrolRadius","_respawnInterval"]; _groupParameters params["_weapType","_pos","_difficulty","_patrolRadius","_respawnInterval"];
if ([_pos,triggerRange] call blck_fnc_playerInRange) then if ([_pos,triggerRange] call blck_fnc_playerInRange) then
{ {
if ( (_group isEqualTo grpNull) && (diag_tickTime > _spawnAt) && (_spawnAt != -1) ) then // no group has been spawned, spawn one. if ((isNull _group)) then
{
if ( ((_spawnedAt == 0) && (_respawnAt == 0)) || ((diag_tickTime > _respawnAt) && (_respawnAt > 0)) ) then // no group has been spawned, spawn one.
{ {
//diag_log format["[blckeagls static vehiclePatrol spawner] _weapType = %1 and _difficulty = %2",_weapType,_difficulty]; //diag_log format["[blckeagls static vehiclePatrol spawner] _weapType = %1 and _difficulty = %2",_weapType,_difficulty];
[_pos,1,_difficulty,[_groupParameters],false] call blck_fnc_spawnMissionVehiclePatrols; [_pos,1,_difficulty,[_groupParameters],false] call blck_fnc_spawnMissionVehiclePatrols;
_return params ["_vehicles", "_missionAI", "_abort"]; _return params ["_vehicles", "_missionAI", "_abort"];
_group = group (_missionAI select 0); _group = group (_missionAI select 0);
[blck_sm_surfaceShips,_x,_group,-1] call _fnc_updateGroupSpawnTimerFields; [blck_sm_surfaceShips,_x,_group,diag_tickTime] call _fnc_updateGroupSpawnTimerFields;
//diag_log format["_sm_monitorStaticUnits | spawn emplaced step :: blck_sm_Vehicles updated to %1",blck_sm_Vehicles]; //diag_log format["_sm_monitorStaticUnits | spawn emplaced step :: blck_sm_Vehicles updated to %1",blck_sm_Vehicles];
}; };
}; };
};
}forEach _sm_surfaceVehicles; }forEach _sm_surfaceVehicles;
[inVehicle,blck_sm_surfaceShips] call _fnc_evaluateSpawnedGroups;
_sm_SDVVehicles = +blck_sm_submarines; _sm_SDVVehicles = +blck_sm_submarines;
{ {
// ["B_G_Offroad_01_armed_F",[22819.4,16929.5,3.17413],"red",600,0,_group,_spawnAt], // ["B_G_Offroad_01_armed_F",[22819.4,16929.5,3.17413],"red",600,0,_group,_spawnAt],
_x params["_groupParameters","_group","_spawnAt"]; _x params["_groupParameters","_group","_spawnedAt","_respawnAt","_lastTimePlayerNear"];
_groupParameters params["_weapType","_pos","_difficulty","_patrolRadius","_respawnInterval"]; _groupParameters params["_weapType","_pos","_difficulty","_patrolRadius","_respawnInterval"];
if ([_pos,triggerRange] call blck_fnc_playerInRange) then if ([_pos,triggerRange] call blck_fnc_playerInRange) then
{ {
if ( (_group isEqualTo grpNull) && (diag_tickTime > _spawnAt) && (_spawnAt != -1) ) then // no group has been spawned, spawn one. if ((isNull _group)) then
{
if ( ((_spawnedAt == 0) && (_respawnAt == 0)) || ((diag_tickTime > _respawnAt) && (_respawnAt > 0)) ) then // no group has been spawned, spawn one.
{ {
//diag_log format["[blckeagls static sub patrol spawner] _weapType = %1 and _difficulty = %2",_weapType,_difficulty]; //diag_log format["[blckeagls static sub patrol spawner] _weapType = %1 and _difficulty = %2",_weapType,_difficulty];
//params["_coords","_noVehiclePatrols","_aiDifficultyLevel","_missionPatrolVehicles",["_useRelativePos",true],["_uniforms",blck_SkinList], ["_headGear",blck_headgear],["_vests",blck_vests],["_backpacks",blck_backpacks],["_weaponList",[]],["_sideArms",blck_Pistols], ["_isScubaGroup",false]]; //params["_coords","_noVehiclePatrols","_aiDifficultyLevel","_missionPatrolVehicles",["_useRelativePos",true],["_uniforms",blck_SkinList], ["_headGear",blck_headgear],["_vests",blck_vests],["_backpacks",blck_backpacks],["_weaponList",[]],["_sideArms",blck_Pistols], ["_isScubaGroup",false]];
_return = [_pos,1,_difficulty,[_groupParameters],false,blck_UMS_uniforms,blck_UMS_headgear,blck_UMS_vests,blck_backpacks,blck_UMS_weapons,blck_Pistols,true] call blck_fnc_spawnMissionVehiclePatrols; _return = [_pos,1,_difficulty,[_groupParameters],false,blck_UMS_uniforms,blck_UMS_headgear,blck_UMS_vests,blck_backpacks,blck_UMS_weapons,blck_Pistols,true] call blck_fnc_spawnMissionVehiclePatrols;
_return params ["_vehicles", "_missionAI", "_abort"]; _return params ["_vehicles", "_missionAI", "_abort"];
_group = group (_missionAI select 0); _group = group (_missionAI select 0);
[blck_sm_submarines,_x,_group,-1] call _fnc_updateGroupSpawnTimerFields; [blck_sm_submarines,_x,_group,diag_tickTime] call _fnc_updateGroupSpawnTimerFields;
//diag_log format["_sm_monitorStaticUnits | spawn emplaced step :: blck_sm_Vehicles updated to %1",blck_sm_Vehicles]; //diag_log format["_sm_monitorStaticUnits | spawn emplaced step :: blck_sm_Vehicles updated to %1",blck_sm_Vehicles];
}; };
}; };
if ( (_group isEqualTo grpNull) && (_spawnAt == -1) && (_respawnInterval > 0) ) then // a group was spawned and all units are dead
{
[blck_sm_submarines,_x,_group,(diag_tickTime + _respawnInterval)] call _fnc_updateGroupSpawnTimerFields;
//diag_log format["_sm_monitorStaticUnits | set Group respawn time step :: blck_sm_Vehicles updated to %1",blck_sm_Vehicles];
};
if ( (_group isEqualTo grpNull) && (_spawnAt == -1) && (_respawnInterval == 0) ) then // a group was spawned and all units are dead
{
blck_sm_submarines deleteAt (blck_sm_submarines find _x);
}; };
}forEach _sm_SDVVehicles; }forEach _sm_SDVVehicles;
[inVehicle,blck_sm_submarines] call _fnc_evaluateSpawnedGroups;
blck_sm_monitoring = 0; blck_sm_monitoring = 0;

View File

@ -105,14 +105,14 @@ _aiGroupParameters = [
//[[22832.9,16805.6,4.59315],"red",4, 75,900], //[[22832.9,16805.6,4.59315],"red",4, 75,900],
//[[22909.8,16778.6,3.19144],"red",4, 75,900], //[[22909.8,16778.6,3.19144],"red",4, 75,900],
//[[22809.4,16929.5,5.33892],"blue",1, 75,0], //[[22809.4,16929.5,5.33892],"blue",1, 75,0],
[[22819.4,16929.5,5.33892],"red",1, 75, 90] //[[22819.4,16929.5,5.33892],"red",1, 75, 90]
]; ];
_noVehiclePatrols = blck_SpawnVeh_Red; // Modified as needed; can be a numberic value (e.g. 3) or range presented as [2,4]; _noVehiclePatrols = blck_SpawnVeh_Red; // Modified as needed; can be a numberic value (e.g. 3) or range presented as [2,4];
// Note that this value is ignored if you define vehicle patrols in the array below. // Note that this value is ignored if you define vehicle patrols in the array below.
_vehiclePatrolParameters = [ _vehiclePatrolParameters = [
//["B_G_Offroad_01_armed_F",[22819.4,16929.5,3.17413],"green",600,0], //["B_G_Offroad_01_armed_F",[22819.4,16929.5,3.17413],"green",600,0],
//["B_G_Offroad_01_armed_F",[22809.5,16699.2,8.78706],"orange",600,90] //["B_G_Offroad_01_armed_F",[22809.5,16699.2,8.78706],"orange",600,60]
]; //[ ["vehicleClassName",[px,py,pz] /* center of patrol area */, difficulty /* blue, red etc*/, patrol radius] ] ]; //[ ["vehicleClassName",[px,py,pz] /* center of patrol area */, difficulty /* blue, red etc*/, patrol radius] ]
// When this array is empty, vehicle patrols will be scattered randomely around the mission. // When this array is empty, vehicle patrols will be scattered randomely around the mission.
// Allows you to define the location of the center of the patrol, vehicle type spawned, radius to patrol, and AI difficulty (blue, red, green etc). // Allows you to define the location of the center of the patrol, vehicle type spawned, radius to patrol, and AI difficulty (blue, red, green etc).
@ -122,7 +122,7 @@ _noAirPatrols = blck_noPatrolHelisRed; // You can use one of the pre-defined val
// Note: this value is ignored if you specify air patrols in the array below. // Note: this value is ignored if you specify air patrols in the array below.
_airPatrols = [ _airPatrols = [
//["Exile_Chopper_Huey_Armed_Green",[22923.4,16953,3.19],"red",1000,900]//, //["Exile_Chopper_Huey_Armed_Green",[22923.4,16953,3.19],"red",1000,900]//,
//[selectRandom _aircraftTypes,[22830.2,16618.1,11.4549],"green",1000,90] [selectRandom _aircraftTypes,[22830.2,16618.1,11.4549],"green",1000,0]
]; ];
// Change _useMines to true/false below to enable mission-specific settings. // Change _useMines to true/false below to enable mission-specific settings.
_useMines = blck_useMines; // Set to false if you have vehicles patrolling nearby. _useMines = blck_useMines; // Set to false if you have vehicles patrolling nearby.

View File

@ -1,6 +1,6 @@
private ["_version","_versionDate"]; private ["_version","_versionDate"];
blck_version = "6.83 Build 138"; blck_version = "6.83 Build 138";
_blck_version = blck_version; _blck_version = blck_version;
_blck_versionDate = "6-11-18 5:00 PM"; _blck_versionDate = "6-13-18 5:00 PM";
blck_pvs_version = _blck_version; blck_pvs_version = _blck_version;
publicVariable blck_pvs_version; publicVariable blck_pvs_version;