mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
29 lines
605 B
Plaintext
29 lines
605 B
Plaintext
/*
|
|
* Author: PabstMirror
|
|
* Loads a captive into a vehicle
|
|
*
|
|
* Arguments:
|
|
* 0: The Captive <OBJECT>
|
|
* 1: The Vehicle <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Nothing
|
|
*
|
|
* Example:
|
|
* [bob, car1] call ACE_captives_fnc_vehicleCaptiveMoveIn;
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_cargoIndex"];
|
|
|
|
params ["_target","_vehicle"];
|
|
|
|
_cargoIndex = [_vehicle] call FUNC(findEmptyNonFFVCargoSeat);
|
|
if (_cargoIndex < 0) exitWith {ERROR("No Seat Avail");};
|
|
|
|
_target moveInCargo [_vehicle, _cargoIndex];
|
|
_target assignAsCargo _vehicle;
|
|
_target setVariable [QGVAR(CargoIndex), _cargoIndex, true];
|