ACE3/addons/vehicle_damage/functions/fnc_handleDamageEjectIfDestroyed.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

34 lines
648 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Dystopian
* Ejects crew from destroyed vehicle.
* Should be called from HandleDamage EH.
*
* Arguments:
* HandleDamage EH <ARRAY>
*
* Return Value:
* None
*
* Example:
* _this call ace_cookoff_fnc_handleDamageEjectIfDestroyed
*
* Public: No
*/
params ["_vehicle", "", "", "", "_ammo"];
if (alive _vehicle) exitWith {};
TRACE_2("ejectIfDestroyed HDEH",typeOf _vehicle,_this);
if (!IS_EXPLOSIVE_AMMO(_ammo)) then {
{
if (alive _x) then {
moveOut _x;
};
} forEach crew _vehicle;
};
_vehicle removeEventHandler ["HandleDamage", _thisEventHandler];