mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
33 lines
783 B
Plaintext
33 lines
783 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Glowbal
|
|
* Creates a blood object and handles its cleanup.
|
|
* Available blood drop classes are blooddrop_1 through blooddrop_4.
|
|
*
|
|
* Arguments:
|
|
* 0: Blood Drop Type <STRING>
|
|
* 1: Position <ARRAY>
|
|
* 2: Source <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Blood Drop <OBJECT>
|
|
*
|
|
* Example:
|
|
* ["blooddrop_2", getPos player, player] call ace_medical_blood_fnc_createBlood
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_type", "_position", "_source"];
|
|
TRACE_3("Creating blood",_type,_position,_source);
|
|
|
|
private _model = GVAR(models) getVariable _type;
|
|
|
|
private _bloodDrop = createSimpleObject [_model, [0, 0, 0]];
|
|
_bloodDrop setDir random 360;
|
|
_bloodDrop setPos _position;
|
|
|
|
[QGVAR(bloodDropCreated), [_bloodDrop, _source]] call CBA_fnc_serverEvent;
|
|
|
|
_bloodDrop
|