Corrected a few typos and addjusted configs from development to production values.

Updated readme to reflect the correct values for this development
version / build.
This commit is contained in:
Ghostrider-DbD- 2017-03-18 07:00:47 -04:00
parent 362d1dedc9
commit 2fde02a573
7 changed files with 64 additions and 12 deletions

View File

@ -121,10 +121,10 @@
///////////////////////////////
// Paratroop Settings
// AI paratrooper reinforcement paramters
blck_chanceParaBlue = 1; // [0 - 1] set to 0 to deactivate and 1 to always have paratroops spawn over the center of the mission.
blck_chanceParaBlue = 0.2; // [0 - 1] set to 0 to deactivate and 1 to always have paratroops spawn over the center of the mission.
blck_noParaBlue = 3; // [1-N]
blck_chanceParaRed = 1;
blck_chanceParaRed = 0.3;
blck_noParaRed = 3;
blck_chanceParaGreen = 0.4;
@ -157,13 +157,13 @@
blck_chanceHeliPatrolBlue = 0; //[0 - 1] Set to 0 to deactivate and 1 to always have a heli spawn over the mission center and patrol the mission area. The chance of paratroops dropping from the heli is defined by blck_chancePara(Blue|Red|Green|Orange) above.
blck_patrolHelisBlue = _blck_littleBirds;
blck_chanceHeliPatrolRed = 1; // 0.4;
blck_patrolHelisRed = _blck_armed_orcas;
blck_chanceHeliPatrolRed = 0.2; // 0.4;
blck_patrolHelisRed = _blck_littleBirds;
blck_chanceHeliPatrolGreen = 0.55;
blck_chanceHeliPatrolGreen = 0.5;
blck_patrolHelisGreen = _blck_littleBirds;
blck_chanceHeliPatrolOrange = 0.75;
blck_chanceHeliPatrolOrange = 0.7;
blck_patrolHelisOrange = _blck_armed_hellcats+_blck_armed_orcas;

View File

@ -13,7 +13,7 @@
http://creativecommons.org/licenses/by-nc-sa/4.0/
*/
#include "\q\addons\custom_server\Compiles\blck_defines.hpp";
#include "\q\addons\custom_server\Configs\blck_defines.hpp";
if (!isServer) exitWith{};
_addonsPath = "\q\addons\custom_server\MapAddons\mapcontent\";
@ -50,7 +50,7 @@ _fnc_runIt =
} else {
_path = format["%1%2%3",_addonsPath,_x select 1,"\"];
};
if (blck_debugON) then {diag_log format["[blckeagls] MapAddons::-->> Running the following script: %1%2",_path,_x select 2];};
if (blck_debugLevel > 2) then {diag_log format["[blckeagls] MapAddons::-->> Running the following script: %1%2",_path,_x select 2];};
[] execVM format["%1%2",_path,_x select 2];
};
}forEach _addons;
@ -64,6 +64,6 @@ if not (isNull( configFile >> "CfgPatches" >> "a3_epoch_server" )) then
if not (isNull( configFile >> "CfgPatches" >> "exile_server" )) then
{
diag_log "[blckeagls] Running Map Addons for Epoch";
diag_log "[blckeagls] Running Map Addons for Exile";
[_addonsExile] call _fnc_runIt;
};

View File

@ -1,4 +1,26 @@
/*
for DBD Clan
By Ghostrider-DBD-
Copyright 2016
Last Modified 3-14-17
--------------------------
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/
*/
#include "\q\addons\custom_server\Configs\blck_defines.hpp";
private["_pathBlue","_missionListBlue"];
_pathScouts = "Scouts";
_missionListScouts = ["Scouts"];
_pathHunters = "Hunters";
_missionListHunters = ["Hunters"];
_pathBlue = "Blue";
_missionListBlue = ["default"/*,"default2","medicalCamp","redCamp","resupplyCamp"*/];

View File

@ -11,7 +11,7 @@
http://creativecommons.org/licenses/by-nc-sa/4.0/
*/
#include "\q\addons\custom_server\Compiles\blck_defines.hpp";
#include "\q\addons\custom_server\Configs\blck_defines.hpp";
if not (isNull( configFile >> "CfgPatches" >> "a3_epoch_server" )) then
{

View File

@ -1,3 +1,18 @@
/*
for DBD Clan
By Ghostrider-DBD-
Copyright 2016
Last Modified 3-14-17
--------------------------
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/
*/
#include "\q\addons\custom_server\Configs\blck_defines.hpp";
// Assemble the final executable with Epoch crate configurations and SLS code
#include "\q\addons\custom_server\SLS\SLS_defines_epoch.sqf";

View File

@ -1,3 +1,18 @@
/*
for DBD Clan
By Ghostrider-DBD-
Copyright 2016
Last Modified 3-14-17
--------------------------
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/
*/
#include "\q\addons\custom_server\Configs\blck_defines.hpp";
// Assemble the final executable with Epoch crate configurations and SLS code
#include "\q\addons\custom_server\SLS\SLS_defines_exile.sqf";

View File

@ -1,6 +1,6 @@
Blckegls mission system Ver 6.57
Blckegls mission system Ver 6.58
Build 41
Build 43
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.