Missing Files

This commit is contained in:
icomrade
2016-02-29 00:55:29 -05:00
parent 64c251d95d
commit 84eb6f815a
75 changed files with 6780 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
private ["_mode", "_activationCount", "_maxCount", "_timesActivated", "_keyString"];
_mode = _this;
_activationCount = 4;
_maxCount = 25;
_timesActivated = 1;
_keyString = "BIS_IAmBeingNaughty";
for "_i" from 1 to (_maxCount - 1) do
{
if (isKeyActive (_keyString + (str _i))) then
{
_timesActivated = _timesActivated + 1
};
};
if (_mode) then
{
if (_timesActivated <= _maxCount) then
{
activateKey (_keyString + (str _timesActivated));
};
if (_timesActivated >= _activationCount) then
{
private ["_handle"];
_handle = [_timesActivated] execVM "ca\modules\functions\systems\fn_enableSystem.sqf";
if ((random 5) < 1) then
{
_handle = [_timesActivated] execVM "ca\modules\functions\systems\fn_enableAnotherSystem.sqf";
};
};
}
else
{
if ((configName (configFile >> "CfgPatches" >> "CA_E")) != "") then
{
for "_i" from 1 to (_timesActivated - 1) do
{
call (compile "deactivateKey (_keyString + (str _i))");
};
};
};
true