Dayz Explorer  1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
wreck_mi8.c
Go to the documentation of this file.
1 //New russian helicopter crash site
2 class Wreck_Mi8_Crashed extends CrashBase
3 {
4  void Wreck_Mi8_Crashed()
5  {
6  if ( !GetGame().IsDedicatedServer() )
7  {
8  m_ParticleEfx = ParticleManager.GetInstance().PlayOnObject(ParticleList.SMOKING_HELI_WRECK, this, Vector(2, 0, -5));
9  }
10  }
11 }
12 
13 //Old Russian helicopter crash site
14 class Wreck_Mi8 extends CrashBase
15 {
16 
17 }
GetGame
proto native CGame GetGame()
CrashBase
Definition: wreck_mi8.c:2
ParticleList
Definition: particlelist.c:11
ParticleManager
void ParticleManager(ParticleManagerSettings settings)
Constructor (ctor)
Definition: particlemanager.c:84
Vector
proto native vector Vector(float x, float y, float z)
Vector constructor from components.