2015-03-07 12:06:33 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
2015-03-08 11:05:52 +00:00
|
|
|
* Module for adjusting the medical damage settings
|
2015-03-07 12:06:33 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: The module logic <LOGIC>
|
|
|
|
* 1: units <ARRAY>
|
|
|
|
* 2: activated <BOOL>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None <NIL>
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
private ["_logic", "_units", "_activated"];
|
|
|
|
_logic = _this select 0;
|
|
|
|
_units = _this select 1;
|
|
|
|
_activated = _this select 2;
|
|
|
|
|
|
|
|
if !(_activated) exitWith {};
|
|
|
|
|
|
|
|
[_logic, QGVAR(level), "level"] call EFUNC(common,readSettingFromModule);
|
2015-04-25 20:20:28 +00:00
|
|
|
[_logic, QGVAR(medicSetting), "medicSetting"] call EFUNC(common,readSettingFromModule);
|
|
|
|
[_logic, QGVAR(allowLitterCreation), "allowLitterCreation"] call EFUNC(common,readSettingFromModule);
|
|
|
|
[_logic, QGVAR(litterCleanUpDelay), "litterCleanUpDelay"] call EFUNC(common,readSettingFromModule);
|
2015-03-08 11:05:52 +00:00
|
|
|
[_logic, QGVAR(enableScreams), "enableScreams"] call EFUNC(common,readSettingFromModule);
|
|
|
|
[_logic, QGVAR(playerDamageThreshold), "playerDamageThreshold"] call EFUNC(common,readSettingFromModule);
|
|
|
|
[_logic, QGVAR(AIDamageThreshold), "AIDamageThreshold"] call EFUNC(common,readSettingFromModule);
|
2015-05-01 16:49:59 +00:00
|
|
|
[_logic, QGVAR(enableUnconsciousnessAI), "enableUnconsciousnessAI"] call EFUNC(common,readSettingFromModule);
|
2015-03-08 11:05:52 +00:00
|
|
|
[_logic, QGVAR(preventInstaDeath), "preventInstaDeath"] call EFUNC(common,readSettingFromModule);
|
2015-04-04 19:59:18 +00:00
|
|
|
[_logic, QGVAR(bleedingCoefficient), "bleedingCoefficient"] call EFUNC(common,readSettingFromModule);
|
2015-04-22 20:29:31 +00:00
|
|
|
[_logic, QGVAR(painCoefficient), "painCoefficient"] call EFUNC(common,readSettingFromModule);
|
2015-04-05 18:23:07 +00:00
|
|
|
[_logic, QGVAR(keepLocalSettingsSynced), "keepLocalSettingsSynced"] call EFUNC(common,readSettingFromModule);
|