mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
a8bd08136e
* Added Grave model, swapped Grave classnames * Change p3d name of Grave model * Update addons/medical_treatment/CfgVehicles.hpp Co-authored-by: PabstMirror <pabstmirror@gmail.com> * Updated grave model, textures, classname. --------- Co-authored-by: PabstMirror <pabstmirror@gmail.com>
32 lines
778 B
Plaintext
32 lines
778 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Glowbal, drofseh
|
|
* Places a dead body inside a grave.
|
|
*
|
|
* Arguments:
|
|
* 0: Medic <OBJECT>
|
|
* 1: Patient <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [player, cursorObject] call ace_medical_treatment_fnc_placeInGrave
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_medic", "_patient"];
|
|
TRACE_1("placeInGrave",_patient);
|
|
|
|
if ((alive _patient) && {GVAR(allowGraveDigging) < 2}) exitWith {
|
|
[LSTRING(bodybagWhileStillAlive)] call EFUNC(common,displayTextStructured);
|
|
};
|
|
|
|
private _graveClassname = missionNameSpace getVariable [QGVAR(graveClassname), "ACE_Grave"];
|
|
|
|
private _graveRotation = missionNameSpace getVariable [QGVAR(graveRotation), 0];
|
|
|
|
[_this, _graveClassname, [0,0,0], _graveRotation] call FUNC(placeInBodyBagOrGrave);
|
|
|