mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
359 B
Plaintext
22 lines
359 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Dystopian
|
|
* Makes unit pull target body out of vehicle.
|
|
*
|
|
* Arguments:
|
|
* 0: Body <OBJECT>
|
|
* 1: Unit (not used) <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [crew cursorObject select 0, player] call ace_interaction_fnc_pullOutBody
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_body", "_unit"];
|
|
|
|
moveOut _body;
|