ACE3/addons/parachute/functions/fnc_cutParachute.sqf
Kyle Mckay e47e18001f
Docs - Update my display name everywhere (#9330)
* Update display name in team

* Update display name everywhere

* order

https://youtu.be/VYycQTm2HrM

---------

Co-authored-by: BrettMayson <brett@mayson.io>
2023-08-17 12:02:17 +02:00

24 lines
542 B
Plaintext

#include "script_component.hpp"
/*
* Author: joko, Jonas, kymckay
* Perform the cut parachute action (move unit out and delete)
*
* Arguments:
* 0: Player <OBJECT>
* 1: Parachute <OBJECT>
*
* Return Value:
* None
*
* Example:
* [player, vehicle player] call ace_parachute_fnc_cutParachute;
*
* Public: No
*/
params ["_unit", "_parachute"];
TRACE_2("cutParachute", _unit, _parachute);
playSound3d ["A3\Sounds_F\characters\parachute\parachute_landing.wss", _unit];
_unit action ["GetOut", _parachute];
deleteVehicle _parachute;