mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
45a66ccfa1
* Add load in child actions to medical & captive * Add actions with proper structure * Move vehicles actions code to common function * Simplify code in config, Fix docs * Remove unused vars * Fix header example * Add _distance param to fnc_nearestVehiclesFreeSeat * Change docs * Fix spacing
32 lines
866 B
Plaintext
32 lines
866 B
Plaintext
/*
|
|
* Author: Dystopian
|
|
* Create actions for nearest vehicles with cargo.
|
|
*
|
|
* Arguments:
|
|
* 0: Target <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Child actions <ARRAY>
|
|
*
|
|
* Example:
|
|
* [cursorObject] call ace_cargo_fnc_addCargoVehiclesActions
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_target"];
|
|
|
|
private _statement = {
|
|
params ["_target", "_player", "_vehicle"];
|
|
[_player, _target, _vehicle] call FUNC(startLoadIn);
|
|
};
|
|
|
|
private _vehicles = (nearestObjects [_target, GVAR(cargoHolderTypes), MAX_LOAD_DISTANCE]) select {
|
|
private _hasCargoConfig = 1 == getNumber (configFile >> "CfgVehicles" >> typeOf _x >> QGVAR(hasCargo));
|
|
private _hasCargoPublic = _x getVariable [QGVAR(hasCargo), false];
|
|
(_hasCargoConfig || {_hasCargoPublic}) && {_x != _target}
|
|
};
|
|
|
|
[_vehicles, _statement, _target] call EFUNC(interact_menu,createVehiclesActions)
|