mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
33 lines
757 B
Plaintext
33 lines
757 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Delays engine start of vehicle.
|
|
*
|
|
* Arguments:
|
|
* 0: Vehicle <OBJECT>
|
|
* 1: Is Engine on <BOOL>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [vehicle player, false] call ace_vehicle_fnc_startEngine
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_vehicle", "_isEngineOn"];
|
|
|
|
if (!_isEngineOn || {floor abs speed _vehicle > 0}) exitWith {};
|
|
|
|
[{
|
|
params ["_args", "_idPFH"];
|
|
_args params ["_vehicle", "_time", "_direction"];
|
|
|
|
if (ACE_time > _time) exitWith { [_idPFH] call CBA_fnc_removePerFrameHandler; };
|
|
|
|
_vehicle setVelocity [0, 0, 0];
|
|
_vehicle setVectorDirAndUp _direction;
|
|
|
|
} , 0, [_vehicle, ACE_time + STARTUP_DELAY, [vectorDir _vehicle, vectorUp _vehicle]]] call CBA_fnc_addPerFrameHandler;
|