ACE3/addons/repair/functions/fnc_setDamage.sqf

38 lines
946 B
Plaintext
Raw Normal View History

/*
* Author: commy2
* Sets the structural damage of a vehicle without altering the hitPoints, requires local vehicle.
*
* Arguments:
* 0: Local Vehicle to Damage <OBJECT>
* 1: Total Damage <NUMBER>
*
* Return Value:
* None
*
* Example:
* [vehicle, 0.5] call ace_repair_fnc_setDamage
*
* Public: No
*/
#include "script_component.hpp"
2015-08-09 06:54:44 +00:00
params ["_vehicle", "_damage"];
TRACE_2("params",_vehicle,_damage);
// can't execute all commands if the vehicle isn't local. exit here.
if !(local _vehicle) exitWith {};
// save array with damage values of all hitpoints
2016-02-20 22:58:45 +00:00
(getAllHitPointsDamage _vehicle) params [["_allHitPoints", []], ["_allHitPointsSelections", []], ["_allHitPointDamages", []]];
// set damage of the vehicle
_vehicle setDamage _damage;
// restore original hitpoint damage values
{
2016-02-20 22:58:45 +00:00
_vehicle setHitIndex [_forEachIndex, _x];
} forEach _allHitPointDamages;
// normalize hitpoints
[_vehicle] call FUNC(normalizeHitPoints);