mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
/*
|
|
* Author: commy2
|
|
* Called by repair action / progress bar. Raise events to set the new hitpoint damage.
|
|
*
|
|
* Arguments:
|
|
* 0: Stuff from progress bar. <ARRAY>
|
|
*
|
|
* Return Value:
|
|
* NONE
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit", "_vehicle", "_hitPoint"];
|
|
TRACE_3("params",_unit,_vehicle,_hitPoint);
|
|
|
|
// get current hitpoint damage
|
|
private "_hitPointDamage";
|
|
_hitPointDamage = _vehicle getHitPointDamage _hitPoint;
|
|
|
|
_hitPointDamage = _hitPointDamage - 0.5;
|
|
// don't use negative values for damage
|
|
_hitPointDamage = _hitPointDamage max ([_unit] call FUNC(getPostRepairDamage));
|
|
|
|
// raise event to set the new hitpoint damage
|
|
["setVehicleHitPointDamage", _vehicle, [_vehicle, _hitPoint, _hitPointDamage]] call EFUNC(common,targetEvent);
|
|
|
|
// display text message if enabled
|
|
if (GVAR(DisplayTextOnRepair)) then {
|
|
private "_text";
|
|
_text = format ["STR_ACE_Repair_%1", _hitPoint];
|
|
|
|
if (isLocalized _text) then {
|
|
_text = format [localize ([LSTRING(RepairedHitPointFully), LSTRING(RepairedHitPointPartially)] select (_hitPointDamage > 0)), localize _text];
|
|
} else {
|
|
_text = localize ([LSTRING(RepairedFully), LSTRING(RepairedPartially)] select (_hitPointDamage > 0));
|
|
};
|
|
|
|
[_text] call EFUNC(common,displayTextStructured);
|
|
};
|