ACE3/addons/cargo/functions/fnc_startLoadIn.sqf

30 lines
634 B
Plaintext
Raw Normal View History

2015-08-10 21:07:47 +00:00
/*
* Author: Glowbal
* Start load item
*
* Arguments:
* 0: Any object <OBJECT>
*
* Return value:
* None
*
* Public: No
*/
#include "script_component.hpp"
params ["_player", "_object"];
private ["_nearestVehicle"];
_nearestVehicle = [_player] call FUNC(findNearestVehicle);
2015-08-14 20:01:14 +00:00
if (isNull _nearestVehicle || _nearestVehicle isKindOf "Cargo_Base_F") then {
{
2015-08-14 20:07:49 +00:00
if ([_object, _x] call FUNC(canLoadItemIn)) exitwith {_nearestVehicle = _x};
2015-08-14 20:01:14 +00:00
}foreach (nearestObjects [_player, ["Cargo_base_F"], MAX_LOAD_DISTANCE]);
};
2015-08-10 21:07:47 +00:00
if (isNull _nearestVehicle) exitwith {false};
[_object, _nearestVehicle] call FUNC(loadItem);