mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
32 lines
637 B
Plaintext
32 lines
637 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: commy2
|
|
* Set structural damage of an object without modifying the individual hit points.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: New damage value <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [player, 0.5] call ace_medical_engine_fnc_setStructuralDamage
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params [["_unit", objNull, [objNull]], ["_damage", 0, [0]]];
|
|
|
|
if (!local _unit) exitWith {
|
|
ERROR("Unit not local or null");
|
|
};
|
|
|
|
private _hitPointDamages = getAllHitPointsDamage _unit param [2, []];
|
|
|
|
_unit setDamage _damage;
|
|
|
|
{
|
|
_unit setHitIndex [_forEachIndex, _x];
|
|
} forEach _hitPointDamages;
|