mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
26 lines
706 B
Plaintext
26 lines
706 B
Plaintext
/*
|
|
* Author: Glowbal, KoffeinFlummi
|
|
* Increase the Heart Rate of a local unit by given number within given amount of seconds.
|
|
*
|
|
* Arguments:
|
|
* 0: The unit <OBJECT>
|
|
* 1: value <NUMBER>
|
|
* 2: time in seconds <NUMBER>
|
|
* 3: callback <CODE>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
params [["_unit", objNull, [objNull]], ["_value", 0, [0]], ["_time", 1, [0]], ["_callBack", {}, [{}]]];
|
|
|
|
_adjustment = _unit getVariable [QGVAR(heartRateAdjustments), []];
|
|
_adjustment pushBack [_value, _time, _callBack];
|
|
_unit setVariable [QGVAR(heartRateAdjustments), _adjustment ];
|
|
["Medical_onHeartRateAdjustmentAdded", [_unit, _value, _time]] call EFUNC(common,localEvent);
|