Last step of bid folder restructure

This commit is contained in:
kaltokri
2024-01-01 23:44:44 +01:00
parent f31942aef3
commit f15138294b
330 changed files with 7000 additions and 7051 deletions

View File

@@ -0,0 +1,9 @@
SPA-017 - The Mission was not working. I have done it again! Now its working.
SPA-018 - Changed the code and the units into MAP. Checked and it is working.
SPA-019 - Note by ZERO (15/12/2020): the vehicles are spawned upon each other
SPA-021 - Changed the code for spawn 20 units. it was not working like described
SPA-022 - Changed the description of the mission
SPA-024 - Changed the description of the mission
SPA-100 - is not working. the function initclean() is not working
SPA-110 - Its working but its good to rework
SPA-140 - Doesnt work

View File

@@ -0,0 +1,28 @@
---
-- Name: SPA-021 - Ground Ops - Scheduled Spawns Limited Keep Unit Names
-- Author: FlightControl
-- Date Created: 14 Mar 2017
-- Checked in 15 dez 2020 by ZERO
--
-- # Situation:
--
-- At Gudauta spawn multiple ground vehicles, in a scheduled fashion.
--
-- # Test cases:
--
-- 1. Observe that the ground vehicles are spawned at the position declared within the mission editor.
-- 2. The vehicles should spawn according the scheduler parameters.
-- 3. There should not be more than 5 groups spawned. (Number of units is 5 groups x 4 units in group = 20 that is a unit limits in :initLimit function in this implementation (:InitLimit( 20 , 10 )))
-- 4. Observe the unit names, they should have the name as defined within the ME.
-- Tests Gudauta
-- -------------
Spawn_Vehicle_1 = SPAWN
:New( "Spawn Vehicle 1" )
:InitKeepUnitNames()
:InitLimit( 20 , 10 )
:SpawnScheduled( 5, .5 )