mirror of
https://github.com/FlightControl-Master/MOOSE_MISSIONS.git
synced 2025-08-15 10:37:46 +00:00
12 lines
438 B
Lua
12 lines
438 B
Lua
---
|
|
-- Tests Gudauta
|
|
-- --------------
|
|
-- Limited and scheduled spawning of groups, with RandomizeTemplate ...
|
|
|
|
Templates = { "Template1", "Template2", "Template3", "Template4" }
|
|
|
|
Spawn_Ground1 = SPAWN:New( "Spawn Vehicle1" ):InitLimit( 4, 20 ):InitRandomizeTemplate(Templates):SpawnScheduled( 15, 0 )
|
|
Spawn_Ground2 = SPAWN:New( "Spawn Vehicle2" ):InitLimit( 4, 20 ):InitRandomizeTemplate(Templates):SpawnScheduled( 15, 0 )
|
|
|
|
|