ACE3/addons/medical_menu/functions/fnc_setTriageStatus.sqf

19 lines
298 B
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Set the triage status of object
*
* Arguments:
* 0: Target <OBJECT>
* 1: Status <NUMBER>
*
* Return Value:
2015-08-07 03:37:41 +00:00
* None
*
* Public: No
*/
#include "script_component.hpp"
2015-08-07 03:37:41 +00:00
params ["_target", "_status"];
_target setvariable [QEGVAR(medical,triageLevel), _status, true];