ACE3/addons/medical/functions/fnc_treatmentBasic_bloodbag.sqf

25 lines
417 B
Plaintext
Raw Normal View History

2015-02-24 21:09:31 +00:00
/*
* Author: KoffeinFlummi
* Epipen treatment.
*
* Arguments:
* 0: Medic <OBJECT>
* 1: Patient <OBJECT>
* 2: Selection Name <STRING>
* 3: Treatment Classname <STRING>
* 4: Items required <ARRAY<STRING>>
*
* Return Value:
* nil
*
* Public: No
*/
#include "script_component.hpp"
_medic = _this select 0;
2015-02-28 17:59:37 +00:00
_patient = _this select 1;
2015-02-24 21:09:31 +00:00
_items = _this select 4;
[_patient, false] call FUNC(setUnconscious);