From cbf97f3a7ada5e7ae21d353817f7819ac69c2e67 Mon Sep 17 00:00:00 2001 From: Ghostrider-DbD- Date: Mon, 23 Jan 2017 08:24:54 -0500 Subject: [PATCH 1/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3222f26..e7cfcc3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ Blckegls mission system Ver 6.54 Build 33 -Included is an updated version of blckeagls mission system. This began as an effort to fix bugs in and upgrade version 2.0.2 as updated by Narines and has now evolved to a complete reworking of almost all code. +Included is an updated version of blckeagls mission system which I started in as an effort to fix bugs in and upgrade version 2.0.2 as updated by Narines. At this time the mission system is almost entirely comprised of new code and takes advantage of new functions introduced with Arma updates over the past 2 years wherever possible, particularly when performance testing has shown a benefit. * Installation: Please refer to Installation.txt for a detailed description of installation and what you need to add to BE filters. infiSTAR Users: you may need to whitelist _MainMarker depending on your settings. @@ -35,4 +35,4 @@ License -------------------------- All the code and information provided here is provided under an Attribution Non-Commercial ShareAlike 4.0 Commons License. -http://creativecommons.org/licenses/by-nc-sa/4.0/ \ No newline at end of file +http://creativecommons.org/licenses/by-nc-sa/4.0/ From 7e407f81a509887ce085f3f101594cb1dbbfb082 Mon Sep 17 00:00:00 2001 From: Ghostrider-DbD- Date: Thu, 26 Jan 2017 00:33:39 -0500 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2418f5b..bd6341b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ Blckegls mission system Ver 6.54 -Build 34 +Build 35 Included is an updated version of blckeagls mission system. This began as an effort to fix bugs in and upgrade version 2.0.2 as updated by Narines and has now evolved to a complete reworking of almost all code. From ea9d887e697d4ba35a2a6dd8be3691c619dcbcce Mon Sep 17 00:00:00 2001 From: Ghostrider-DbD- Date: Thu, 26 Jan 2017 22:41:28 -0500 Subject: [PATCH 3/3] Update GMS_fnc_Time.sqf Disable some .RPT logging. --- .../Compiles/TimeAccel/GMS_fnc_Time.sqf | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/@epochhive/addons/custom_server/Compiles/TimeAccel/GMS_fnc_Time.sqf b/@epochhive/addons/custom_server/Compiles/TimeAccel/GMS_fnc_Time.sqf index 7c2c50f..5e2565d 100644 --- a/@epochhive/addons/custom_server/Compiles/TimeAccel/GMS_fnc_Time.sqf +++ b/@epochhive/addons/custom_server/Compiles/TimeAccel/GMS_fnc_Time.sqf @@ -2,7 +2,6 @@ // by Ghostrider-DBD_ // Last Updated 12/21/16 // Creds to AWOL, A3W, LouD and Creampie for insights. - if (!isServer) exitWith {}; /* @@ -21,12 +20,17 @@ _time = dayTime; //diag_log format["_fnc_Time:: -- > _sunrise = %1 | _sunset = %2 | _time = %3",_sunrise,_sunset,_time]; // Night -if (_time > (_sunset + 0.5) || _time < (_sunrise - 0.5)) exitWith {setTimeMultiplier blck_timeAccelerationNight; diag_log format["NIGHT TIMGE ADJUSTMENT:: time accel updated to %1; time of day = %2",timeMultiplier,dayTime];}; +if (_time > (_sunset + 0.5) || _time < (_sunrise - 0.5)) exitWith { + setTimeMultiplier blck_timeAccelerationNight; + //diag_log format["NIGHT TIMGE ADJUSTMENT:: time accel updated to %1; time of day = %2",timeMultiplier,dayTime]; +}; // Day -if (_time > (_sunrise + 0.5) && _time < (_sunset - 0.5)) exitWith {setTimeMultiplier blck_timeAccelerationDay; diag_log format["DAYTIME ADJUSTMENT:: time accel updated to %1; time of day = %2",timeMultiplier,dayTime];}; +if (_time > (_sunrise + 0.5) && _time < (_sunset - 0.5)) exitWith { + setTimeMultiplier blck_timeAccelerationDay; + //diag_log format["DAYTIME ADJUSTMENT:: time accel updated to %1; time of day = %2",timeMultiplier,dayTime]; +}; // default -setTimeMultiplier blck_timeAccelerationDusk; diag_log format["DUSK ADJUSTMENT:: time accel updated to %1; time of day = %2",timeMultiplier,dayTime]; - - +setTimeMultiplier blck_timeAccelerationDusk; +//diag_log format["DUSK ADJUSTMENT:: time accel updated to %1; time of day = %2",timeMultiplier,dayTime];