2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2016-09-24 20:15:02 +00:00
|
|
|
/*
|
2018-05-31 23:11:16 +00:00
|
|
|
* Author: PabstMirror, mharis001
|
|
|
|
* Modifies the base interaction point for repair items to show its current damage.
|
2016-09-24 20:15:02 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Target <OBJECT>
|
2018-05-31 23:11:16 +00:00
|
|
|
* 1: Player (not used) <OBJECT>
|
|
|
|
* 2: Args (not used) <Any>
|
2016-09-24 20:15:02 +00:00
|
|
|
* 3: Action Data <ARRAY>
|
|
|
|
*
|
|
|
|
* Return Value:
|
2017-06-08 13:31:51 +00:00
|
|
|
* None
|
2016-09-24 20:15:02 +00:00
|
|
|
*
|
|
|
|
* Example:
|
2018-05-31 23:11:16 +00:00
|
|
|
* [cursorObject, ACE_player, [], []] call ace_repair_fnc_modifyInteraction
|
2016-09-24 20:15:02 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2018-04-19 17:31:00 +00:00
|
|
|
params ["_target", "", "", "_actionData"];
|
2016-09-24 20:15:02 +00:00
|
|
|
|
2018-05-31 23:11:16 +00:00
|
|
|
// Convert damage to number (round up to show even slight damage)
|
|
|
|
private _color = ceil linearConversion [0, 1, damage _target, 0, 8, true];
|
|
|
|
TRACE_2("Modifying icon color",_target,_color);
|
|
|
|
(_actionData select 2) set [1, DAMAGE_COLOR_SCALE select _color];
|
2021-10-30 21:42:03 +00:00
|
|
|
|