mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
31 lines
620 B
Plaintext
31 lines
620 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: PabstMirror
|
|
* Modifies the fortify action, shows current budget.
|
|
*
|
|
* Arguments:
|
|
* 0: Target <OBJECT>
|
|
* 1: Player <OBJECT>
|
|
* 2: Args <ANY>
|
|
* 3: Action Data <ARRAY>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [player, player, [], []] call ace_fortify_fnc_modifyAction
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["", "_player", "", "_actionData"];
|
|
|
|
private _budget = [side group _player] call FUNC(getBudget);
|
|
private _actionText = if (_budget > 0) then {
|
|
format ["%1 [$%2]", LLSTRING(fortify), _budget];
|
|
} else {
|
|
LLSTRING(fortify);
|
|
};
|
|
|
|
_actionData set [1, _actionText];
|