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>
31 lines
618 B
Plaintext
31 lines
618 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Glowbal
|
|
* Unload a person from a vehicle
|
|
*
|
|
* Arguments:
|
|
* 0: unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Returns true if succesfully unloaded person <BOOL>
|
|
*
|
|
* Example:
|
|
* [hurtGuy] call ace_common_fnc_unloadPerson
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_unit"];
|
|
TRACE_1("unloadPerson",_unit);
|
|
|
|
private _vehicle = vehicle _unit;
|
|
|
|
if (isNull _vehicle) exitWith {false};
|
|
if (_vehicle == _unit) exitWith {false};
|
|
|
|
if (speed _vehicle > 1 || {((getPos _vehicle) select 2) > 2}) exitWith {false};
|
|
|
|
["ace_unloadPersonEvent", [_unit, _vehicle], [_unit]] call CBA_fnc_targetEvent;
|
|
|
|
true
|