mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
44 lines
963 B
Plaintext
44 lines
963 B
Plaintext
/*
|
|
* Author: Garth 'L-H' de Wet
|
|
* Opens the UI for selecting the transmitter
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Nothing
|
|
*
|
|
* Example:
|
|
* [player] call ACE_Explosives_fnc_addTransmitterActions;
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit"];
|
|
TRACE_1("params",_unit);
|
|
|
|
private ["_children", "_config", "_detonators"];
|
|
|
|
_detonators = [_unit] call FUNC(getDetonators);
|
|
_children = [];
|
|
{
|
|
_config = ConfigFile >> "CfgWeapons" >> _x;
|
|
_children pushBack
|
|
[
|
|
[
|
|
format ["Trigger_%1", _forEachIndex],
|
|
getText(_config >> "displayName"),
|
|
getText(_config >> "picture"),
|
|
{},
|
|
{true},
|
|
{(_this select 2) call FUNC(addDetonateActions);},
|
|
[ACE_player,_x]
|
|
] call EFUNC(interact_menu,createAction),
|
|
[],
|
|
ACE_Player
|
|
];
|
|
} forEach _detonators;
|
|
|
|
_children
|