DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено
Helicopter.c
См. документацию.
1
4class Helicopter extends Transport
5{
6};
7
10{
12 proto native bool IsEngineOn();
13
15 proto native void EngineStart();
16
18 proto native void EngineStop();
19
21 proto native bool IsAutohoverOn();
22
24 proto native void AutohoverOn();
25
27 proto native void AutohoverOff();
28};
proto native void AutohoverOn()
Enables auto-hover system.
proto native void EngineStart()
Starts the engine.
proto native void EngineStop()
Stops the engine.
proto native bool IsAutohoverOn()
Returns true when auto-hover system is turned on, false otherwise.
proto native void AutohoverOff()
Disables auto-hover system.
proto native bool IsEngineOn()
Returns true when engine is running, false otherwise.
Определения HelicopterScript.c:5
Native implementatin with auto hover funcionality.
Определения Helicopter.c:10
Base native class for all motorized wheeled vehicles.
Определения Boat.c:28