ACE3/addons/medical/functions/fnc_actionPlaceInBodyBag.sqf

53 lines
1.5 KiB
Plaintext
Raw Normal View History

2015-02-21 20:53:07 +00:00
/*
* Author: Glowbal
* Replace a (dead) body by a body bag
2015-02-21 20:53:07 +00:00
*
* Arguments:
* 0: The actor <OBJECT>
* 1: The patient <OBJECT>
2015-02-21 20:53:07 +00:00
*
* Return Value:
* body bag (will return objNull when run where target is not local) <OBJECT>
*
* Example:
* [player, cursorTarget] call ace_medical_fnc_actionPlaceInBodyBag
2015-02-21 20:53:07 +00:00
*
* Public: Yes
*/
#include "script_component.hpp"
2015-08-22 14:25:10 +00:00
params ["_caller", "_target"];
TRACE_2("params",_caller,_target);
if (!local _target) exitWith {
TRACE_1("running where local",local _target);
2016-06-03 18:57:21 +00:00
[QGVAR(actionPlaceInBodyBag), [_caller, _target], [_target]] call CBA_fnc_targetEvent;
objNull
};
2015-02-21 20:53:07 +00:00
2015-04-05 17:27:53 +00:00
if (alive _target) then {
TRACE_1("manually killing with setDead",_target);
2015-04-05 17:27:53 +00:00
[_target, true] call FUNC(setDead);
2015-02-21 20:53:07 +00:00
};
private _position = (getPosASL _target) vectorAdd [0, 0, 0.2];
private _headPos = _target modelToWorldVisual (_target selectionPosition "head");
private _spinePos = _target modelToWorldVisual (_target selectionPosition "Spine3");
private _dirVect = _headPos vectorFromTo _spinePos;
private _direction = _dirVect call CBA_fnc_vectDir;
//move the body away now, so it won't physX the bodyBag object (this setPos seems to need to be called where object is local)
_target setPosASL [-5000, -5000, 0];
private _bodyBag = createVehicle ["ACE_bodyBagObject", _position, [], 0, ""];
// prevent body bag from flipping
_bodyBag setPosASL _position;
_bodyBag setDir _direction;
["ace_placedInBodyBag", [_target, _bodyBag]] call CBA_fnc_globalEvent; //hide and delete body on server
_bodyBag