mirror of
https://github.com/Defent/DMS_Exile.git
synced 2024-08-30 16:52:12 +00:00
Derp
This commit is contained in:
parent
cd744e3759
commit
146ad20edc
@ -4,7 +4,7 @@ class CfgPatches
|
||||
{
|
||||
units[] = {};
|
||||
weapons[] = {};
|
||||
a3_DMS_version = "May 15, 2016 (TEST)";
|
||||
a3_DMS_version = "May 16, 2016 (TEST)";
|
||||
requiredVersion = 1.36;
|
||||
requiredAddons[] = {"exile_client","exile_server_config"};
|
||||
};
|
||||
|
@ -6,7 +6,7 @@
|
||||
private["_wp","_wp2","_wp3","_pos","_missionName","_msgStart","_msgWIN","_msgLOSE"];
|
||||
|
||||
// For logging purposes
|
||||
_num = DMS_MissionCount;
|
||||
private _num = DMS_MissionCount;
|
||||
|
||||
|
||||
// Set mission side (only "bandit" is supported for now)
|
||||
@ -291,5 +291,7 @@ if !(_added) exitWith
|
||||
// Notify players
|
||||
[_missionName,_msgStart] call DMS_fnc_BroadcastMissionStatus;
|
||||
|
||||
|
||||
(format ["MISSION: (%1) :: Mission #%2 started at %3 with %4 AI units and %5 difficulty at time %6",_missionName,_num,_pos,_AICount,_difficulty,_time]) call DMS_fnc_DebugLog;
|
||||
if (DMS_DEBUG) then
|
||||
{
|
||||
(format ["MISSION: (%1) :: Mission #%2 started at %3 with %4 AI units and %5 difficulty at time %6",_missionName,_num,_pos,_AICount,_difficulty,_time]) call DMS_fnc_DebugLog;
|
||||
};
|
||||
|
@ -65,7 +65,7 @@ for "_attempts" from 1 to MAX_ATTEMPTS do
|
||||
}
|
||||
else
|
||||
{
|
||||
[DMS_MinMax_X_Coords call DMS_fnc_SelectRandomVal,DMS_MinMax_Y_Coords call DMS_fnc_SelectRandomVal] isFlatEmpty [_nearestObjectMinDistance, 0, 9999, 1, 0, -1, objNull]
|
||||
[DMS_MinMax_X_Coords call DMS_fnc_SelectRandomVal,DMS_MinMax_Y_Coords call DMS_fnc_SelectRandomVal] isFlatEmpty [_nearestObjectMinDistance, 0, -1, 1, -1, false, objNull]
|
||||
};
|
||||
|
||||
/*
|
||||
|
@ -154,7 +154,11 @@ ___
|
||||
# Changelog:
|
||||
|
||||
### Test Branch:
|
||||
#### May 14, 2016 (2:00 PM CST-America):
|
||||
#### May 16, 2016 (11:00 AM CST-America):
|
||||
* Occupation will now print debug logs only if DMS_DEBUG is enabled.
|
||||
* Fixed an error with fn_FindSafePos.
|
||||
|
||||
#### May 15, 2016 (2:00 PM CST-America):
|
||||
* **NEW CONFIG VALUES:**
|
||||
|
||||
DMS_AI_UseRealNames
|
||||
|
Loading…
Reference in New Issue
Block a user