mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
24 lines
479 B
Plaintext
24 lines
479 B
Plaintext
/*
|
|
* Author: BaerMitUmlaut
|
|
* Function for opening doors and extending the hook for most vanilla helos.
|
|
*
|
|
* Arguments:
|
|
* 0: Helicopter <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Amount of time to wait before deploying ropes <NUMBER>
|
|
*
|
|
* Example:
|
|
* [_vehicle] call ace_compat_rhs_afrf3_fnc_onPrepare
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
params ["_vehicle"];
|
|
|
|
_vehicle setVariable [QEGVAR(fastroping,doorsLocked), true, true];
|
|
_vehicle animateDoor ["LeftDoor", 1];
|
|
|
|
2
|