mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
30 lines
652 B
Plaintext
30 lines
652 B
Plaintext
/*
|
|
* Author: esteldunedain
|
|
* Mount unit actions inside passenger submenu
|
|
*
|
|
* Argument:
|
|
* 0: Vehicle <OBJECT>
|
|
* 1: Player <OBJECT>
|
|
* 3: Parameters <ARRAY>
|
|
*
|
|
* Return value:
|
|
* Children actions <ARRAY>
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
EXPLODE_3_PVT(_this,_vehicle,_player,_parameters);
|
|
|
|
private ["_unit","_actions"];
|
|
_unit = _parameters select 0;
|
|
|
|
_varName = format [QEGVAR(interact_menu,Act_%1), typeOf _unit];
|
|
_actionTrees = missionNamespace getVariable [_varName, []];
|
|
|
|
_actions = [];
|
|
// Mount unit MainActions menu
|
|
_actions pushBack [(_actionTrees select 0) select 0, (_actionTrees select 0) select 1, _unit];
|
|
|
|
_actions
|