ACE3/addons/parachute/functions/fnc_cutParachute.sqf

20 lines
385 B
Plaintext
Raw Normal View History

2015-05-19 11:45:28 +00:00
/*
* Author: joko, Jonas, SilentSpike
* Perform the cut parachute action (move unit out and delete)
*
* Arguments:
* 0: Object <OBJECT>
*
* Return Value:
* None
*
* Example:
* [player, vehicle player] call FUNC(cutParachute);
*
* Public: No
*/
2015-05-21 06:06:59 +00:00
#include "script_component.hpp"
params ["_unit", "_parachute"];
_unit action ["GetOut", _parachute];
deleteVehicle _parachute;