Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
Loading...
Searching...
No Matches
helicopter.c
Go to the documentation of this file.
1
8
9class Helicopter extends Transport
10{
11};
12
15{
17 proto native bool IsEngineOn();
18
20 proto native void EngineStart();
21
23 proto native void EngineStop();
24
26 proto native bool IsAutohoverOn();
27
29 proto native void AutohoverOn();
30
32 proto native void AutohoverOff();
33};
Base script class for helicopters.
Native implementatin with auto hover funcionality.
Definition helicopter.c:15
proto native bool IsEngineOn()
Returns true when engine is running, false otherwise.
proto native bool IsAutohoverOn()
Returns true when auto-hover system is turned on, false otherwise.
proto native void EngineStop()
Stops the engine.
proto native void AutohoverOn()
Enables auto-hover system.
proto native void EngineStart()
Starts the engine.
proto native void AutohoverOff()
Disables auto-hover system.
Base native class for helicopter.
Definition helicopter.c:5
Native class for boats - handles physics simulation.
Definition boat.c:32
Base native class of all vehicles in game.
Definition transport.c:5