ACE3/addons/medical/functions/fnc_init.sqf

23 lines
365 B
Plaintext
Raw Normal View History

2015-02-06 12:47:17 +00:00
/*
* Author: KoffeinFlummi
* Initializes unit variables.
*
* Arguments:
* 0: The Unit <OBJECT>
*
* ReturnValue:
* nil
*
* Public: No
*/
#include "script_component.hpp"
private ["_unit"];
_unit = _this select 0;
_unit setVariable [QGVAR(pain), 0, true];
_unit setVariable [QGVAR(morphine), 0, true];
2015-02-10 22:13:14 +00:00
_unit setVariable [QGVAR(bloodVolume), 100, true];