ACE3/addons/medical/functions/fnc_init.sqf
2015-02-06 13:47:17 +01:00

23 lines
363 B
Plaintext

/*
* 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];
_unit setVariable [QGVAR(bloodVolume), 1, true];