mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
352 B
Plaintext
22 lines
352 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Set the triage status of object
|
|
*
|
|
* Arguments:
|
|
* 0: Target <OBJECT>
|
|
* 1: Status <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* NONE
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
private ["_target", "_status"];
|
|
_target = _this select 0;
|
|
_status = _this select 1;
|
|
|
|
_target setvariable [QEGVAR(medical,triageLevel), _status, true];
|