mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
b2f4b8ea20
* Cleanup medical settings * Fix extra [ * Allow giving IV/blood to self by default * Medical Blood - Settings improvements and cleanup (#7069) * Add more blood settings and cleanup * Fix include before header * Update addons/medical_blood/functions/fnc_init.sqf Co-Authored-By: PabstMirror <pabstmirror@gmail.com> * Disable debug * Cleanup moved settings * Fix remaining setting descriptions
32 lines
720 B
Plaintext
32 lines
720 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>
|
|
*
|
|
* Return Value:
|
|
* Blood Drop <OBJECT>
|
|
*
|
|
* Example:
|
|
* ["blooddrop_2", getPos player] call ace_medical_blood_fnc_createBlood
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_type", "_position"];
|
|
TRACE_2("Creating blood",_type,_position);
|
|
|
|
private _model = GVAR(models) getVariable _type;
|
|
|
|
private _bloodDrop = createSimpleObject [_model, [0, 0, 0]];
|
|
_bloodDrop setDir random 360;
|
|
_bloodDrop setPos _position;
|
|
|
|
[QGVAR(bloodDropCreated), _bloodDrop] call CBA_fnc_serverEvent;
|
|
|
|
_bloodDrop
|