aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/mod
diff options
context:
space:
mode:
authorJack <66967891+ASpoonPlaysGames@users.noreply.github.com>2022-07-27 03:33:18 +0100
committerGitHub <noreply@github.com>2022-07-27 04:33:18 +0200
commite507514d342bde6a9eb0eec51ef3a3d739219858 (patch)
treecec8ac715d232c016d801630a867295b1c6e83de /Northstar.CustomServers/mod
parentd420367d429e6a4f21d4b7661ac4a19ac1c3420b (diff)
downloadNorthstarMods-e507514d342bde6a9eb0eec51ef3a3d739219858.tar.gz
NorthstarMods-e507514d342bde6a9eb0eec51ef3a3d739219858.zip
[FD] Warning events, smoke changes, and improved kodai events (#456)
* Add check to ensure spectre's weapon belongs to the spectre * Create CreateWarningEvent function * kodai event improvements (smoke + warnings) * what the hell * improve smokes a bit
Diffstat (limited to 'Northstar.CustomServers/mod')
-rw-r--r--Northstar.CustomServers/mod/scripts/vscripts/ai/_ai_mortar_spectres.gnut3
-rw-r--r--Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd_events.nut35
-rw-r--r--Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_forwardbase_kodai_fd.nut1154
3 files changed, 640 insertions, 552 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/ai/_ai_mortar_spectres.gnut b/Northstar.CustomServers/mod/scripts/vscripts/ai/_ai_mortar_spectres.gnut
index a136c2c9..c63d9dd2 100644
--- a/Northstar.CustomServers/mod/scripts/vscripts/ai/_ai_mortar_spectres.gnut
+++ b/Northstar.CustomServers/mod/scripts/vscripts/ai/_ai_mortar_spectres.gnut
@@ -147,6 +147,9 @@ void function MortarSpectreAttacksHarvester( entity spectre, entity harvester, e
wait RandomFloatRange( 0, 4 ) // this is a complete guess, idk how long it takes for them to shoot normally
while ( true )
{
+ // if the spectre drops the weapon, or if something somehow steals it, we should stop firing missiles from it
+ if ( weapon.GetWeaponOwner() != spectre )
+ break
entity missile = weapon.FireWeaponMissile( spectre.GetOrigin(), < 0, 0, 90 >, 1800.0, damageTypes.projectileImpact, damageTypes.explosive, false, PROJECTILE_NOT_PREDICTED )
weapon.SetWeaponPrimaryAmmoCount( weapon.GetWeaponPrimaryAmmoCount() - 1 ) // remove the ammo manually
MortarMissileFiredCallback( missile, spectre )
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd_events.nut b/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd_events.nut
index f72a08da..17f761c1 100644
--- a/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd_events.nut
+++ b/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd_events.nut
@@ -23,6 +23,7 @@ global function CreateRoninTitanEvent
global function CreateToneTitanEvent
global function CreateLegionTitanEvent
global function CreateMonarchTitanEvent
+global function CreateWarningEvent
global function executeWave
global function restetWaveEvents
@@ -69,7 +70,14 @@ global struct WaveEvent{
}
-
+global enum FD_IncomingWarnings
+{
+ CloakDrone,
+ ArcTitan,
+ Reaper,
+ MortarTitan,
+ NukeTitan
+}
global table< string, entity > GlobalEventEntitys
global array< array<WaveEvent> > waveEvents
@@ -561,6 +569,20 @@ WaveEvent function CreateSpawnDroneEvent(vector origin,vector angles,string rout
return event
}
+
+
+WaveEvent function CreateWarningEvent( int warningType, int nextEventIndex, int executeOnThisCall = 1 )
+{
+ WaveEvent event
+ event.eventFunction = PlayWarning
+ event.executeOnThisCall = executeOnThisCall
+ event.nextEventIndex = nextEventIndex
+ event.shouldThread = false
+
+ event.soundEvent.soundEventName = "fd_inc" + ["CloakDrone", "ArcTitan", "Reaper", "TitansMortar", "TitansNuke"][warningType] + "Clump"
+ return event
+}
+
/************************************************************************************************************\
####### # # ####### # # ####### ####### # # # # ##### ####### ### ####### # # #####
# # # # ## # # # # # ## # # # # # # # ## # # #
@@ -571,18 +593,23 @@ WaveEvent function CreateSpawnDroneEvent(vector origin,vector angles,string rout
####### # ####### # # # # ##### # # ##### # ### ####### # # #####
\************************************************************************************************************/
-void function spawnSmoke( SmokeEvent smokeEvent, SpawnEvent spawnEvent, FlowControlEvent flowControlEvent, SoundEvent soundEvent )
+void function PlayWarning( SmokeEvent smokeEvent, SpawnEvent spawnEvent, FlowControlEvent flowControlEvent, SoundEvent soundEvent )
+{
+ PlayFactionDialogueToTeam( soundEvent.soundEventName, TEAM_MILITIA )
+}
+
+void function spawnSmoke(SmokeEvent smokeEvent,SpawnEvent spawnEvent,FlowControlEvent flowControlEvent,SoundEvent soundEvent)
{
printt( "smoke" )
SmokescreenStruct smokescreen
smokescreen.smokescreenFX = $"P_smokescreen_FD"
smokescreen.isElectric = false
- smokescreen.origin = smokeEvent.position + < 0, 0, 150 >
+ smokescreen.origin = smokeEvent.position + < 0, 0, 100 >
smokescreen.angles = < 0, 0, 0 >
smokescreen.lifetime = smokeEvent.lifetime
smokescreen.fxXYRadius = 150
smokescreen.fxZRadius = 120
- smokescreen.fxOffsets = [ < 120.0, 0.0, 0.0 >, < 0.0, 120.0, 0.0 >, < 0.0, 0.0, 0.0 >, < 0.0, -120.0, 0.0 >, < -120.0, 0.0, 0.0 >, < 0.0, 100.0, 0.0 > ]
+ smokescreen.fxOffsets = [ < 130.0, 0.0, 0.0 >, < 0.0, 130.0, 0.0 >, < 0.0, 0.0, 0.0 >, < 0.0, -130.0, 0.0 >, < -130.0, 0.0, 0.0 >, < 0.0, 100.0, 0.0 > ]
Smokescreen(smokescreen)
}
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_forwardbase_kodai_fd.nut b/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_forwardbase_kodai_fd.nut
index 186b85fc..2e3b031d 100644
--- a/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_forwardbase_kodai_fd.nut
+++ b/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_forwardbase_kodai_fd.nut
@@ -5,567 +5,625 @@ void function initFrontierDefenseData()
{
shopPosition = < -3862.13, 1267.69, 1060.06 >
+ int index = 1
+
array<WaveEvent> wave1
- wave1.append(CreateDroppodGruntEvent(< 864.625000 , 693.750000 , 1379.910034 >,"hillRouteClose",1))
- wave1.append(CreateWaitForTimeEvent(0.9332962,2))
- wave1.append(CreateDroppodGruntEvent(< 884.625000 , 1721.750000 , 1377.410034 >,"hillRouteClose",3))
- wave1.append(CreateWaitForTimeEvent(1.1667023,4))
- wave1.append(CreateDroppodGruntEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"hillRouteClose",5))
- wave1.append(CreateWaitForTimeEvent(1.0499954,6))
- wave1.append(CreateDroppodGruntEvent(< 1258.060059 , 921.593994 , 1330.750000 >,"hillRouteClose",7))
- wave1.append(CreateWaitForTimeEvent(1.0,8))
- wave1.append(CreateDroppodGruntEvent(< 1116.630005 , 329.750000 , 1372.280029 >,"hillRouteClose",9))
- wave1.append(CreateWaitForTimeEvent(5.0,10))
- wave1.append(CreateWaitUntilAliveWeightedEvent(8,11))
- wave1.append(CreateDroppodGruntEvent(< 864.625000 , 693.750000 , 1379.910034 >,"hillRouteClose",12))
- wave1.append(CreateWaitForTimeEvent(1.1669998,13))
- wave1.append(CreateDroppodGruntEvent(< 884.625000 , 1721.750000 , 1377.410034 >,"hillRouteClose",14))
- wave1.append(CreateWaitForTimeEvent(0.6159973,15))
- wave1.append(CreateDroppodGruntEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"hillRouteClose",16))
- wave1.append(CreateWaitForTimeEvent(0.8840027,17))
- wave1.append(CreateDroppodStalkerEvent(< 1258.060059 , 921.593994 , 1330.750000 >,"hillRouteClose",18))
- wave1.append(CreateWaitForTimeEvent(0.5999985,19))
- wave1.append(CreateDroppodStalkerEvent(< 1116.630005 , 329.750000 , 1372.280029 >,"hillRouteClose",20))
- wave1.append(CreateWaitForTimeEvent(5.0,21))
- wave1.append(CreateWaitUntilAliveWeightedEvent(8,22))
- wave1.append(CreateDroppodGruntEvent(< 864.625000 , 693.750000 , 1379.910034 >,"hillRouteClose",23))
- wave1.append(CreateWaitForTimeEvent(1.3829956,24))
- wave1.append(CreateDroppodGruntEvent(< 884.625000 , 1721.750000 , 1377.410034 >,"hillRouteClose",25))
- wave1.append(CreateWaitForTimeEvent(0.6340027,26))
- wave1.append(CreateDroppodGruntEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"hillRouteClose",27))
- wave1.append(CreateWaitForTimeEvent(1.3829956,28))
- wave1.append(CreateDroppodGruntEvent(< 1258.060059 , 921.593994 , 1330.750000 >,"hillRouteClose",29))
- wave1.append(CreateWaitForTimeEvent(1.5,30))
- wave1.append(CreateDroppodGruntEvent(< 1116.630005 , 329.750000 , 1372.280029 >,"hillRouteClose",31))
- wave1.append(CreateWaitForTimeEvent(5.0,32))
- wave1.append(CreateWaitUntilAliveWeightedEvent(8,33))
- wave1.append(CreateDroppodGruntEvent(< 864.625000 , 693.750000 , 1379.910034 >,"hillRouteClose",34))
- wave1.append(CreateWaitForTimeEvent(1.5,35))
- wave1.append(CreateDroppodGruntEvent(< 884.625000 , 1721.750000 , 1377.410034 >,"hillRouteClose",36))
- wave1.append(CreateWaitForTimeEvent(0.9840088,37))
- wave1.append(CreateDroppodGruntEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"hillRouteClose",38))
- wave1.append(CreateWaitForTimeEvent(1.5,39))
- wave1.append(CreateDroppodStalkerEvent(< 1258.060059 , 921.593994 , 1330.750000 >,"hillRouteClose",40))
- wave1.append(CreateWaitForTimeEvent(1.2829895,41))
- wave1.append(CreateDroppodStalkerEvent(< 1116.630005 , 329.750000 , 1372.280029 >,"hillRouteClose",42))
- wave1.append(CreateWaitForTimeEvent(5.0,43))
- wave1.append(CreateWaitUntilAliveWeightedEvent(8,44))
- wave1.append(CreateDroppodGruntEvent(< 864.625000 , 693.750000 , 1379.910034 >,"hillRouteClose",45))
- wave1.append(CreateWaitForTimeEvent(1.5,46))
- wave1.append(CreateDroppodGruntEvent(< 884.625000 , 1721.750000 , 1377.410034 >,"hillRouteClose",47))
- wave1.append(CreateWaitForTimeEvent(1.1829987,48))
- wave1.append(CreateDroppodGruntEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"hillRouteClose",49))
- wave1.append(CreateWaitForTimeEvent(1.449997,50))
- wave1.append(CreateDroppodGruntEvent(< 1258.060059 , 921.593994 , 1330.750000 >,"hillRouteClose",51))
- wave1.append(CreateWaitForTimeEvent(0.66700745,52))
- wave1.append(CreateDroppodGruntEvent(< 1116.630005 , 329.750000 , 1372.280029 >,"hillRouteClose",53))
- wave1.append(CreateWaitForTimeEvent(5.0,54))
- wave1.append(CreateWaitUntilAliveWeightedEvent(8,55))
- wave1.append(CreateDroppodGruntEvent(< 864.625000 , 693.750000 , 1379.910034 >,"hillRouteClose",56))
- wave1.append(CreateWaitForTimeEvent(1.2169952,57))
- wave1.append(CreateDroppodGruntEvent(< 884.625000 , 1721.750000 , 1377.410034 >,"hillRouteClose",58))
- wave1.append(CreateWaitForTimeEvent(0.6159973,59))
- wave1.append(CreateDroppodGruntEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"hillRouteClose",60))
- wave1.append(CreateWaitForTimeEvent(1.4840088,61))
+ wave1.append(CreateSmokeEvent(< -12, 1720, 1540 >, 90, index++))
+ wave1.append(CreateWaitForTimeEvent(0.2,index++))
+ wave1.append(CreateSmokeEvent(< -64, 964, 1540 >, 90, index++))
+ wave1.append(CreateWaitForTimeEvent(0.4,index++))
+ wave1.append(CreateDroppodGruntEvent(< 864.625000 , 693.750000 , 1379.910034 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(0.9332962,index++))
+ wave1.append(CreateDroppodGruntEvent(< 884.625000 , 1721.750000 , 1377.410034 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(1.1667023,index++))
+ wave1.append(CreateDroppodGruntEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(1.0499954,index++))
+ wave1.append(CreateDroppodGruntEvent(< 1258.060059 , 921.593994 , 1330.750000 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(1.0,index++))
+ wave1.append(CreateDroppodGruntEvent(< 1116.630005 , 329.750000 , 1372.280029 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(5.0,index++))
+ wave1.append(CreateWaitUntilAliveWeightedEvent(8,index++))
+ wave1.append(CreateDroppodGruntEvent(< 864.625000 , 693.750000 , 1379.910034 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(1.1669998,index++))
+ wave1.append(CreateDroppodGruntEvent(< 884.625000 , 1721.750000 , 1377.410034 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(0.6159973,index++))
+ wave1.append(CreateDroppodGruntEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(0.8840027,index++))
+ wave1.append(CreateDroppodStalkerEvent(< 1258.060059 , 921.593994 , 1330.750000 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(0.5999985,index++))
+ wave1.append(CreateDroppodStalkerEvent(< 1116.630005 , 329.750000 , 1372.280029 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(5.0,index++))
+ wave1.append(CreateWaitUntilAliveWeightedEvent(8,index++))
+ wave1.append(CreateDroppodGruntEvent(< 864.625000 , 693.750000 , 1379.910034 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(1.3829956,index++))
+ wave1.append(CreateDroppodGruntEvent(< 884.625000 , 1721.750000 , 1377.410034 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(0.6340027,index++))
+ wave1.append(CreateDroppodGruntEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(1.3829956,index++))
+ wave1.append(CreateDroppodGruntEvent(< 1258.060059 , 921.593994 , 1330.750000 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(1.5,index++))
+ wave1.append(CreateDroppodGruntEvent(< 1116.630005 , 329.750000 , 1372.280029 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(5.0,index++))
+ wave1.append(CreateWaitUntilAliveWeightedEvent(8,index++))
+ wave1.append(CreateDroppodGruntEvent(< 864.625000 , 693.750000 , 1379.910034 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(1.5,index++))
+ wave1.append(CreateDroppodGruntEvent(< 884.625000 , 1721.750000 , 1377.410034 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(0.9840088,index++))
+ wave1.append(CreateDroppodGruntEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(1.5,index++))
+ wave1.append(CreateDroppodStalkerEvent(< 1258.060059 , 921.593994 , 1330.750000 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(1.2829895,index++))
+ wave1.append(CreateDroppodStalkerEvent(< 1116.630005 , 329.750000 , 1372.280029 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(5.0,index++))
+ wave1.append(CreateWaitUntilAliveWeightedEvent(8,index++))
+ wave1.append(CreateDroppodGruntEvent(< 864.625000 , 693.750000 , 1379.910034 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(1.5,index++))
+ wave1.append(CreateDroppodGruntEvent(< 884.625000 , 1721.750000 , 1377.410034 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(1.1829987,index++))
+ wave1.append(CreateDroppodGruntEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(1.449997,index++))
+ wave1.append(CreateDroppodGruntEvent(< 1258.060059 , 921.593994 , 1330.750000 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(0.66700745,index++))
+ wave1.append(CreateDroppodGruntEvent(< 1116.630005 , 329.750000 , 1372.280029 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(5.0,index++))
+ wave1.append(CreateWaitUntilAliveWeightedEvent(8,index++))
+ wave1.append(CreateDroppodGruntEvent(< 864.625000 , 693.750000 , 1379.910034 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(1.2169952,index++))
+ wave1.append(CreateDroppodGruntEvent(< 884.625000 , 1721.750000 , 1377.410034 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(0.6159973,index++))
+ wave1.append(CreateDroppodGruntEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"hillRouteClose",index++))
+ wave1.append(CreateWaitForTimeEvent(1.4840088,index++))
wave1.append(CreateToneSniperTitanEvent(< 1373.469971 , 1219.410034 , 1314.339966 >,< 0.000000 , 169.541000 , 0.000000 >,0))
waveEvents.append(wave1)
+ index = 1
array<WaveEvent> wave2
- wave2.append(CreateDroppodTickEvent(< 864.625000 , 693.750000 , 1379.910034 >,4,"hillRouteClose",1))
- wave2.append(CreateWaitForTimeEvent(1.0169983,2))
- wave2.append(CreateDroppodTickEvent(< 884.625000 , 1721.750000 , 1377.410034 >,4,"hillRouteClose",3))
- wave2.append(CreateWaitForTimeEvent(1.6500244,4))
- wave2.append(CreateDroppodTickEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,4,"hillRouteClose",5))
- wave2.append(CreateWaitForTimeEvent(1.0329895,6))
- wave2.append(CreateDroppodTickEvent(< 1258.060059 , 921.593994 , 1330.750000 >,4,"hillRouteClose",7))
- wave2.append(CreateWaitForTimeEvent(5.0,8))
- wave2.append(CreateWaitUntilAliveWeightedEvent(12,9))
- wave2.append(CreateToneSniperTitanEvent(< 1373.469971 , 1219.410034 , 1314.339966 >,< 0.000000 , 169.541000 , 0.000000 >,10))
- wave2.append(CreateWaitForTimeEvent(1.0159912,11))
- wave2.append(CreateToneSniperTitanEvent(< 1209.469971 , 579.406006 , 1332.310059 >,< 0.000000 , 169.541000 , 0.000000 >,12))
- wave2.append(CreateWaitForTimeEvent(0.8999939,13))
- wave2.append(CreateToneTitanEvent(< 2475.810059 , -3544.189941 , 810.218994 >,< 0.000000 , 90.000000 , 0.000000 >,"",14))
- wave2.append(CreateWaitForTimeEvent(1.3000183,15))
- wave2.append(CreateToneTitanEvent(< 2665.060059 , 4456.129883 , 960.687988 >,< 0.000000 , -141.108002 , 0.000000 >,"",16))
- wave2.append(CreateWaitForTimeEvent(1.1499939,17))
- wave2.append(CreateDroppodSpectreMortarEvent(< 864.625000 , 693.750000 , 1379.910034 >,"",18))
- wave2.append(CreateWaitForTimeEvent(5.0,19))
- wave2.append(CreateWaitUntilAliveWeightedEvent(16,20))
- wave2.append(CreateDroppodSpectreMortarEvent(< 884.625000 , 1721.750000 , 1377.410034 >,"",21))
- wave2.append(CreateWaitForTimeEvent(0.6000061,22))
- wave2.append(CreateDroppodGruntEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"",23))
- wave2.append(CreateWaitForTimeEvent(1.6999817,24))
- wave2.append(CreateDroppodGruntEvent(< 864.625000 , 693.750000 , 1379.910034 >,"",25))
- wave2.append(CreateWaitForTimeEvent(2.9160156,26))
- wave2.append(CreateDroppodGruntEvent(< 1258.060059 , 921.593994 , 1330.750000 >,"",27))
- wave2.append(CreateWaitForTimeEvent(5.0,28))
- wave2.append(CreateWaitUntilAliveWeightedEvent(16,29))
- wave2.append(CreateDroppodGruntEvent(< 864.625000 , 693.750000 , 1379.910034 >,"",30))
- wave2.append(CreateWaitForTimeEvent(0.8659973,31))
- wave2.append(CreateDroppodGruntEvent(< 884.625000 , 1721.750000 , 1377.410034 >,"",32))
- wave2.append(CreateWaitForTimeEvent(0.6839905,33))
- wave2.append(CreateDroppodGruntEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"",34))
- wave2.append(CreateWaitForTimeEvent(1.4160156,35))
- wave2.append(CreateToneTitanEvent(< 2475.810059 , -3544.189941 , 810.218994 >,< 0.000000 , 90.000000 , 0.000000 >,"",36))
- wave2.append(CreateWaitForTimeEvent(0.6000061,37))
- wave2.append(CreateToneTitanEvent(< 2665.060059 , 4456.129883 , 960.687988 >,< 0.000000 , -141.108002 , 0.000000 >,"",38))
- wave2.append(CreateWaitForTimeEvent(5.0,39))
- wave2.append(CreateWaitUntilAliveWeightedEvent(16,40))
- wave2.append(CreateSuperSpectreEvent(< 1856.959961 , -3177.639893 , 812.718018 >,< -0.000000 , -162.389999 , 0.000000 >,"",41))
- wave2.append(CreateWaitForTimeEvent(1.03302,42))
- wave2.append(CreateSuperSpectreEvent(< 3123.000000 , 4201.589844 , 950.937988 >,< 0.000000 , -117.246002 , 0.000000 >,"",43))
- wave2.append(CreateWaitForTimeEvent(3.6169739,44))
- wave2.append(CreateSuperSpectreEvent(< 681.140991 , -3538.780029 , 813.127014 >,< 0.000000 , -169.145996 , 0.000000 >,"",45))
- wave2.append(CreateWaitForTimeEvent(0.78302,46))
- wave2.append(CreateSuperSpectreEvent(< 2614.629883 , 4771.560059 , 947.968994 >,< 0.000000 , -141.108002 , 0.000000 >,"",47))
- wave2.append(CreateWaitForTimeEvent(3.1829834,48))
- wave2.append(CreateSuperSpectreEvent(< 2184.969971 , -3550.040039 , 819.479980 >,< 0.000000 , 177.582993 , 0.000000 >,"",49))
- wave2.append(CreateWaitForTimeEvent(5.0,50))
- wave2.append(CreateWaitUntilAliveWeightedEvent(16,51))
- wave2.append(CreateSuperSpectreEvent(< 1764.410034 , 4424.220215 , 953.375000 >,< -0.000000 , -170.024002 , 0.000000 >,"",52))
- wave2.append(CreateWaitForTimeEvent(5.0,53))
- wave2.append(CreateWaitUntilAliveWeightedEvent(16,54))
- wave2.append(CreateDroppodTickEvent(< 3248.840088 , 161.156006 , 951.781006 >,4,"hillRouteClose",55))
- wave2.append(CreateWaitForTimeEvent(1.1499939,56))
- wave2.append(CreateDroppodTickEvent(< 3156.560059 , 2266.939941 , 951.781006 >,4,"hillRouteClose",57))
- wave2.append(CreateWaitForTimeEvent(5.0,58))
- wave2.append(CreateWaitUntilAliveWeightedEvent(16,59))
- wave2.append(CreateDroppodTickEvent(< 3248.840088 , 161.156006 , 951.781006 >,4,"hillRouteClose",60))
- wave2.append(CreateWaitForTimeEvent(1.1170044,61))
- wave2.append(CreateDroppodTickEvent(< 3156.560059 , 2266.939941 , 951.781006 >,4,"hillRouteClose",62))
- wave2.append(CreateWaitForTimeEvent(0.8829956,63))
- wave2.append(CreateToneTitanEvent(< 4466.220215 , 1469.410034 , 947.281006 >,< 0.000000 , 169.541000 , 0.000000 >,"",64))
- wave2.append(CreateWaitForTimeEvent(3.5169983,65))
- wave2.append(CreateDroppodGruntEvent(< 2336.000000 , 1968.000000 , 953.531006 >,"",66))
- wave2.append(CreateWaitForTimeEvent(5.0,67))
- wave2.append(CreateWaitUntilAliveWeightedEvent(16,68))
- wave2.append(CreateDroppodGruntEvent(< 3248.840088 , 161.156006 , 951.781006 >,"",69))
- wave2.append(CreateWaitForTimeEvent(2.6660156,70))
- wave2.append(CreateDroppodGruntEvent(< 3156.560059 , 2266.939941 , 951.781006 >,"",71))
- wave2.append(CreateWaitForTimeEvent(1.1999817,72))
- wave2.append(CreateDroppodGruntEvent(< 2336.000000 , 1968.000000 , 953.531006 >,"",73))
- wave2.append(CreateWaitForTimeEvent(5.0,74))
- wave2.append(CreateWaitUntilAliveWeightedEvent(16,75))
- wave2.append(CreateSuperSpectreEvent(< 4163.069824 , 1471.650024 , 944.281006 >,< -0.000000 , -179.416000 , 0.000000 >,"",76))
- wave2.append(CreateWaitForTimeEvent(1.5159912,77))
- wave2.append(CreateSuperSpectreEvent(< 4210.669922 , 895.575989 , 944.281006 >,< -0.000000 , -164.787003 , 0.000000 >,"",78))
- wave2.append(CreateWaitForTimeEvent(2.75,79))
- wave2.append(CreateSuperSpectreEvent(< 3577.010010 , 1491.959961 , 944.281006 >,< -0.000000 , 169.908005 , 0.000000 >,"",80))
- wave2.append(CreateWaitForTimeEvent(1.1340027,81))
- wave2.append(CreateSuperSpectreEvent(< 3982.860107 , 1778.540039 , 944.281006 >,< -0.000000 , 179.488007 , 0.000000 >,"",82))
- wave2.append(CreateWaitForTimeEvent(5.0,83))
- wave2.append(CreateWaitUntilAliveWeightedEvent(16,84))
- wave2.append(CreateDroppodGruntEvent(< 2457.310059 , -2563.659912 , 789.250000 >,"",85))
- wave2.append(CreateWaitForTimeEvent(1.3840027,86))
- wave2.append(CreateDroppodGruntEvent(< 1935.839966 , 3727.840088 , 931.656006 >,"",87))
- wave2.append(CreateWaitForTimeEvent(5.0,88))
- wave2.append(CreateWaitUntilAliveWeightedEvent(16,89))
- wave2.append(CreateSuperSpectreEvent(< 2182.939941 , -3549.810059 , 819.468994 >,< 0.000000 , 177.582993 , 0.000000 >,"",90))
- wave2.append(CreateWaitForTimeEvent(0.1159668,91))
- wave2.append(CreateDroppodGruntEvent(< 1045.339966 , -2843.340088 , 804.812988 >,"",92))
- wave2.append(CreateWaitForTimeEvent(0.5670166,93))
- wave2.append(CreateSuperSpectreEvent(< 2357.739990 , 4476.339844 , 962.960022 >,< -0.000000 , 177.669998 , 0.000000 >,"",94))
- wave2.append(CreateWaitForTimeEvent(0.7000122,95))
- wave2.append(CreateDroppodGruntEvent(< 2111.840088 , 3295.840088 , 939.031006 >,"",96))
- wave2.append(CreateWaitForTimeEvent(5.0,97))
- wave2.append(CreateWaitUntilAliveWeightedEvent(16,98))
- wave2.append(CreateSuperSpectreEvent(< 2343.590088 , -3185.840088 , 788.312988 >,< -0.000000 , 174.550995 , 0.000000 >,"",99))
- wave2.append(CreateWaitForTimeEvent(0.8500366,100))
- wave2.append(CreateSuperSpectreEvent(< 2338.270020 , 4684.279785 , 952.682007 >,< -0.000000 , -167.669006 , 0.000000 >,"",101))
- wave2.append(CreateWaitForTimeEvent(5.0,102))
- wave2.append(CreateWaitUntilAliveWeightedEvent(16,103))
- wave2.append(CreateSuperSpectreEvent(< 2177.209961 , -3539.600098 , 817.719971 >,< 0.000000 , 178.065994 , 0.000000 >,"",104))
- wave2.append(CreateWaitForTimeEvent(1.0,105))
- wave2.append(CreateSuperSpectreEvent(< 2401.719971 , 4475.089844 , 962.406006 >,< 0.000000 , 177.626999 , 0.000000 >,"",106))
- wave2.append(CreateWaitForTimeEvent(0.0,107))
- wave2.append(CreateIonTitanEvent(< 1817.380005 , -3585.909912 , 813.937988 >,< 0.000000 , 90.000000 , 0.000000 >,"",108))
- wave2.append(CreateWaitForTimeEvent(1.032959,109))
- wave2.append(CreateSuperSpectreEvent(< 2576.909912 , -3007.250000 , 796.093994 >,< 0.000000 , -165.850006 , 0.000000 >,"",110))
- wave2.append(CreateWaitForTimeEvent(0.28302002,111))
- wave2.append(CreateIonTitanEvent(< 2614.879883 , 4771.560059 , 951.000000 >,< 0.000000 , -141.108002 , 0.000000 >,"",112))
- wave2.append(CreateWaitForTimeEvent(0.7839966,113))
- wave2.append(CreateSuperSpectreEvent(< 2828.399902 , 4138.450195 , 938.893982 >,< 0.000000 , -171.078995 , 0.000000 >,"",114))
- wave2.append(CreateWaitForTimeEvent(5.0,115))
- wave2.append(CreateWaitUntilAliveWeightedEvent(16,116))
- wave2.append(CreateLegionTitanEvent(< 4466.689941 , 1469.410034 , 947.281006 >,< 0.000000 , 169.541000 , 0.000000 >,"",117))
- wave2.append(CreateWaitForTimeEvent(5.0,118))
- wave2.append(CreateWaitUntilAliveWeightedEvent(16,119))
- wave2.append(CreateSuperSpectreEvent(< 4182.189941 , 917.906006 , 944.281006 >,< 0.000000 , -124.805000 , 0.000000 >,"",120))
- wave2.append(CreateWaitForTimeEvent(1.3170166,121))
- wave2.append(CreateSuperSpectreEvent(< 2747.790039 , 1574.170044 , 944.281006 >,< -0.000000 , -164.485001 , 0.000000 >,"",122))
- wave2.append(CreateWaitForTimeEvent(5.0,123))
- wave2.append(CreateWaitUntilAliveWeightedEvent(16,124))
- wave2.append(CreateScorchTitanEvent(< 2821.659912 , -2937.090088 , 827.937988 >,< 0.000000 , 117.202003 , 0.000000 >,"",125))
- wave2.append(CreateWaitForTimeEvent(1.0,126))
- wave2.append(CreateScorchTitanEvent(< 3123.560059 , 4202.060059 , 954.343994 >,< 0.000000 , -141.108002 , 0.000000 >,"",127))
- wave2.append(CreateWaitForTimeEvent(0.1159668,128))
- wave2.append(CreateSuperSpectreEvent(< 2169.590088 , -3540.250000 , 817.875000 >,< -0.000000 , 178.065002 , 0.000000 >,"",129))
- wave2.append(CreateWaitForTimeEvent(1.3840332,130))
+ wave2.append(CreateDroppodTickEvent(< 864.625000 , 693.750000 , 1379.910034 >,4,"hillRouteClose",index++))
+ wave2.append(CreateWaitForTimeEvent(0.1,index++))
+ wave2.append(CreateSmokeEvent(< -12, 1720, 1540 >, 120, index++))
+ wave2.append(CreateWaitForTimeEvent(0.2,index++))
+ wave2.append(CreateSmokeEvent(< -64, 964, 1540 >, 120, index++))
+ wave2.append(CreateWaitForTimeEvent(0.7169983,index++))
+ wave2.append(CreateDroppodTickEvent(< 884.625000 , 1721.750000 , 1377.410034 >,4,"hillRouteClose",index++))
+ wave2.append(CreateWaitForTimeEvent(1.6500244,index++))
+ wave2.append(CreateDroppodTickEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,4,"hillRouteClose",index++))
+ wave2.append(CreateWaitForTimeEvent(1.0329895,index++))
+ wave2.append(CreateDroppodTickEvent(< 1258.060059 , 921.593994 , 1330.750000 >,4,"hillRouteClose",index++))
+ wave2.append(CreateWaitForTimeEvent(5.0,index++))
+ wave2.append(CreateWaitUntilAliveWeightedEvent(12,index++))
+ wave2.append(CreateToneSniperTitanEvent(< 1373.469971 , 1219.410034 , 1314.339966 >,< 0.000000 , 169.541000 , 0.000000 >,index++))
+ wave2.append(CreateWaitForTimeEvent(1.0159912,index++))
+ wave2.append(CreateToneSniperTitanEvent(< 1209.469971 , 579.406006 , 1332.310059 >,< 0.000000 , 169.541000 , 0.000000 >,index++))
+ wave2.append(CreateWaitForTimeEvent(0.8999939,index++))
+ wave2.append(CreateToneTitanEvent(< 2475.810059 , -3544.189941 , 810.218994 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(1.3000183,index++))
+ wave2.append(CreateToneTitanEvent(< 2665.060059 , 4456.129883 , 960.687988 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(1.1499939,index++))
+ wave2.append(CreateDroppodSpectreMortarEvent(< 864.625000 , 693.750000 , 1379.910034 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(5.0,index++))
+ wave2.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave2.append(CreateDroppodSpectreMortarEvent(< 884.625000 , 1721.750000 , 1377.410034 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(0.6000061,index++))
+ wave2.append(CreateDroppodGruntEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(1.6999817,index++))
+ wave2.append(CreateDroppodGruntEvent(< 864.625000 , 693.750000 , 1379.910034 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(2.9160156,index++))
+ wave2.append(CreateDroppodGruntEvent(< 1258.060059 , 921.593994 , 1330.750000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(5.0,index++))
+ wave2.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave2.append(CreateDroppodGruntEvent(< 864.625000 , 693.750000 , 1379.910034 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(0.8659973,index++))
+ wave2.append(CreateDroppodGruntEvent(< 884.625000 , 1721.750000 , 1377.410034 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(0.6839905,index++))
+ wave2.append(CreateDroppodGruntEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(1.4160156,index++))
+ wave2.append(CreateToneTitanEvent(< 2475.810059 , -3544.189941 , 810.218994 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(0.6000061,index++))
+ wave2.append(CreateToneTitanEvent(< 2665.060059 , 4456.129883 , 960.687988 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(5.0,index++))
+ wave2.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave2.append(CreateWarningEvent(FD_IncomingWarnings.Reaper,index++))
+ wave2.append(CreateSuperSpectreEvent(< 1856.959961 , -3177.639893 , 812.718018 >,< -0.000000 , -162.389999 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(1.03302,index++))
+ wave2.append(CreateSuperSpectreEvent(< 3123.000000 , 4201.589844 , 950.937988 >,< 0.000000 , -117.246002 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(3.6169739,index++))
+ wave2.append(CreateSuperSpectreEvent(< 681.140991 , -3538.780029 , 813.127014 >,< 0.000000 , -169.145996 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(0.78302,index++))
+ wave2.append(CreateSuperSpectreEvent(< 2614.629883 , 4771.560059 , 947.968994 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(3.1829834,index++))
+ wave2.append(CreateSuperSpectreEvent(< 2184.969971 , -3550.040039 , 819.479980 >,< 0.000000 , 177.582993 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(5.0,index++))
+ wave2.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave2.append(CreateSuperSpectreEvent(< 1764.410034 , 4424.220215 , 953.375000 >,< -0.000000 , -170.024002 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(5.0,index++))
+ wave2.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave2.append(CreateDroppodTickEvent(< 3248.840088 , 161.156006 , 951.781006 >,4,"hillRouteClose",index++))
+ wave2.append(CreateWaitForTimeEvent(1.1499939,index++))
+ wave2.append(CreateDroppodTickEvent(< 3156.560059 , 2266.939941 , 951.781006 >,4,"hillRouteClose",index++))
+ wave2.append(CreateWaitForTimeEvent(5.0,index++))
+ wave2.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave2.append(CreateDroppodTickEvent(< 3248.840088 , 161.156006 , 951.781006 >,4,"hillRouteClose",index++))
+ wave2.append(CreateWaitForTimeEvent(1.1170044,index++))
+ wave2.append(CreateDroppodTickEvent(< 3156.560059 , 2266.939941 , 951.781006 >,4,"hillRouteClose",index++))
+ wave2.append(CreateWaitForTimeEvent(0.8829956,index++))
+ wave2.append(CreateToneTitanEvent(< 4466.220215 , 1469.410034 , 947.281006 >,< 0.000000 , 169.541000 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(3.5169983,index++))
+ wave2.append(CreateDroppodGruntEvent(< 2336.000000 , 1968.000000 , 953.531006 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(5.0,index++))
+ wave2.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave2.append(CreateDroppodGruntEvent(< 3248.840088 , 161.156006 , 951.781006 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(2.6660156,index++))
+ wave2.append(CreateDroppodGruntEvent(< 3156.560059 , 2266.939941 , 951.781006 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(1.1999817,index++))
+ wave2.append(CreateDroppodGruntEvent(< 2336.000000 , 1968.000000 , 953.531006 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(5.0,index++))
+ wave2.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave2.append(CreateSuperSpectreEvent(< 4163.069824 , 1471.650024 , 944.281006 >,< -0.000000 , -179.416000 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(1.5159912,index++))
+ wave2.append(CreateSuperSpectreEvent(< 4210.669922 , 895.575989 , 944.281006 >,< -0.000000 , -164.787003 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(2.75,index++))
+ wave2.append(CreateSuperSpectreEvent(< 3577.010010 , 1491.959961 , 944.281006 >,< -0.000000 , 169.908005 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(1.1340027,index++))
+ wave2.append(CreateSuperSpectreEvent(< 3982.860107 , 1778.540039 , 944.281006 >,< -0.000000 , 179.488007 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(5.0,index++))
+ wave2.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave2.append(CreateDroppodGruntEvent(< 2457.310059 , -2563.659912 , 789.250000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(1.3840027,index++))
+ wave2.append(CreateDroppodGruntEvent(< 1935.839966 , 3727.840088 , 931.656006 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(5.0,index++))
+ wave2.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave2.append(CreateSuperSpectreEvent(< 2182.939941 , -3549.810059 , 819.468994 >,< 0.000000 , 177.582993 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(0.1159668,index++))
+ wave2.append(CreateDroppodGruntEvent(< 1045.339966 , -2843.340088 , 804.812988 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(0.5670166,index++))
+ wave2.append(CreateSuperSpectreEvent(< 2357.739990 , 4476.339844 , 962.960022 >,< -0.000000 , 177.669998 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(0.7000122,index++))
+ wave2.append(CreateDroppodGruntEvent(< 2111.840088 , 3295.840088 , 939.031006 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(5.0,index++))
+ wave2.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave2.append(CreateSmokeEvent(< 2684, 1252, 1092 >, 120, index++))
+ wave2.append(CreateWaitForTimeEvent(0.2,index++))
+ wave2.append(CreateSmokeEvent(< 2452, 1812, 1092 >, 120, index++))
+ wave2.append(CreateWaitForTimeEvent(0.2,index++))
+ wave2.append(CreateSmokeEvent(< 2336, 636, 1092 >, 120, index++))
+ wave2.append(CreateWaitForTimeEvent(0.6,index++))
+ wave2.append(CreateSuperSpectreEvent(< 2343.590088 , -3185.840088 , 788.312988 >,< -0.000000 , 174.550995 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(0.8500366,index++))
+ wave2.append(CreateSuperSpectreEvent(< 2338.270020 , 4684.279785 , 952.682007 >,< -0.000000 , -167.669006 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(5.0,index++))
+ wave2.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave2.append(CreateSuperSpectreEvent(< 2177.209961 , -3539.600098 , 817.719971 >,< 0.000000 , 178.065994 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(1.0,index++))
+ wave2.append(CreateSuperSpectreEvent(< 2401.719971 , 4475.089844 , 962.406006 >,< 0.000000 , 177.626999 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(0.0,index++))
+ wave2.append(CreateIonTitanEvent(< 1817.380005 , -3585.909912 , 813.937988 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(1.032959,index++))
+ wave2.append(CreateSuperSpectreEvent(< 2576.909912 , -3007.250000 , 796.093994 >,< 0.000000 , -165.850006 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(0.28302002,index++))
+ wave2.append(CreateIonTitanEvent(< 2614.879883 , 4771.560059 , 951.000000 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(0.7839966,index++))
+ wave2.append(CreateSuperSpectreEvent(< 2828.399902 , 4138.450195 , 938.893982 >,< 0.000000 , -171.078995 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(5.0,index++))
+ wave2.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave2.append(CreateLegionTitanEvent(< 4466.689941 , 1469.410034 , 947.281006 >,< 0.000000 , 169.541000 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(5.0,index++))
+ wave2.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave2.append(CreateSuperSpectreEvent(< 4182.189941 , 917.906006 , 944.281006 >,< 0.000000 , -124.805000 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(1.3170166,index++))
+ wave2.append(CreateSuperSpectreEvent(< 2747.790039 , 1574.170044 , 944.281006 >,< -0.000000 , -164.485001 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(5.0,index++))
+ wave2.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave2.append(CreateScorchTitanEvent(< 2821.659912 , -2937.090088 , 827.937988 >,< 0.000000 , 117.202003 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(1.0,index++))
+ wave2.append(CreateScorchTitanEvent(< 3123.560059 , 4202.060059 , 954.343994 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(0.1159668,index++))
+ wave2.append(CreateSuperSpectreEvent(< 2169.590088 , -3540.250000 , 817.875000 >,< -0.000000 , 178.065002 , 0.000000 >,"",index++))
+ wave2.append(CreateWaitForTimeEvent(1.3840332,index++))
wave2.append(CreateSuperSpectreEvent(< 2354.810059 , 4476.589844 , 962.968994 >,< -0.000000 , 177.759003 , 0.000000 >,"",0))
waveEvents.append(wave2)
+ index = 1
array<WaveEvent> wave3
- wave3.append(CreateRoninTitanEvent(< 1763.839966 , -1608.750000 , 810.281006 >,< 0.000000 , 90.000000 , 0.000000 >,"",1))
- wave3.append(CreateWaitForTimeEvent(0.7670288,2))
- wave3.append(CreateCloakDroneEvent(< 1883.910034 , -1569.939941 , 1108.000000 >,< 0.000000 , 0.000000 , 0.000000 >,3))
- wave3.append(CreateWaitForTimeEvent(1.1499634,4))
- wave3.append(CreateDroppodGruntEvent(< 2457.310059 , -2563.659912 , 789.250000 >,"",5))
- wave3.append(CreateWaitForTimeEvent(1.3829956,6))
- wave3.append(CreateDroppodGruntEvent(< 1045.339966 , -2843.340088 , 804.812988 >,"",7))
- wave3.append(CreateWaitForTimeEvent(3.4000244,8))
- wave3.append(CreateDroppodGruntEvent(< 346.312988 , -2838.659912 , 803.968994 >,"",9))
- wave3.append(CreateWaitForTimeEvent(1.1170044,10))
- wave3.append(CreateDroppodGruntEvent(< 1418.310059 , -2254.659912 , 810.031006 >,"",11))
- wave3.append(CreateWaitForTimeEvent(5.0,12))
- wave3.append(CreateWaitUntilAliveWeightedEvent(16,13))
- wave3.append(CreateSuperSpectreEvent(< 2170.020020 , -3549.570068 , 819.468994 >,< -0.000000 , 177.626007 , 0.000000 >,"",14))
- wave3.append(CreateWaitForTimeEvent(1.0669556,15))
- wave3.append(CreateSuperSpectreEvent(< 2577.060059 , -3007.379883 , 796.093994 >,< -0.000000 , -165.850006 , 0.000000 >,"",16))
- wave3.append(CreateWaitForTimeEvent(1.1329956,17))
- wave3.append(CreateSuperSpectreEvent(< 1512.939941 , -3294.090088 , 798.000000 >,< -0.000000 , 89.077103 , 0.000000 >,"",18))
- wave3.append(CreateWaitForTimeEvent(1.4000244,19))
- wave3.append(CreateSuperSpectreEvent(< 1531.000000 , -1779.880005 , 800.031006 >,< 0.000000 , 133.110001 , 0.000000 >,"",20))
- wave3.append(CreateWaitForTimeEvent(5.0,21))
- wave3.append(CreateWaitUntilAliveWeightedEvent(16,22))
- wave3.append(CreateScorchTitanEvent(< 2475.909912 , -3544.659912 , 810.281006 >,< 0.000000 , 90.000000 , 0.000000 >,"",23))
- wave3.append(CreateWaitForTimeEvent(0.6829834,24))
- wave3.append(CreateIonTitanEvent(< 2821.340088 , -2936.719971 , 827.937988 >,< 0.000000 , 117.202003 , 0.000000 >,"",25))
- wave3.append(CreateWaitForTimeEvent(0.7839966,26))
- wave3.append(CreateIonTitanEvent(< 1503.810059 , -3600.189941 , 813.687988 >,< 0.000000 , 90.000000 , 0.000000 >,"",27))
- wave3.append(CreateWaitForTimeEvent(1.0,28))
- wave3.append(CreateScorchTitanEvent(< 1559.910034 , -2024.660034 , 803.031006 >,< 0.000000 , 90.000000 , 0.000000 >,"",29))
- wave3.append(CreateWaitForTimeEvent(5.0,30))
- wave3.append(CreateWaitUntilAliveWeightedEvent(16,31))
- wave3.append(CreateSpawnDroneEvent(< 2487.310059 , -2561.379883 , 5744.229980 >,< 0.004999 , 90.003700 , 0.000004 >,"",32, false))
- wave3.append(CreateWaitForTimeEvent(0.0,33))
- wave3.append(CreateSpawnDroneEvent(< 2457.310059 , -2591.379883 , 5744.189941 >,< 0.004999 , 90.003700 , 0.000004 >,"",34, false))
- wave3.append(CreateWaitForTimeEvent(0.0,35))
- wave3.append(CreateSpawnDroneEvent(< 2457.310059 , -2531.379883 , 5744.319824 >,< 0.004999 , 90.003700 , 0.000004 >,"",36, false))
- wave3.append(CreateWaitForTimeEvent(0.0,37))
- wave3.append(CreateSpawnDroneEvent(< 2427.310059 , -2561.379883 , 5744.549805 >,< 0.004999 , 90.003700 , 0.000004 >,"",38, false))
- wave3.append(CreateWaitForTimeEvent(5.0,39))
- wave3.append(CreateWaitUntilAliveWeightedEvent(16,40))
- wave3.append(CreateDroppodGruntEvent(< 2457.310059 , -2563.659912 , 789.250000 >,"",41))
- wave3.append(CreateWaitForTimeEvent(1.282959,42))
- wave3.append(CreateDroppodGruntEvent(< 1045.339966 , -2843.340088 , 804.812988 >,"",43))
- wave3.append(CreateWaitForTimeEvent(2.6170044,44))
- wave3.append(CreateDroppodGruntEvent(< 346.312988 , -2838.659912 , 803.968994 >,"",45))
- wave3.append(CreateWaitForTimeEvent(0.9660034,46))
- wave3.append(CreateDroppodGruntEvent(< 1418.310059 , -2254.659912 , 810.031006 >,"",47))
- wave3.append(CreateWaitForTimeEvent(1.0999756,48))
- wave3.append(CreateToneSniperTitanEvent(< 4466.220215 , 1469.410034 , 947.281006 >,< 0.000000 , 169.541000 , 0.000000 >,49))
- wave3.append(CreateWaitForTimeEvent(0.6170044,50))
- wave3.append(CreateMonarchTitanEvent(< 4453.129883 , 964.750000 , 947.281006 >,< 0.000000 , -172.529007 , 0.000000 >,"",51))
- wave3.append(CreateWaitForTimeEvent(5.0,52))
- wave3.append(CreateWaitUntilAliveWeightedEvent(16,53))
- wave3.append(CreateRoninTitanEvent(< 1763.839966 , -1608.750000 , 810.281006 >,< 0.000000 , 90.000000 , 0.000000 >,"",54))
- wave3.append(CreateWaitForTimeEvent(0.61602783,55))
- wave3.append(CreateRoninTitanEvent(< 2359.840088 , -1596.750000 , 802.718994 >,< 0.000000 , 90.000000 , 0.000000 >,"",56))
- wave3.append(CreateWaitForTimeEvent(1.9840088,57))
- wave3.append(CreateToneTitanEvent(< 2475.810059 , -3544.189941 , 810.218994 >,< 0.000000 , 90.000000 , 0.000000 >,"",58))
- wave3.append(CreateWaitForTimeEvent(1.0999756,59))
- wave3.append(CreateToneTitanEvent(< 2821.340088 , -2936.719971 , 827.937988 >,< 0.000000 , 117.202003 , 0.000000 >,"",60))
- wave3.append(CreateWaitForTimeEvent(5.0,61))
- wave3.append(CreateWaitUntilAliveWeightedEvent(16,62))
- wave3.append(CreateSuperSpectreEvent(< 2180.080078 , -3539.689941 , 817.739014 >,< 0.000000 , 178.065994 , 0.000000 >,"",63))
- wave3.append(CreateWaitForTimeEvent(0.6329956,64))
- wave3.append(CreateLegionTitanEvent(< 2680.219971 , -1724.630005 , 809.718994 >,< 0.000000 , 169.320999 , 0.000000 >,"",65))
- wave3.append(CreateWaitForTimeEvent(0.06695557,66))
- wave3.append(CreateSuperSpectreEvent(< 2533.800049 , -3018.310059 , 795.421021 >,< 0.000000 , -165.806000 , 0.000000 >,"",67))
- wave3.append(CreateWaitForTimeEvent(1.0170288,68))
- wave3.append(CreateLegionTitanEvent(< 1763.910034 , -1608.660034 , 810.218994 >,< 0.000000 , 90.000000 , 0.000000 >,"",69))
- wave3.append(CreateWaitForTimeEvent(0.16601562,70))
- wave3.append(CreateSuperSpectreEvent(< 1512.839966 , -3298.719971 , 797.968994 >,< -0.000000 , 89.120796 , 0.000000 >,"",71))
- wave3.append(CreateWaitForTimeEvent(1.0,72))
- wave3.append(CreateSuperSpectreEvent(< 1499.910034 , -1748.660034 , 801.656006 >,< -0.000000 , 132.934998 , 0.000000 >,"",73))
- wave3.append(CreateWaitForTimeEvent(2.2340088,74))
- wave3.append(CreateDroppodGruntEvent(< 2457.310059 , -2563.659912 , 789.250000 >,"",75))
- wave3.append(CreateWaitForTimeEvent(1.4829712,76))
- wave3.append(CreateDroppodGruntEvent(< 1045.339966 , -2843.340088 , 804.812988 >,"",77))
- wave3.append(CreateWaitForTimeEvent(2.9000244,78))
- wave3.append(CreateDroppodGruntEvent(< 346.312988 , -2838.659912 , 803.968994 >,"",79))
- wave3.append(CreateWaitForTimeEvent(0.5999756,80))
- wave3.append(CreateDroppodGruntEvent(< 1418.310059 , -2254.659912 , 810.031006 >,"",81))
- wave3.append(CreateWaitForTimeEvent(0.6829834,82))
- wave3.append(CreateScorchTitanEvent(< 1503.910034 , -3600.659912 , 813.781006 >,< 0.000000 , 90.000000 , 0.000000 >,"",83))
- wave3.append(CreateWaitForTimeEvent(1.3170166,84))
- wave3.append(CreateScorchTitanEvent(< 2475.909912 , -3544.659912 , 810.281006 >,< 0.000000 , 90.000000 , 0.000000 >,"",85))
- wave3.append(CreateWaitForTimeEvent(5.0,86))
- wave3.append(CreateWaitUntilAliveWeightedEvent(16,87))
- wave3.append(CreateToneTitanEvent(< 1763.810059 , -1608.189941 , 810.000000 >,< 0.000000 , 90.000000 , 0.000000 >,"",88))
- wave3.append(CreateWaitForTimeEvent(0.9000244,89))
- wave3.append(CreateToneTitanEvent(< 2359.810059 , -1596.189941 , 802.718994 >,< 0.000000 , 90.000000 , 0.000000 >,"",90))
- wave3.append(CreateWaitForTimeEvent(0.5839844,91))
- wave3.append(CreateCloakDroneEvent(< 1923.000000 , -1544.000000 , 1108.000000 >,< 0.000000 , 0.000000 , 0.000000 >,92))
- wave3.append(CreateWaitForTimeEvent(1.3330078,93))
- wave3.append(CreateCloakDroneEvent(< 1982.020020 , -1598.000000 , 1236.040039 >,< 0.000000 , 0.000000 , 0.000000 >,94))
- wave3.append(CreateWaitForTimeEvent(5.0,95))
- wave3.append(CreateWaitUntilAliveWeightedEvent(16,96))
- wave3.append(CreateLegionTitanEvent(< 4466.689941 , 1469.410034 , 947.281006 >,< 0.000000 , 169.541000 , 0.000000 >,"",97))
- wave3.append(CreateWaitForTimeEvent(0.7999878,98))
- wave3.append(CreateLegionTitanEvent(< 4453.589844 , 964.906006 , 947.281006 >,< 0.000000 , -172.529007 , 0.000000 >,"",99))
- wave3.append(CreateWaitForTimeEvent(1.4000244,100))
+ wave3.append(CreateRoninTitanEvent(< 1763.839966 , -1608.750000 , 810.281006 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(0.1670288,index++))
+ wave3.append(CreateSmokeEvent(< -2264, -2096, 928 >, 120, index++))
+ wave3.append(CreateWaitForTimeEvent(0.333,index++))
+ wave3.append(CreateSmokeEvent(< -3132, -1904, 928 >, 120, index++))
+ wave3.append(CreateWaitForTimeEvent(0.2,index++))
+ wave3.append(CreateSmokeEvent(< -1548, -2240, 928 >, 120, index++))
+ wave3.append(CreateWaitForTimeEvent(0.067,index++))
+ wave3.append(CreateCloakDroneEvent(< 1883.910034 , -1569.939941 , 1108.000000 >,< 0.000000 , 0.000000 , 0.000000 >,index++))
+ wave3.append(CreateWaitForTimeEvent(1.1499634,index++))
+ wave3.append(CreateDroppodGruntEvent(< 2457.310059 , -2563.659912 , 789.250000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(1.3829956,index++))
+ wave3.append(CreateDroppodGruntEvent(< 1045.339966 , -2843.340088 , 804.812988 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(3.4000244,index++))
+ wave3.append(CreateDroppodGruntEvent(< 346.312988 , -2838.659912 , 803.968994 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(1.1170044,index++))
+ wave3.append(CreateDroppodGruntEvent(< 1418.310059 , -2254.659912 , 810.031006 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(5.0,index++))
+ wave3.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave3.append(CreateWarningEvent(FD_IncomingWarnings.Reaper,index++))
+ wave3.append(CreateSuperSpectreEvent(< 2170.020020 , -3549.570068 , 819.468994 >,< -0.000000 , 177.626007 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(1.0669556,index++))
+ wave3.append(CreateSuperSpectreEvent(< 2577.060059 , -3007.379883 , 796.093994 >,< -0.000000 , -165.850006 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(1.1329956,index++))
+ wave3.append(CreateSuperSpectreEvent(< 1512.939941 , -3294.090088 , 798.000000 >,< -0.000000 , 89.077103 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(1.4000244,index++))
+ wave3.append(CreateSuperSpectreEvent(< 1531.000000 , -1779.880005 , 800.031006 >,< 0.000000 , 133.110001 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(5.0,index++))
+ wave3.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave3.append(CreateScorchTitanEvent(< 2475.909912 , -3544.659912 , 810.281006 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(0.6829834,index++))
+ wave3.append(CreateIonTitanEvent(< 2821.340088 , -2936.719971 , 827.937988 >,< 0.000000 , 117.202003 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(0.7839966,index++))
+ wave3.append(CreateIonTitanEvent(< 1503.810059 , -3600.189941 , 813.687988 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(1.0,index++))
+ wave3.append(CreateScorchTitanEvent(< 1559.910034 , -2024.660034 , 803.031006 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(5.0,index++))
+ wave3.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave3.append(CreateSpawnDroneEvent(< 2487.310059 , -2561.379883 , 5744.229980 >,< 0.004999 , 90.003700 , 0.000004 >,"",index++, false))
+ wave3.append(CreateWaitForTimeEvent(0.0,index++))
+ wave3.append(CreateSpawnDroneEvent(< 2457.310059 , -2591.379883 , 5744.189941 >,< 0.004999 , 90.003700 , 0.000004 >,"",index++, false))
+ wave3.append(CreateWaitForTimeEvent(0.0,index++))
+ wave3.append(CreateSpawnDroneEvent(< 2457.310059 , -2531.379883 , 5744.319824 >,< 0.004999 , 90.003700 , 0.000004 >,"",index++, false))
+ wave3.append(CreateWaitForTimeEvent(0.0,index++))
+ wave3.append(CreateSpawnDroneEvent(< 2427.310059 , -2561.379883 , 5744.549805 >,< 0.004999 , 90.003700 , 0.000004 >,"",index++, false))
+ wave3.append(CreateWaitForTimeEvent(5.0,index++))
+ wave3.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave3.append(CreateDroppodGruntEvent(< 2457.310059 , -2563.659912 , 789.250000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(1.282959,index++))
+ wave3.append(CreateDroppodGruntEvent(< 1045.339966 , -2843.340088 , 804.812988 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(2.6170044,index++))
+ wave3.append(CreateDroppodGruntEvent(< 346.312988 , -2838.659912 , 803.968994 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(0.9660034,index++))
+ wave3.append(CreateDroppodGruntEvent(< 1418.310059 , -2254.659912 , 810.031006 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(1.0999756,index++))
+ wave3.append(CreateToneSniperTitanEvent(< 4466.220215 , 1469.410034 , 947.281006 >,< 0.000000 , 169.541000 , 0.000000 >,index++))
+ wave3.append(CreateWaitForTimeEvent(0.6170044,index++))
+ wave3.append(CreateMonarchTitanEvent(< 4453.129883 , 964.750000 , 947.281006 >,< 0.000000 , -172.529007 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(5.0,index++))
+ wave3.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave3.append(CreateRoninTitanEvent(< 1763.839966 , -1608.750000 , 810.281006 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(0.61602783,index++))
+ wave3.append(CreateRoninTitanEvent(< 2359.840088 , -1596.750000 , 802.718994 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(1.9840088,index++))
+ wave3.append(CreateToneTitanEvent(< 2475.810059 , -3544.189941 , 810.218994 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(1.0999756,index++))
+ wave3.append(CreateToneTitanEvent(< 2821.340088 , -2936.719971 , 827.937988 >,< 0.000000 , 117.202003 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(5.0,index++))
+ wave3.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave3.append(CreateSuperSpectreEvent(< 2180.080078 , -3539.689941 , 817.739014 >,< 0.000000 , 178.065994 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(0.6329956,index++))
+ wave3.append(CreateLegionTitanEvent(< 2680.219971 , -1724.630005 , 809.718994 >,< 0.000000 , 169.320999 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(0.06695557,index++))
+ wave3.append(CreateSuperSpectreEvent(< 2533.800049 , -3018.310059 , 795.421021 >,< 0.000000 , -165.806000 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(1.0170288,index++))
+ wave3.append(CreateLegionTitanEvent(< 1763.910034 , -1608.660034 , 810.218994 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(0.16601562,index++))
+ wave3.append(CreateSuperSpectreEvent(< 1512.839966 , -3298.719971 , 797.968994 >,< -0.000000 , 89.120796 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(1.0,index++))
+ wave3.append(CreateSuperSpectreEvent(< 1499.910034 , -1748.660034 , 801.656006 >,< -0.000000 , 132.934998 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(2.2340088,index++))
+ wave3.append(CreateDroppodGruntEvent(< 2457.310059 , -2563.659912 , 789.250000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(1.4829712,index++))
+ wave3.append(CreateDroppodGruntEvent(< 1045.339966 , -2843.340088 , 804.812988 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(2.9000244,index++))
+ wave3.append(CreateDroppodGruntEvent(< 346.312988 , -2838.659912 , 803.968994 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(0.5999756,index++))
+ wave3.append(CreateDroppodGruntEvent(< 1418.310059 , -2254.659912 , 810.031006 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(0.6829834,index++))
+ wave3.append(CreateScorchTitanEvent(< 1503.910034 , -3600.659912 , 813.781006 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(1.3170166,index++))
+ wave3.append(CreateScorchTitanEvent(< 2475.909912 , -3544.659912 , 810.281006 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(5.0,index++))
+ wave3.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave3.append(CreateToneTitanEvent(< 1763.810059 , -1608.189941 , 810.000000 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(0.9000244,index++))
+ wave3.append(CreateToneTitanEvent(< 2359.810059 , -1596.189941 , 802.718994 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(0.5839844,index++))
+ wave3.append(CreateWarningEvent(FD_IncomingWarnings.CloakDrone,index++))
+ wave3.append(CreateCloakDroneEvent(< 1923.000000 , -1544.000000 , 1108.000000 >,< 0.000000 , 0.000000 , 0.000000 >,index++))
+ wave3.append(CreateWaitForTimeEvent(1.3330078,index++))
+ wave3.append(CreateCloakDroneEvent(< 1982.020020 , -1598.000000 , 1236.040039 >,< 0.000000 , 0.000000 , 0.000000 >,index++))
+ wave3.append(CreateWaitForTimeEvent(5.0,index++))
+ wave3.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave3.append(CreateLegionTitanEvent(< 4466.689941 , 1469.410034 , 947.281006 >,< 0.000000 , 169.541000 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(0.7999878,index++))
+ wave3.append(CreateLegionTitanEvent(< 4453.589844 , 964.906006 , 947.281006 >,< 0.000000 , -172.529007 , 0.000000 >,"",index++))
+ wave3.append(CreateWaitForTimeEvent(1.4000244,index++))
wave3.append(CreateMonarchTitanEvent(< 3866.659912 , 1445.630005 , 947.281006 >,< 0.000000 , 180.000000 , 0.000000 >,"",0))
waveEvents.append(wave3)
+ index = 1
array<WaveEvent> wave4
- wave4.append(CreateDroppodStalkerEvent(< 1935.839966 , 3727.840088 , 931.656006 >,"",1))
- wave4.append(CreateWaitForTimeEvent(0.6000366,2))
- wave4.append(CreateDroppodStalkerEvent(< 2111.840088 , 3295.840088 , 939.031006 >,"",3))
- wave4.append(CreateWaitForTimeEvent(1.5169678,4))
- wave4.append(CreateScorchTitanEvent(< 2665.340088 , 4456.500000 , 960.656006 >,< 0.000000 , -141.108002 , 0.000000 >,"",5))
- wave4.append(CreateWaitForTimeEvent(0.8829956,6))
- wave4.append(CreateToneTitanEvent(< 3123.250000 , 4201.689941 , 954.281006 >,< 0.000000 , -141.108002 , 0.000000 >,"",7))
- wave4.append(CreateWaitForTimeEvent(0.6000366,8))
- wave4.append(CreateToneTitanEvent(< 1324.160034 , 4820.189941 , 937.531006 >,< 0.000000 , -90.000000 , 0.000000 >,"",9))
- wave4.append(CreateWaitForTimeEvent(1.0,10))
- wave4.append(CreateNukeTitanEvent(< 3144.659912 , 2935.629883 , 917.218994 >,< 0.000000 , 179.341003 , 0.000000 >,"",11))
- wave4.append(CreateWaitForTimeEvent(1.2000122,12))
- wave4.append(CreateNukeTitanEvent(< 3739.129883 , 1985.719971 , 947.281006 >,< 0.000000 , 180.000000 , 0.000000 >,"",13))
- wave4.append(CreateWaitForTimeEvent(1.5,14))
- wave4.append(CreateDroppodStalkerEvent(< 1087.839966 , 3863.840088 , 931.750000 >,"",15))
- wave4.append(CreateWaitForTimeEvent(1.3499756,16))
- wave4.append(CreateDroppodStalkerEvent(< 908.750000 , 3093.629883 , 967.500000 >,"",17))
- wave4.append(CreateWaitForTimeEvent(1.2999878,18))
- wave4.append(CreateDroppodStalkerEvent(< 3156.560059 , 2266.939941 , 951.781006 >,"",19))
- wave4.append(CreateWaitForTimeEvent(5.0,20))
- wave4.append(CreateWaitUntilAliveWeightedEvent(16,21))
- wave4.append(CreateDroppodStalkerEvent(< 1935.839966 , 3727.840088 , 931.656006 >,"",22))
- wave4.append(CreateWaitForTimeEvent(0.7000122,23))
- wave4.append(CreateDroppodStalkerEvent(< 2111.840088 , 3295.840088 , 939.031006 >,"",24))
- wave4.append(CreateWaitForTimeEvent(0.9830322,25))
- wave4.append(CreateDroppodStalkerEvent(< 1087.839966 , 3863.840088 , 931.750000 >,"",26))
- wave4.append(CreateWaitForTimeEvent(3.5999756,27))
- wave4.append(CreateMortarTitanEvent(< 2475.810059 , -3544.189941 , 810.218994 >,< 0.000000 , 90.000000 , 0.000000 >,28))
- wave4.append(CreateWaitForTimeEvent(0.5830078,29))
- wave4.append(CreateMortarTitanEvent(< 2821.340088 , -2936.719971 , 827.937988 >,< 0.000000 , 117.202003 , 0.000000 >,30))
- wave4.append(CreateWaitForTimeEvent(1.3499756,31))
- wave4.append(CreateScorchTitanEvent(< 2665.340088 , 4456.500000 , 960.656006 >,< 0.000000 , -141.108002 , 0.000000 >,"",32))
- wave4.append(CreateWaitForTimeEvent(1.0670166,33))
- wave4.append(CreateScorchTitanEvent(< 3123.560059 , 4202.060059 , 954.343994 >,< 0.000000 , -141.108002 , 0.000000 >,"",34))
- wave4.append(CreateWaitForTimeEvent(1.21698,35))
- wave4.append(CreateIonTitanEvent(< 1324.160034 , 4820.189941 , 937.531006 >,< 0.000000 , -90.000000 , 0.000000 >,"",36))
- wave4.append(CreateWaitForTimeEvent(0.9160156,37))
- wave4.append(CreateIonTitanEvent(< 3144.159912 , 2935.530029 , 917.187988 >,< 0.000000 , 179.341003 , 0.000000 >,"",38))
- wave4.append(CreateWaitForTimeEvent(0.684021,39))
- wave4.append(CreateNukeTitanEvent(< 3739.129883 , 1985.719971 , 947.281006 >,< 0.000000 , 180.000000 , 0.000000 >,"",40))
- wave4.append(CreateWaitForTimeEvent(0.5999756,41))
- wave4.append(CreateNukeTitanEvent(< -31.906300 , 4688.660156 , 1027.660034 >,< 0.000000 , -90.000000 , 0.000000 >,"",42))
- wave4.append(CreateWaitForTimeEvent(1.2659912,43))
- wave4.append(CreateNukeTitanEvent(< 1293.939941 , 1827.410034 , 1321.750000 >,< 0.000000 , 169.541000 , 0.000000 >,"",44))
- wave4.append(CreateWaitForTimeEvent(1.5339966,45))
- wave4.append(CreateDroppodStalkerEvent(< 908.750000 , 3093.629883 , 967.500000 >,"",46))
- wave4.append(CreateWaitForTimeEvent(1.3000488,47))
- wave4.append(CreateDroppodStalkerEvent(< 3156.560059 , 2266.939941 , 951.781006 >,"",48))
- wave4.append(CreateWaitForTimeEvent(5.0,49))
- wave4.append(CreateWaitUntilAliveWeightedEvent(16,50))
- wave4.append(CreateSuperSpectreEvent(< 2355.209961 , 4472.799805 , 963.218994 >,< -0.000000 , 175.473007 , 0.000000 >,"",51))
- wave4.append(CreateWaitForTimeEvent(0.5999756,52))
- wave4.append(CreateSuperSpectreEvent(< 2835.689941 , 4139.939941 , 939.281006 >,< 0.000000 , -171.078995 , 0.000000 >,"",53))
- wave4.append(CreateWaitForTimeEvent(1.0170288,54))
- wave4.append(CreateSuperSpectreEvent(< 1014.690002 , 4844.540039 , 941.236023 >,< -0.000000 , 173.994995 , 0.000000 >,"",55))
- wave4.append(CreateWaitForTimeEvent(0.6170044,56))
- wave4.append(CreateSuperSpectreEvent(< 2833.949951 , 2953.350098 , 910.458008 >,< -0.000000 , 178.046997 , 0.000000 >,"",57))
- wave4.append(CreateWaitForTimeEvent(0.5830078,58))
- wave4.append(CreateSuperSpectreEvent(< 4164.439941 , 1471.750000 , 944.281006 >,< -0.000000 , -179.429001 , 0.000000 >,"",59))
- wave4.append(CreateWaitForTimeEvent(0.117004395,60))
- wave4.append(CreateDroppodStalkerEvent(< 1935.839966 , 3727.840088 , 931.656006 >,"",61))
- wave4.append(CreateWaitForTimeEvent(1.0999756,62))
- wave4.append(CreateSuperSpectreEvent(< 4207.680176 , 894.888977 , 944.281006 >,< -0.000000 , -167.283005 , 0.000000 >,"",63))
- wave4.append(CreateWaitForTimeEvent(0.21600342,64))
- wave4.append(CreateDroppodStalkerEvent(< 2111.840088 , 3295.840088 , 939.031006 >,"",65))
- wave4.append(CreateWaitForTimeEvent(0.9840088,66))
- wave4.append(CreateSuperSpectreEvent(< 3570.689941 , 1491.780029 , 944.281006 >,< 0.000000 , 169.761002 , 0.000000 >,"",67))
- wave4.append(CreateWaitForTimeEvent(0.23297119,68))
- wave4.append(CreateDroppodStalkerEvent(< 1087.839966 , 3863.840088 , 931.750000 >,"",69))
- wave4.append(CreateWaitForTimeEvent(0.3670044,70))
- wave4.append(CreateSuperSpectreEvent(< 3604.739990 , 835.104004 , 944.281006 >,< -0.000000 , -159.296997 , 0.000000 >,"",71))
- wave4.append(CreateWaitForTimeEvent(5.0,72))
- wave4.append(CreateWaitUntilAliveWeightedEvent(16,73))
- wave4.append(CreateArcTitanEvent(< 2665.469971 , 4456.529785 , 960.656006 >,< 0.000000 , -141.108002 , 0.000000 >,"",74))
- wave4.append(CreateWaitForTimeEvent(1.4199829,75))
- wave4.append(CreateArcTitanEvent(< 3123.659912 , 4202.089844 , 954.343994 >,< 0.000000 , -141.108002 , 0.000000 >,"",76))
- wave4.append(CreateWaitForTimeEvent(0.6799927,77))
- wave4.append(CreateScorchTitanEvent(< 1324.060059 , 4820.660156 , 937.562988 >,< 0.000000 , -90.000000 , 0.000000 >,"",78))
- wave4.append(CreateWaitForTimeEvent(1.2200317,79))
- wave4.append(CreateScorchTitanEvent(< 3144.659912 , 2935.629883 , 917.218994 >,< 0.000000 , 179.341003 , 0.000000 >,"",80))
- wave4.append(CreateWaitForTimeEvent(0.90997314,81))
- wave4.append(CreateToneTitanEvent(< 3738.659912 , 1985.630005 , 947.281006 >,< 0.000000 , 180.000000 , 0.000000 >,"",82))
- wave4.append(CreateWaitForTimeEvent(0.5700073,83))
- wave4.append(CreateToneTitanEvent(< -31.812500 , 4688.189941 , 1027.560059 >,< 0.000000 , -90.000000 , 0.000000 >,"",84))
- wave4.append(CreateWaitForTimeEvent(1.4000244,85))
- wave4.append(CreateRoninTitanEvent(< 1294.030029 , 1827.339966 , 1321.719971 >,< 0.000000 , 169.541000 , 0.000000 >,"",86))
- wave4.append(CreateWaitForTimeEvent(0.9299927,87))
- wave4.append(CreateRoninTitanEvent(< 4278.029785 , 1771.339966 , 947.281006 >,< 0.000000 , 169.541000 , 0.000000 >,"",88))
- wave4.append(CreateWaitForTimeEvent(0.8899536,89))
- wave4.append(CreateToneSniperTitanEvent(< 4453.129883 , 964.750000 , 947.281006 >,< 0.000000 , -172.529007 , 0.000000 >,90))
- wave4.append(CreateWaitForTimeEvent(1.210083,91))
- wave4.append(CreateToneSniperTitanEvent(< 3866.659912 , 1445.630005 , 947.281006 >,< 0.000000 , 180.000000 , 0.000000 >,92))
- wave4.append(CreateWaitForTimeEvent(1.0,93))
- wave4.append(CreateCloakDroneEvent(< 4432.939941 , 1262.939941 , 1244.000000 >,< 0.000000 , 0.000000 , 0.000000 >,94))
- wave4.append(CreateWaitForTimeEvent(4.3898926,95))
- wave4.append(CreateSuperSpectreEvent(< 3878.439941 , 933.812988 , 944.281006 >,< -0.000000 , -79.509102 , 0.000000 >,"",96))
- wave4.append(CreateWaitForTimeEvent(1.2000732,97))
- wave4.append(CreateSuperSpectreEvent(< 4008.780029 , 378.406006 , 944.281006 >,< 0.000000 , -120.498001 , 0.000000 >,"",98))
- wave4.append(CreateWaitForTimeEvent(0.92993164,99))
- wave4.append(CreateSuperSpectreEvent(< 2916.810059 , 2679.780029 , 939.000000 >,< -0.000000 , -44.335999 , 0.000000 >,"",100))
- wave4.append(CreateWaitForTimeEvent(0.5800781,101))
- wave4.append(CreateSuperSpectreEvent(< 545.906006 , 1309.910034 , 1438.750000 >,< 0.000000 , -166.860001 , 0.000000 >,"",102))
- wave4.append(CreateWaitForTimeEvent(5.0,103))
- wave4.append(CreateWaitUntilAliveWeightedEvent(16,104))
- wave4.append(CreateNukeTitanEvent(< 2665.340088 , 4456.500000 , 960.656006 >,< 0.000000 , -141.108002 , 0.000000 >,"",105))
- wave4.append(CreateWaitForTimeEvent(1.0198975,106))
- wave4.append(CreateNukeTitanEvent(< 3123.560059 , 4202.060059 , 954.343994 >,< 0.000000 , -141.108002 , 0.000000 >,"",107))
- wave4.append(CreateWaitForTimeEvent(0.9000244,108))
- wave4.append(CreateNukeTitanEvent(< 3144.659912 , 2935.629883 , 917.218994 >,< 0.000000 , 179.341003 , 0.000000 >,"",109))
- wave4.append(CreateWaitForTimeEvent(1.5,110))
- wave4.append(CreateNukeTitanEvent(< 1324.060059 , 4820.660156 , 937.562988 >,< 0.000000 , -90.000000 , 0.000000 >,"",111))
- wave4.append(CreateWaitForTimeEvent(0.60998535,112))
+ wave4.append(CreateDroppodStalkerEvent(< 1935.839966 , 3727.840088 , 931.656006 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.6000366,index++))
+ wave4.append(CreateSmokeEvent(< -2596, 3224, 1104 >, 120, index++))
+ wave4.append(CreateWaitForTimeEvent(0.1,index++))
+ wave4.append(CreateSmokeEvent(< -3252, 3052, 1104 >, 120, index++))
+ wave4.append(CreateDroppodStalkerEvent(< 2111.840088 , 3295.840088 , 939.031006 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.1,index++))
+ wave4.append(CreateSmokeEvent(< -1728, 3136, 1104 >, 120, index++))
+ wave4.append(CreateWaitForTimeEvent(0.8,index++))
+ wave4.append(CreateScorchTitanEvent(< 2665.340088 , 4456.500000 , 960.656006 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.8829956,index++))
+ wave4.append(CreateToneTitanEvent(< 3123.250000 , 4201.689941 , 954.281006 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.6000366,index++))
+ wave4.append(CreateToneTitanEvent(< 1324.160034 , 4820.189941 , 937.531006 >,< 0.000000 , -90.000000 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(1.0,index++))
+ wave4.append(CreateNukeTitanEvent(< 3144.659912 , 2935.629883 , 917.218994 >,< 0.000000 , 179.341003 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(1.2000122,index++))
+ wave4.append(CreateNukeTitanEvent(< 3739.129883 , 1985.719971 , 947.281006 >,< 0.000000 , 180.000000 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(1.5,index++))
+ wave4.append(CreateDroppodStalkerEvent(< 1087.839966 , 3863.840088 , 931.750000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(1.3499756,index++))
+ wave4.append(CreateDroppodStalkerEvent(< 908.750000 , 3093.629883 , 967.500000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(1.2999878,index++))
+ wave4.append(CreateDroppodStalkerEvent(< 3156.560059 , 2266.939941 , 951.781006 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(5.0,index++))
+ wave4.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave4.append(CreateDroppodStalkerEvent(< 1935.839966 , 3727.840088 , 931.656006 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.7000122,index++))
+ wave4.append(CreateDroppodStalkerEvent(< 2111.840088 , 3295.840088 , 939.031006 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.9830322,index++))
+ wave4.append(CreateDroppodStalkerEvent(< 1087.839966 , 3863.840088 , 931.750000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(3.5999756,index++))
+ wave4.append(CreateWarningEvent(FD_IncomingWarnings.MortarTitan,index++))
+ wave4.append(CreateMortarTitanEvent(< 2475.810059 , -3544.189941 , 810.218994 >,< 0.000000 , 90.000000 , 0.000000 >,index++))
+ wave4.append(CreateWaitForTimeEvent(0.5830078,index++))
+ wave4.append(CreateMortarTitanEvent(< 2821.340088 , -2936.719971 , 827.937988 >,< 0.000000 , 117.202003 , 0.000000 >,index++))
+ wave4.append(CreateWaitForTimeEvent(1.3499756,index++))
+ wave4.append(CreateScorchTitanEvent(< 2665.340088 , 4456.500000 , 960.656006 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(1.0670166,index++))
+ wave4.append(CreateScorchTitanEvent(< 3123.560059 , 4202.060059 , 954.343994 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(1.21698,index++))
+ wave4.append(CreateIonTitanEvent(< 1324.160034 , 4820.189941 , 937.531006 >,< 0.000000 , -90.000000 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.9160156,index++))
+ wave4.append(CreateIonTitanEvent(< 3144.159912 , 2935.530029 , 917.187988 >,< 0.000000 , 179.341003 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.684021,index++))
+ wave4.append(CreateNukeTitanEvent(< 3739.129883 , 1985.719971 , 947.281006 >,< 0.000000 , 180.000000 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.5999756,index++))
+ wave4.append(CreateNukeTitanEvent(< -31.906300 , 4688.660156 , 1027.660034 >,< 0.000000 , -90.000000 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(1.2659912,index++))
+ wave4.append(CreateNukeTitanEvent(< 1293.939941 , 1827.410034 , 1321.750000 >,< 0.000000 , 169.541000 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(1.5339966,index++))
+ wave4.append(CreateDroppodStalkerEvent(< 908.750000 , 3093.629883 , 967.500000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(1.3000488,index++))
+ wave4.append(CreateDroppodStalkerEvent(< 3156.560059 , 2266.939941 , 951.781006 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(5.0,index++))
+ wave4.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave4.append(CreateWarningEvent(FD_IncomingWarnings.Reaper,index++))
+ wave4.append(CreateSuperSpectreEvent(< 2355.209961 , 4472.799805 , 963.218994 >,< -0.000000 , 175.473007 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.5999756,index++))
+ wave4.append(CreateSuperSpectreEvent(< 2835.689941 , 4139.939941 , 939.281006 >,< 0.000000 , -171.078995 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(1.0170288,index++))
+ wave4.append(CreateSuperSpectreEvent(< 1014.690002 , 4844.540039 , 941.236023 >,< -0.000000 , 173.994995 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.6170044,index++))
+ wave4.append(CreateSuperSpectreEvent(< 2833.949951 , 2953.350098 , 910.458008 >,< -0.000000 , 178.046997 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.5830078,index++))
+ wave4.append(CreateSuperSpectreEvent(< 4164.439941 , 1471.750000 , 944.281006 >,< -0.000000 , -179.429001 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.117004395,index++))
+ wave4.append(CreateDroppodStalkerEvent(< 1935.839966 , 3727.840088 , 931.656006 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(1.0999756,index++))
+ wave4.append(CreateSuperSpectreEvent(< 4207.680176 , 894.888977 , 944.281006 >,< -0.000000 , -167.283005 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.21600342,index++))
+ wave4.append(CreateDroppodStalkerEvent(< 2111.840088 , 3295.840088 , 939.031006 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.9840088,index++))
+ wave4.append(CreateSuperSpectreEvent(< 3570.689941 , 1491.780029 , 944.281006 >,< 0.000000 , 169.761002 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.23297119,index++))
+ wave4.append(CreateDroppodStalkerEvent(< 1087.839966 , 3863.840088 , 931.750000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.3670044,index++))
+ wave4.append(CreateSuperSpectreEvent(< 3604.739990 , 835.104004 , 944.281006 >,< -0.000000 , -159.296997 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(5.0,index++))
+ wave4.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave4.append(CreateWarningEvent(FD_IncomingWarnings.ArcTitan,index++))
+ wave4.append(CreateArcTitanEvent(< 2665.469971 , 4456.529785 , 960.656006 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.1,index++))
+ wave4.append(CreateSmokeEvent(< -2596, 3224, 1104 >, 120, index++))
+ wave4.append(CreateSmokeEvent(< -3252, 3052, 1104 >, 120, index++))
+ wave4.append(CreateWaitForTimeEvent(0.2,index++))
+ wave4.append(CreateSmokeEvent(< -1728, 3136, 1104 >, 120, index++))
+ wave4.append(CreateWaitForTimeEvent(0.9199829,index++))
+ wave4.append(CreateArcTitanEvent(< 3123.659912 , 4202.089844 , 954.343994 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.6799927,index++))
+ wave4.append(CreateScorchTitanEvent(< 1324.060059 , 4820.660156 , 937.562988 >,< 0.000000 , -90.000000 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(1.2200317,index++))
+ wave4.append(CreateScorchTitanEvent(< 3144.659912 , 2935.629883 , 917.218994 >,< 0.000000 , 179.341003 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.90997314,index++))
+ wave4.append(CreateToneTitanEvent(< 3738.659912 , 1985.630005 , 947.281006 >,< 0.000000 , 180.000000 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.5700073,index++))
+ wave4.append(CreateToneTitanEvent(< -31.812500 , 4688.189941 , 1027.560059 >,< 0.000000 , -90.000000 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(1.4000244,index++))
+ wave4.append(CreateRoninTitanEvent(< 1294.030029 , 1827.339966 , 1321.719971 >,< 0.000000 , 169.541000 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.9299927,index++))
+ wave4.append(CreateRoninTitanEvent(< 4278.029785 , 1771.339966 , 947.281006 >,< 0.000000 , 169.541000 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.8899536,index++))
+ wave4.append(CreateToneSniperTitanEvent(< 4453.129883 , 964.750000 , 947.281006 >,< 0.000000 , -172.529007 , 0.000000 >,index++))
+ wave4.append(CreateWaitForTimeEvent(1.210083,index++))
+ wave4.append(CreateToneSniperTitanEvent(< 3866.659912 , 1445.630005 , 947.281006 >,< 0.000000 , 180.000000 , 0.000000 >,index++))
+ wave4.append(CreateWaitForTimeEvent(1.0,index++))
+ wave4.append(CreateCloakDroneEvent(< 4432.939941 , 1262.939941 , 1244.000000 >,< 0.000000 , 0.000000 , 0.000000 >,index++))
+ wave4.append(CreateWaitForTimeEvent(4.3898926,index++))
+ wave4.append(CreateSuperSpectreEvent(< 3878.439941 , 933.812988 , 944.281006 >,< -0.000000 , -79.509102 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(1.2000732,index++))
+ wave4.append(CreateSuperSpectreEvent(< 4008.780029 , 378.406006 , 944.281006 >,< 0.000000 , -120.498001 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.92993164,index++))
+ wave4.append(CreateSuperSpectreEvent(< 2916.810059 , 2679.780029 , 939.000000 >,< -0.000000 , -44.335999 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.5800781,index++))
+ wave4.append(CreateSuperSpectreEvent(< 545.906006 , 1309.910034 , 1438.750000 >,< 0.000000 , -166.860001 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(5.0,index++))
+ wave4.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave4.append(CreateWarningEvent(FD_IncomingWarnings.NukeTitan,index++))
+ wave4.append(CreateNukeTitanEvent(< 2665.340088 , 4456.500000 , 960.656006 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(1.0198975,index++))
+ wave4.append(CreateNukeTitanEvent(< 3123.560059 , 4202.060059 , 954.343994 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.9000244,index++))
+ wave4.append(CreateNukeTitanEvent(< 3144.659912 , 2935.629883 , 917.218994 >,< 0.000000 , 179.341003 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(1.5,index++))
+ wave4.append(CreateNukeTitanEvent(< 1324.060059 , 4820.660156 , 937.562988 >,< 0.000000 , -90.000000 , 0.000000 >,"",index++))
+ wave4.append(CreateWaitForTimeEvent(0.60998535,index++))
wave4.append(CreateNukeTitanEvent(< 3739.129883 , 1985.719971 , 947.281006 >,< 0.000000 , 180.000000 , 0.000000 >,"",0))
waveEvents.append(wave4)
+ index = 1
array<WaveEvent> wave5
- wave5.append(CreateDroppodTickEvent(< 864.625000 , 693.750000 , 1379.910034 >,4,"hillRouteClose",1))
- wave5.append(CreateWaitForTimeEvent(1.2000732,2))
- wave5.append(CreateDroppodTickEvent(< 884.625000 , 1721.750000 , 1377.410034 >,4,"hillRouteClose",3))
- wave5.append(CreateWaitForTimeEvent(0.79992676,4))
- wave5.append(CreateDroppodStalkerEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"",5))
- wave5.append(CreateWaitForTimeEvent(0.9400635,6))
- wave5.append(CreateDroppodStalkerEvent(< 1258.060059 , 921.593994 , 1330.750000 >,"",7))
- wave5.append(CreateWaitForTimeEvent(5.0,8))
- wave5.append(CreateWaitUntilAliveWeightedEvent(16,9))
- wave5.append(CreateSuperSpectreEvent(< 1094.089966 , 1330.660034 , 1354.969971 >,< -0.000000 , 157.544006 , 0.000000 >,"",10))
- wave5.append(CreateWaitForTimeEvent(0.7800293,11))
- wave5.append(CreateSuperSpectreEvent(< 857.406006 , 739.843994 , 1373.030029 >,< -0.000000 , 151.962997 , 0.000000 >,"",12))
- wave5.append(CreateWaitForTimeEvent(2.0700684,13))
- wave5.append(CreateSuperSpectreEvent(< 1048.969971 , 1660.810059 , 1349.089966 >,< 0.000000 , -100.986000 , 0.000000 >,"",14))
- wave5.append(CreateWaitForTimeEvent(1.2099609,15))
- wave5.append(CreateSuperSpectreEvent(< 2724.129883 , 2458.629883 , 946.155029 >,< -0.000000 , -127.245003 , 0.000000 >,"",16))
- wave5.append(CreateWaitForTimeEvent(5.0,17))
- wave5.append(CreateWaitUntilAliveWeightedEvent(16,18))
- wave5.append(CreateSuperSpectreEvent(< 1092.119995 , 1331.380005 , 1355.650024 >,< 0.000000 , 157.500000 , 0.000000 >,"",19))
- wave5.append(CreateWaitForTimeEvent(1.1699219,20))
- wave5.append(CreateSuperSpectreEvent(< 938.187988 , 707.406006 , 1362.939941 >,< -0.000000 , 153.720993 , 0.000000 >,"",21))
- wave5.append(CreateWaitForTimeEvent(2.710083,22))
- wave5.append(CreateDroppodStalkerEvent(< 1528.660034 , -1443.339966 , 816.031006 >,"",23))
- wave5.append(CreateWaitForTimeEvent(1.1199951,24))
- wave5.append(CreateDroppodStalkerEvent(< 1418.310059 , -2254.659912 , 810.031006 >,"",25))
- wave5.append(CreateWaitForTimeEvent(2.2999268,26))
- wave5.append(CreateToneTitanEvent(< 2475.810059 , -3544.189941 , 810.218994 >,< 0.000000 , 90.000000 , 0.000000 >,"",27))
- wave5.append(CreateWaitForTimeEvent(1.3000488,28))
- wave5.append(CreateToneTitanEvent(< 2821.340088 , -2936.719971 , 827.937988 >,< 0.000000 , 117.202003 , 0.000000 >,"",29))
- wave5.append(CreateWaitForTimeEvent(0.8000488,30))
- wave5.append(CreateSuperSpectreEvent(< 1511.339966 , -1445.229980 , 825.757996 >,< -0.000000 , 141.589996 , 0.000000 >,"",31))
- wave5.append(CreateWaitForTimeEvent(0.099975586,32))
- wave5.append(CreateScorchTitanEvent(< 1559.910034 , -2024.660034 , 803.031006 >,< 0.000000 , 90.000000 , 0.000000 >,"",33))
- wave5.append(CreateWaitForTimeEvent(0.57995605,34))
- wave5.append(CreateSuperSpectreEvent(< 2086.750000 , -1459.000000 , 810.750000 >,< -0.000000 , 143.964996 , 0.000000 >,"",35))
- wave5.append(CreateWaitForTimeEvent(0.6199951,36))
- wave5.append(CreateIonTitanEvent(< 2665.060059 , 4456.129883 , 960.687988 >,< 0.000000 , -141.108002 , 0.000000 >,"",37))
- wave5.append(CreateWaitForTimeEvent(0.8800049,38))
- wave5.append(CreateToneTitanEvent(< 3123.250000 , 4201.689941 , 954.281006 >,< 0.000000 , -141.108002 , 0.000000 >,"",39))
- wave5.append(CreateWaitForTimeEvent(1.3399658,40))
- wave5.append(CreateLegionTitanEvent(< 3144.659912 , 2935.629883 , 917.218994 >,< 0.000000 , 179.341003 , 0.000000 >,"",41))
- wave5.append(CreateWaitForTimeEvent(5.0,42))
- wave5.append(CreateWaitUntilAliveWeightedEvent(16,43))
- wave5.append(CreateDroppodStalkerEvent(< 2457.310059 , -2563.659912 , 789.250000 >,"",44))
- wave5.append(CreateWaitForTimeEvent(0.92004395,45))
- wave5.append(CreateDroppodStalkerEvent(< 1045.339966 , -2843.340088 , 804.812988 >,"",46))
- wave5.append(CreateWaitForTimeEvent(5.0,47))
- wave5.append(CreateWaitUntilAliveWeightedEvent(16,48))
- wave5.append(CreateIonTitanEvent(< 4466.220215 , 1469.410034 , 947.281006 >,< 0.000000 , 169.541000 , 0.000000 >,"",49))
- wave5.append(CreateWaitForTimeEvent(0.9499512,50))
- wave5.append(CreateIonTitanEvent(< 4453.129883 , 964.750000 , 947.281006 >,< 0.000000 , -172.529007 , 0.000000 >,"",51))
- wave5.append(CreateWaitForTimeEvent(0.17004395,52))
- wave5.append(CreateSuperSpectreEvent(< 1548.780029 , -1475.209961 , 805.556030 >,< -0.000000 , 141.876999 , 0.000000 >,"",53))
- wave5.append(CreateWaitForTimeEvent(1.5,54))
- wave5.append(CreateSuperSpectreEvent(< 2087.750000 , -1461.540039 , 810.366028 >,< -0.000000 , 143.395004 , 0.000000 >,"",55))
- wave5.append(CreateWaitForTimeEvent(3.9799805,56))
- wave5.append(CreateScorchTitanEvent(< 2475.909912 , -3544.659912 , 810.281006 >,< 0.000000 , 90.000000 , 0.000000 >,"",57))
- wave5.append(CreateWaitForTimeEvent(1.3399658,58))
- wave5.append(CreateToneTitanEvent(< 2821.340088 , -2936.719971 , 827.937988 >,< 0.000000 , 117.202003 , 0.000000 >,"",59))
- wave5.append(CreateWaitForTimeEvent(0.85998535,60))
- wave5.append(CreateIonTitanEvent(< 1817.380005 , -3585.909912 , 813.937988 >,< 0.000000 , 90.000000 , 0.000000 >,"",61))
- wave5.append(CreateWaitForTimeEvent(0.9400635,62))
- wave5.append(CreateDroppodStalkerEvent(< 1528.660034 , -1443.339966 , 816.031006 >,"",63))
- wave5.append(CreateWaitForTimeEvent(1.1099854,64))
- wave5.append(CreateDroppodStalkerEvent(< 1418.310059 , -2254.659912 , 810.031006 >,"",65))
- wave5.append(CreateWaitForTimeEvent(1.9899902,66))
- wave5.append(CreateScorchTitanEvent(< 1559.910034 , -2024.660034 , 803.031006 >,< 0.000000 , 90.000000 , 0.000000 >,"",67))
- wave5.append(CreateWaitForTimeEvent(0.8100586,68))
- wave5.append(CreateScorchTitanEvent(< 2411.909912 , -1108.660034 , 803.375000 >,< 0.000000 , 90.000000 , 0.000000 >,"",69))
- wave5.append(CreateWaitForTimeEvent(1.289917,70))
- wave5.append(CreateSuperSpectreEvent(< 1511.310059 , -1437.780029 , 826.656006 >,< -0.000000 , 142.382996 , 0.000000 >,"",71))
- wave5.append(CreateWaitForTimeEvent(0.710083,72))
- wave5.append(CreateSuperSpectreEvent(< 2129.800049 , -1492.459961 , 806.202026 >,< 0.000000 , 143.744995 , 0.000000 >,"",73))
- wave5.append(CreateWaitForTimeEvent(5.0,74))
- wave5.append(CreateWaitUntilAliveWeightedEvent(16,75))
- wave5.append(CreateToneTitanEvent(< 2665.060059 , 4456.129883 , 960.687988 >,< 0.000000 , -141.108002 , 0.000000 >,"",76))
- wave5.append(CreateWaitForTimeEvent(0.5600586,77))
- wave5.append(CreateToneTitanEvent(< 3123.250000 , 4201.689941 , 954.281006 >,< 0.000000 , -141.108002 , 0.000000 >,"",78))
- wave5.append(CreateWaitForTimeEvent(1.3199463,79))
- wave5.append(CreateMonarchTitanEvent(< 1324.160034 , 4820.189941 , 937.531006 >,< 0.000000 , -90.000000 , 0.000000 >,"",80))
- wave5.append(CreateWaitForTimeEvent(5.0,81))
- wave5.append(CreateWaitUntilAliveWeightedEvent(16,82))
- wave5.append(CreateSuperSpectreEvent(< 1511.160034 , -1437.079956 , 809.958008 >,< -0.000000 , 142.475998 , 0.000000 >,"",83))
- wave5.append(CreateWaitForTimeEvent(1.1899414,84))
- wave5.append(CreateSuperSpectreEvent(< 2091.909912 , -1464.430054 , 809.992981 >,< -0.000000 , 143.503998 , 0.000000 >,"",85))
- wave5.append(CreateWaitForTimeEvent(1.8800049,86))
- wave5.append(CreateDroppodStalkerEvent(< 1528.660034 , -1443.339966 , 816.031006 >,"",87))
- wave5.append(CreateWaitForTimeEvent(1.1500244,88))
- wave5.append(CreateDroppodStalkerEvent(< 1418.310059 , -2254.659912 , 810.031006 >,"",89))
- wave5.append(CreateWaitForTimeEvent(0.3499756,90))
- wave5.append(CreateSuperSpectreEvent(< 1452.199951 , -1794.530029 , 804.614990 >,< -0.000000 , 112.485001 , 0.000000 >,"",91))
- wave5.append(CreateWaitForTimeEvent(0.22998047,92))
- wave5.append(CreateDroppodStalkerEvent(< 896.656006 , -1227.339966 , 964.437988 >,"",93))
- wave5.append(CreateWaitForTimeEvent(0.8699951,94))
- wave5.append(CreateSuperSpectreEvent(< 2162.209961 , -1065.609985 , 806.807007 >,< -0.000000 , -174.283005 , 0.000000 >,"",95))
- wave5.append(CreateWaitForTimeEvent(0.11999512,96))
- wave5.append(CreateDroppodStalkerEvent(< 2457.310059 , -2563.659912 , 789.250000 >,"",97))
- wave5.append(CreateWaitForTimeEvent(5.0,98))
- wave5.append(CreateWaitUntilAliveWeightedEvent(16,99))
- wave5.append(CreateToneTitanEvent(< 2665.060059 , 4456.129883 , 960.687988 >,< 0.000000 , -141.108002 , 0.000000 >,"",100))
- wave5.append(CreateWaitForTimeEvent(0.5999756,101))
- wave5.append(CreateToneTitanEvent(< 3123.250000 , 4201.689941 , 954.281006 >,< 0.000000 , -141.108002 , 0.000000 >,"",102))
- wave5.append(CreateWaitForTimeEvent(0.60009766,103))
- wave5.append(CreateCloakDroneEvent(< 2674.979980 , 4322.020020 , 1283.979980 >,< 0.000000 , 0.000000 , 0.000000 >,104))
- wave5.append(CreateWaitForTimeEvent(5.0,105))
- wave5.append(CreateWaitUntilAliveWeightedEvent(16,106))
- wave5.append(CreateToneTitanEvent(< 2475.810059 , -3544.189941 , 810.218994 >,< 0.000000 , 90.000000 , 0.000000 >,"",107))
- wave5.append(CreateWaitForTimeEvent(1.2999268,108))
- wave5.append(CreateToneTitanEvent(< 2821.340088 , -2936.719971 , 827.937988 >,< 0.000000 , 117.202003 , 0.000000 >,"",109))
- wave5.append(CreateWaitForTimeEvent(0.70007324,110))
- wave5.append(CreateCloakDroneEvent(< 2363.000000 , -3327.010010 , 1235.989990 >,< 0.000000 , 0.000000 , 0.000000 >,111))
- wave5.append(CreateWaitForTimeEvent(6.0,112))
- wave5.append(CreateScorchTitanEvent(< 1763.910034 , -1608.660034 , 810.218994 >,< 0.000000 , 90.000000 , 0.000000 >,"",113))
- wave5.append(CreateWaitForTimeEvent(1.2999268,114))
- wave5.append(CreateScorchTitanEvent(< 2359.909912 , -1596.660034 , 802.718994 >,< 0.000000 , 90.000000 , 0.000000 >,"",115))
- wave5.append(CreateWaitForTimeEvent(1.4000244,116))
- wave5.append(CreateIonTitanEvent(< 1559.810059 , -2024.189941 , 803.031006 >,< 0.000000 , 90.000000 , 0.000000 >,"",117))
- wave5.append(CreateWaitForTimeEvent(0.6999512,118))
- wave5.append(CreateIonTitanEvent(< 2411.810059 , -1108.189941 , 803.375000 >,< 0.000000 , 90.000000 , 0.000000 >,"",119))
- wave5.append(CreateWaitForTimeEvent(5.0,120))
- wave5.append(CreateWaitUntilAliveWeightedEvent(16,121))
- wave5.append(CreateToneSniperTitanEvent(< 4466.220215 , 1469.410034 , 947.281006 >,< 0.000000 , 169.541000 , 0.000000 >,122))
- wave5.append(CreateWaitForTimeEvent(0.9000244,123))
- wave5.append(CreateToneSniperTitanEvent(< 4453.129883 , 964.750000 , 947.281006 >,< 0.000000 , -172.529007 , 0.000000 >,124))
- wave5.append(CreateWaitForTimeEvent(1.0999756,125))
- wave5.append(CreateArcTitanEvent(< 3867.219971 , 1445.689941 , 947.281006 >,< 0.000000 , 180.000000 , 0.000000 >,"",126))
- wave5.append(CreateWaitForTimeEvent(5.0,127))
- wave5.append(CreateWaitUntilAliveWeightedEvent(16,128))
- wave5.append(CreateNukeTitanEvent(< 2475.909912 , -3544.659912 , 810.281006 >,< 0.000000 , 90.000000 , 0.000000 >,"",129))
- wave5.append(CreateWaitForTimeEvent(1.2000732,130))
- wave5.append(CreateNukeTitanEvent(< 2665.340088 , 4456.500000 , 960.656006 >,< 0.000000 , -141.108002 , 0.000000 >,"",131))
- wave5.append(CreateWaitForTimeEvent(1.2999268,132))
- wave5.append(CreateNukeTitanEvent(< 2821.659912 , -2937.090088 , 827.937988 >,< 0.000000 , 117.202003 , 0.000000 >,"",133))
- wave5.append(CreateWaitForTimeEvent(0.8000488,134))
- wave5.append(CreateNukeTitanEvent(< 3123.560059 , 4202.060059 , 954.343994 >,< 0.000000 , -141.108002 , 0.000000 >,"",135))
- wave5.append(CreateWaitForTimeEvent(1.0999756,136))
- wave5.append(CreateNukeTitanEvent(< 1817.469971 , -3586.379883 , 814.062988 >,< 0.000000 , 90.000000 , 0.000000 >,"",137))
- wave5.append(CreateWaitForTimeEvent(0.6999512,138))
- wave5.append(CreateNukeTitanEvent(< 1324.060059 , 4820.660156 , 937.562988 >,< 0.000000 , -90.000000 , 0.000000 >,"",139))
- wave5.append(CreateWaitForTimeEvent(5.0,140))
- wave5.append(CreateWaitUntilAliveWeightedEvent(16,141))
- wave5.append(CreateToneTitanEvent(< 4466.220215 , 1469.410034 , 947.281006 >,< 0.000000 , 169.541000 , 0.000000 >,"",142))
- wave5.append(CreateWaitForTimeEvent(1.3000488,143))
- wave5.append(CreateToneTitanEvent(< 4453.129883 , 964.750000 , 947.281006 >,< 0.000000 , -172.529007 , 0.000000 >,"",144))
- wave5.append(CreateWaitForTimeEvent(1.3000488,145))
+ wave5.append(CreateSmokeEvent(< -12, 1720, 1540 >, 120, index++))
+ wave5.append(CreateWaitForTimeEvent(0.1,index++))
+ wave5.append(CreateSmokeEvent(< -64, 964, 1540 >, 120, index++))
+ wave5.append(CreateWaitForTimeEvent(0.3,index++))
+ wave5.append(CreateSmokeEvent(< -2264, -2096, 928 >, 120, index++))
+ wave5.append(CreateWaitForTimeEvent(0.3,index++))
+ wave5.append(CreateSmokeEvent(< -3132, -1904, 928 >, 120, index++))
+ wave5.append(CreateDroppodTickEvent(< 864.625000 , 693.750000 , 1379.910034 >,4,"hillRouteClose",index++))
+ wave5.append(CreateWaitForTimeEvent(0.1,index++))
+ wave5.append(CreateSmokeEvent(< -1548, -2240, 928 >, 120, index++))
+ wave5.append(CreateWaitForTimeEvent(0.1,index++))
+ wave5.append(CreateSmokeEvent(< -2596, 3224, 1104 >, 120, index++))
+ wave5.append(CreateWaitForTimeEvent(0.2,index++))
+ wave5.append(CreateSmokeEvent(< -3252, 3052, 1104 >, 120, index++))
+ wave5.append(CreateWaitForTimeEvent(0.3,index++))
+ wave5.append(CreateSmokeEvent(< -1728, 3136, 1104 >, 120, index++))
+ wave5.append(CreateWaitForTimeEvent(0.4,index++))
+ wave5.append(CreateDroppodTickEvent(< 884.625000 , 1721.750000 , 1377.410034 >,4,"hillRouteClose",index++))
+ wave5.append(CreateWaitForTimeEvent(0.79992676,index++))
+ wave5.append(CreateDroppodStalkerEvent(< 1226.410034 , 1391.130005 , 1334.689941 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.9400635,index++))
+ wave5.append(CreateDroppodStalkerEvent(< 1258.060059 , 921.593994 , 1330.750000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(5.0,index++))
+ wave5.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave5.append(CreateSuperSpectreEvent(< 1094.089966 , 1330.660034 , 1354.969971 >,< -0.000000 , 157.544006 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.7800293,index++))
+ wave5.append(CreateSuperSpectreEvent(< 857.406006 , 739.843994 , 1373.030029 >,< -0.000000 , 151.962997 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(2.0700684,index++))
+ wave5.append(CreateSuperSpectreEvent(< 1048.969971 , 1660.810059 , 1349.089966 >,< 0.000000 , -100.986000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.2099609,index++))
+ wave5.append(CreateSuperSpectreEvent(< 2724.129883 , 2458.629883 , 946.155029 >,< -0.000000 , -127.245003 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(5.0,index++))
+ wave5.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave5.append(CreateSuperSpectreEvent(< 1092.119995 , 1331.380005 , 1355.650024 >,< 0.000000 , 157.500000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.1699219,index++))
+ wave5.append(CreateSuperSpectreEvent(< 938.187988 , 707.406006 , 1362.939941 >,< -0.000000 , 153.720993 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(2.710083,index++))
+ wave5.append(CreateDroppodStalkerEvent(< 1528.660034 , -1443.339966 , 816.031006 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.1199951,index++))
+ wave5.append(CreateDroppodStalkerEvent(< 1418.310059 , -2254.659912 , 810.031006 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(2.2999268,index++))
+ wave5.append(CreateToneTitanEvent(< 2475.810059 , -3544.189941 , 810.218994 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.3000488,index++))
+ wave5.append(CreateToneTitanEvent(< 2821.340088 , -2936.719971 , 827.937988 >,< 0.000000 , 117.202003 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.8000488,index++))
+ wave5.append(CreateSuperSpectreEvent(< 1511.339966 , -1445.229980 , 825.757996 >,< -0.000000 , 141.589996 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.099975586,index++))
+ wave5.append(CreateScorchTitanEvent(< 1559.910034 , -2024.660034 , 803.031006 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.57995605,index++))
+ wave5.append(CreateSuperSpectreEvent(< 2086.750000 , -1459.000000 , 810.750000 >,< -0.000000 , 143.964996 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.6199951,index++))
+ wave5.append(CreateIonTitanEvent(< 2665.060059 , 4456.129883 , 960.687988 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.8800049,index++))
+ wave5.append(CreateToneTitanEvent(< 3123.250000 , 4201.689941 , 954.281006 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.3399658,index++))
+ wave5.append(CreateLegionTitanEvent(< 3144.659912 , 2935.629883 , 917.218994 >,< 0.000000 , 179.341003 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(5.0,index++))
+ wave5.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave5.append(CreateDroppodStalkerEvent(< 2457.310059 , -2563.659912 , 789.250000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.92004395,index++))
+ wave5.append(CreateDroppodStalkerEvent(< 1045.339966 , -2843.340088 , 804.812988 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(5.0,index++))
+ wave5.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave5.append(CreateIonTitanEvent(< 4466.220215 , 1469.410034 , 947.281006 >,< 0.000000 , 169.541000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.9499512,index++))
+ wave5.append(CreateIonTitanEvent(< 4453.129883 , 964.750000 , 947.281006 >,< 0.000000 , -172.529007 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.17004395,index++))
+ wave5.append(CreateSuperSpectreEvent(< 1548.780029 , -1475.209961 , 805.556030 >,< -0.000000 , 141.876999 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.5,index++))
+ wave5.append(CreateSuperSpectreEvent(< 2087.750000 , -1461.540039 , 810.366028 >,< -0.000000 , 143.395004 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(3.9799805,index++))
+ wave5.append(CreateScorchTitanEvent(< 2475.909912 , -3544.659912 , 810.281006 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.3399658,index++))
+ wave5.append(CreateToneTitanEvent(< 2821.340088 , -2936.719971 , 827.937988 >,< 0.000000 , 117.202003 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.85998535,index++))
+ wave5.append(CreateIonTitanEvent(< 1817.380005 , -3585.909912 , 813.937988 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.9400635,index++))
+ wave5.append(CreateDroppodStalkerEvent(< 1528.660034 , -1443.339966 , 816.031006 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.1099854,index++))
+ wave5.append(CreateDroppodStalkerEvent(< 1418.310059 , -2254.659912 , 810.031006 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.9899902,index++))
+ wave5.append(CreateScorchTitanEvent(< 1559.910034 , -2024.660034 , 803.031006 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.8100586,index++))
+ wave5.append(CreateScorchTitanEvent(< 2411.909912 , -1108.660034 , 803.375000 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.289917,index++))
+ wave5.append(CreateSuperSpectreEvent(< 1511.310059 , -1437.780029 , 826.656006 >,< -0.000000 , 142.382996 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.710083,index++))
+ wave5.append(CreateSuperSpectreEvent(< 2129.800049 , -1492.459961 , 806.202026 >,< 0.000000 , 143.744995 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(5.0,index++))
+ wave5.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave5.append(CreateToneTitanEvent(< 2665.060059 , 4456.129883 , 960.687988 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.5600586,index++))
+ wave5.append(CreateToneTitanEvent(< 3123.250000 , 4201.689941 , 954.281006 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.3199463,index++))
+ wave5.append(CreateMonarchTitanEvent(< 1324.160034 , 4820.189941 , 937.531006 >,< 0.000000 , -90.000000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(5.0,index++))
+ wave5.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave5.append(CreateSuperSpectreEvent(< 1511.160034 , -1437.079956 , 809.958008 >,< -0.000000 , 142.475998 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.1899414,index++))
+ wave5.append(CreateSuperSpectreEvent(< 2091.909912 , -1464.430054 , 809.992981 >,< -0.000000 , 143.503998 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.8800049,index++))
+ wave5.append(CreateDroppodStalkerEvent(< 1528.660034 , -1443.339966 , 816.031006 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.1500244,index++))
+ wave5.append(CreateDroppodStalkerEvent(< 1418.310059 , -2254.659912 , 810.031006 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.3499756,index++))
+ wave5.append(CreateSuperSpectreEvent(< 1452.199951 , -1794.530029 , 804.614990 >,< -0.000000 , 112.485001 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.22998047,index++))
+ wave5.append(CreateDroppodStalkerEvent(< 896.656006 , -1227.339966 , 964.437988 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.8699951,index++))
+ wave5.append(CreateSuperSpectreEvent(< 2162.209961 , -1065.609985 , 806.807007 >,< -0.000000 , -174.283005 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.11999512,index++))
+ wave5.append(CreateDroppodStalkerEvent(< 2457.310059 , -2563.659912 , 789.250000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(5.0,index++))
+ wave5.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave5.append(CreateToneTitanEvent(< 2665.060059 , 4456.129883 , 960.687988 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.5999756,index++))
+ wave5.append(CreateToneTitanEvent(< 3123.250000 , 4201.689941 , 954.281006 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.60009766,index++))
+ wave5.append(CreateCloakDroneEvent(< 2674.979980 , 4322.020020 , 1283.979980 >,< 0.000000 , 0.000000 , 0.000000 >,index++))
+ wave5.append(CreateWaitForTimeEvent(5.0,index++))
+ wave5.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave5.append(CreateToneTitanEvent(< 2475.810059 , -3544.189941 , 810.218994 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.2999268,index++))
+ wave5.append(CreateToneTitanEvent(< 2821.340088 , -2936.719971 , 827.937988 >,< 0.000000 , 117.202003 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.70007324,index++))
+ wave5.append(CreateCloakDroneEvent(< 2363.000000 , -3327.010010 , 1235.989990 >,< 0.000000 , 0.000000 , 0.000000 >,index++))
+ wave5.append(CreateWaitForTimeEvent(6.0,index++))
+ wave5.append(CreateScorchTitanEvent(< 1763.910034 , -1608.660034 , 810.218994 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.2999268,index++))
+ wave5.append(CreateScorchTitanEvent(< 2359.909912 , -1596.660034 , 802.718994 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.4000244,index++))
+ wave5.append(CreateIonTitanEvent(< 1559.810059 , -2024.189941 , 803.031006 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.6999512,index++))
+ wave5.append(CreateIonTitanEvent(< 2411.810059 , -1108.189941 , 803.375000 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(5.0,index++))
+ wave5.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave5.append(CreateToneSniperTitanEvent(< 4466.220215 , 1469.410034 , 947.281006 >,< 0.000000 , 169.541000 , 0.000000 >,index++))
+ wave5.append(CreateWaitForTimeEvent(0.9000244,index++))
+ wave5.append(CreateToneSniperTitanEvent(< 4453.129883 , 964.750000 , 947.281006 >,< 0.000000 , -172.529007 , 0.000000 >,index++))
+ wave5.append(CreateWaitForTimeEvent(1.0999756,index++))
+ wave5.append(CreateArcTitanEvent(< 3867.219971 , 1445.689941 , 947.281006 >,< 0.000000 , 180.000000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(5.0,index++))
+ wave5.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave5.append(CreateNukeTitanEvent(< 2475.909912 , -3544.659912 , 810.281006 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.2000732,index++))
+ wave5.append(CreateNukeTitanEvent(< 2665.340088 , 4456.500000 , 960.656006 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.2999268,index++))
+ wave5.append(CreateNukeTitanEvent(< 2821.659912 , -2937.090088 , 827.937988 >,< 0.000000 , 117.202003 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.8000488,index++))
+ wave5.append(CreateNukeTitanEvent(< 3123.560059 , 4202.060059 , 954.343994 >,< 0.000000 , -141.108002 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.0999756,index++))
+ wave5.append(CreateNukeTitanEvent(< 1817.469971 , -3586.379883 , 814.062988 >,< 0.000000 , 90.000000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(0.6999512,index++))
+ wave5.append(CreateNukeTitanEvent(< 1324.060059 , 4820.660156 , 937.562988 >,< 0.000000 , -90.000000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(5.0,index++))
+ wave5.append(CreateWaitUntilAliveWeightedEvent(16,index++))
+ wave5.append(CreateToneTitanEvent(< 4466.220215 , 1469.410034 , 947.281006 >,< 0.000000 , 169.541000 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.3000488,index++))
+ wave5.append(CreateToneTitanEvent(< 4453.129883 , 964.750000 , 947.281006 >,< 0.000000 , -172.529007 , 0.000000 >,"",index++))
+ wave5.append(CreateWaitForTimeEvent(1.3000488,index++))
wave5.append(CreateScorchTitanEvent(< 3867.129883 , 1445.719971 , 947.281006 >,< 0.000000 , 180.000000 , 0.000000 >,"",0))
waveEvents.append(wave5)