Added a missing file, de-activated DBD-specific settings.

This commit is contained in:
Ghostrider-DbD- 2017-03-15 07:45:22 -04:00
parent 310ec8dd20
commit 23b9567aab
4 changed files with 26 additions and 3 deletions

View File

@ -0,0 +1,19 @@
// removes mines in a region centered around a specific position.
/*
[_missionAIGroups] call blck_fnc_missionAIareDead; // _missionAIGroups is an array of groups.
for DBD Clan
By Ghostrider-DBD-
Copyright 2016
Last Modified 3-13-17
*/
params ["_missionAIGroups"];
private["_allAIDead","_group"];
_allAIDead = true;
{
_group = _x; // done for coding clarity only - actually less efficient this way
if ( {alive _x) count (units _group) > 0 ) exitWith {_allAIDead = false};
} forEach _missionAIGroups;
_allAIDead;

View File

@ -13,5 +13,5 @@
*/ */
#define modUsed true #define modUsed true
#define DBDserver 1 //#define DBDserver 1
#define wpModeMove #define wpModeMove

View File

@ -4,6 +4,10 @@ Loosely based on the AI mission system by blckeagls ver 2.0.2
Contributions by Narines: bug fixes, testing, infinite ammo fix. Contributions by Narines: bug fixes, testing, infinite ammo fix.
Ideas or code from that by Vampire and KiloSwiss have been used for certain functions. Ideas or code from that by Vampire and KiloSwiss have been used for certain functions.
3/15/17 Version 6.58 Build 42
Disabled DBDServer settings for this public release.
Added a missing file (custom_server\Compiles\Missions\GMS_fnc_missionAIareDead.sqf )
3/13/17 Version 6.58 Build 41 3/13/17 Version 6.58 Build 41
Changed the method of tracking live AI from an array of units to an array of groups which will aid in monitoring groups for a 'stuck' state. Changed the method of tracking live AI from an array of units to an array of groups which will aid in monitoring groups for a 'stuck' state.
Added Search and Destroy waypoints for each location in the waypoint cycle. Added Search and Destroy waypoints for each location in the waypoint cycle.

View File

@ -13,5 +13,5 @@
*/ */
#include "\q\addons\custom_server\Compiles\blck_defines.hpp"; #include "\q\addons\custom_server\Compiles\blck_defines.hpp";
private ["_version","_versionDate"]; private ["_version","_versionDate"];
_blck_version = "6.58 Build 41"; _blck_version = "6.58 Build 42";
_blck_versionDate = "3-13-17 8:00 PM"; _blck_versionDate = "3-15-17 8:00 AM";