2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2016-09-11 18:46:35 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
2019-06-28 16:50:11 +00:00
|
|
|
* Creates a blood object and handles its cleanup.
|
2016-09-19 13:08:38 +00:00
|
|
|
* Available blood drop classes are blooddrop_1 through blooddrop_4.
|
2016-09-11 18:46:35 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2019-06-28 16:50:11 +00:00
|
|
|
* 0: Blood Drop Type <STRING>
|
2016-09-11 18:46:35 +00:00
|
|
|
* 1: Position <ARRAY>
|
|
|
|
*
|
|
|
|
* Return Value:
|
2019-06-28 16:50:11 +00:00
|
|
|
* Blood Drop <OBJECT>
|
2016-09-11 18:46:35 +00:00
|
|
|
*
|
|
|
|
* Example:
|
2016-09-19 13:08:38 +00:00
|
|
|
* ["blooddrop_2", getPos player] call ace_medical_blood_fnc_createBlood
|
2016-09-11 18:46:35 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2019-06-28 16:50:11 +00:00
|
|
|
params ["_type", "_position"];
|
|
|
|
TRACE_2("Creating blood",_type,_position);
|
2016-09-11 18:46:35 +00:00
|
|
|
|
2016-09-19 13:08:38 +00:00
|
|
|
private _model = GVAR(models) getVariable _type;
|
2016-09-11 18:46:35 +00:00
|
|
|
|
2019-06-28 16:50:11 +00:00
|
|
|
private _bloodDrop = createSimpleObject [_model, [0, 0, 0]];
|
|
|
|
_bloodDrop setDir random 360;
|
|
|
|
_bloodDrop setPos _position;
|
2016-09-11 18:46:35 +00:00
|
|
|
|
2019-06-28 16:50:11 +00:00
|
|
|
[QGVAR(bloodDropCreated), _bloodDrop] call CBA_fnc_serverEvent;
|
2016-09-11 18:46:35 +00:00
|
|
|
|
2019-06-28 16:50:11 +00:00
|
|
|
_bloodDrop
|