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>
33 lines
940 B
Plaintext
33 lines
940 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Dystopian
|
|
* Creates child actions for vehicle list.
|
|
* Statement gets vehicle as action parameter.
|
|
*
|
|
* Arguments:
|
|
* 0: Vehicle list <ARRAY>
|
|
* 1: Statement <CODE>
|
|
* 2: Target <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Array of actions <ARRAY>
|
|
*
|
|
* Example:
|
|
* [nearestObjects [player, ["AllVehicles"], 10], {}, cursorObject] call ace_interact_menu_fnc_createVehiclesActions
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_vehicles", "_statement", "_target"];
|
|
|
|
_vehicles apply {
|
|
private _name = getText ((configOf _x) >> "displayName");
|
|
private _ownerName = [_x, true] call EFUNC(common,getName);
|
|
if ("" != _ownerName) then {
|
|
_name = format ["%1 (%2)", _name, _ownerName];
|
|
};
|
|
private _icon = [_x] call EFUNC(common,getVehicleIcon);
|
|
private _action = [format ["%1", _x], _name, _icon, _statement, {true}, {}, _x] call EFUNC(interact_menu,createAction);
|
|
[_action, [], _target]
|
|
}
|