Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
helicopterscript.c
Go to the documentation of this file.
1
4class HelicopterScript extends HelicopterAuto
5{
6 void HelicopterScript()
7 {
8 SetEventMask(EntityEvent.POSTSIMULATE);
9 }
10
11 override void EOnPostSimulate(IEntity other, float timeSlice)
12 {
13 }
14
21 bool OnBeforeEngineStart()
22 {
23 return true;
24 }
25
27 void OnEngineStart()
28 {
29 }
30
32 void OnEngineStop()
33 {
34 }
35};
override void OnEngineStop()
override void OnEngineStart()
EntityEvent
Entity events for event-mask, or throwing event from code.
Definition enentity.c:45
override void EOnPostSimulate(IEntity other, float timeSlice)