ACE3/addons/concertina_wire/functions/fnc_handleDamage.sqf

30 lines
545 B
Plaintext
Raw Normal View History

/*
* Author: Ruthberg
*
* Handles wire damage
*
* Arguments:
* 0: wire <OBJECT>
* 1: selectionName <STRING>
* 2: damage <NUMBER>
* 3: source <OBJECT>
* 4: projectile <STRING>
*
* Return Value:
* None
2015-08-09 00:19:34 +00:00
*
* Example:
* [wire, "selection", 5, source, "scrap"] call ace_concertina_wire_fnc_handleDamage
*
2015-08-09 00:19:34 +00:00
* Public: No
*/
#include "script_component.hpp"
2015-08-09 00:19:34 +00:00
params ["_wire", "", "_damage", "_source", ""];
if (_damage < 0.5) exitWith { 0 };
if (!(isNull _source)) then {
_wire setVariable [QGVAR(lastDamager), _source];
};
_damage