ACE3/addons/medical_blood/functions/fnc_spurt.sqf

41 lines
1015 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
2016-09-11 18:46:35 +00:00
/*
* Author: Sickboy
* Spurts blood on the ground based on the direction and damage.
2016-09-11 18:46:35 +00:00
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Direction <NUMBER>
* 2: Damage <NUMBER>
2016-09-11 18:46:35 +00:00
*
* Return Value:
* None
*
* Example:
* [player, random 360, 1] call ace_medical_blood_fnc_spurt
2016-09-11 18:46:35 +00:00
*
* Public: No
*/
#define MAXIMUM_DROPS 4
#define DISTANCE_BETWEEN_DROPS 0.20
#define OFFSET 0.25
params ["_unit", "_direction", "_damage"];
2016-09-11 18:46:35 +00:00
private _distanceBetweenDrops = DISTANCE_BETWEEN_DROPS * _damage;
2016-09-19 11:26:32 +00:00
private _offset = OFFSET + _distanceBetweenDrops;
private _position = _unit getPos [_offset, _direction];
["blooddrop_2", _position, _direction] call FUNC(createBlood);
2016-09-11 18:46:35 +00:00
2016-09-19 11:26:32 +00:00
private _dropAmount = ceil (MAXIMUM_DROPS * _damage);
TRACE_2("Spurting blood",_dropAmount,_damage);
2016-09-19 11:26:32 +00:00
if (_dropAmount > 1) then {
for "_i" from 2 to _dropAmount do {
_position = _position getPos [_distanceBetweenDrops, _direction];
["blooddrop_1", _position, _direction] call FUNC(createBlood);
2016-09-11 18:46:35 +00:00
};
};