#include "script_component.hpp" /* * Author: PabstMirror * Applies a splint to the patient on the given body part. * * Arguments: * 0: Medic * 1: Patient * 2: Body Part * * Return Value: * Nothing * * Example: * [player, cursorObject, "LeftLeg"] call ace_medical_treatment_fnc_splint * * Public: No */ params ["_medic", "_patient", "_bodyPart"]; TRACE_3("splint",_medic,_patient,_bodyPart); [QGVAR(splintLocal), [_medic, _patient, _bodyPart], _patient] call CBA_fnc_targetEvent;