ACE3/addons/medical/functions/fnc_adjustPainLevel.sqf
PabstMirror 751ddb64ac
Handle old public funcs, fix strings (#6890)
* Handle old public funcs, fix strings

* Update addons/medical/XEH_preInit.sqf

Co-Authored-By: PabstMirror <pabstmirror@gmail.com>
2019-03-24 22:17:46 -05:00

28 lines
594 B
Plaintext

#include "script_component.hpp"
/*
* Author: PabstMirror
* Public interface to allow external modules to safely adjust pain levels.
*
* Arguments:
* 0: The patient <OBJECT>
* 1: Added ammount of pain (can be negative) <NUMBER>
*
* Return Value:
* The new pain level <NUMBER>
*
* Example:
* [guy, 0.5] call ace_medical_fnc_adjustPainLevel
*
* Public: Yes
*/
params ["_unit", "_addedPain"];
if (!local _unit) exitWith { ERROR_1("unit [%1] is not local",_unit); };
private _pain = GET_PAIN(_unit);
_pain = 0 max (_pain + _addedPain) min 1;
_unit setVariable [VAR_PAIN, _pain];