mirror of
https://github.com/FlightControl-Master/MOOSE_MISSIONS.git
synced 2026-08-23 12:09:37 +00:00
Small error correction
This commit is contained in:
@@ -10,13 +10,13 @@
|
|||||||
-- Load and fly over 5 ammunition crates to the trucks waiting at the farm at waypoint 1.
|
-- Load and fly over 5 ammunition crates to the trucks waiting at the farm at waypoint 1.
|
||||||
-- Once dropped, the trucks will drive to the artillery, so Kobuleti can be shelled!
|
-- Once dropped, the trucks will drive to the artillery, so Kobuleti can be shelled!
|
||||||
-------------------------------------------------------------------------
|
-------------------------------------------------------------------------
|
||||||
-- Date: 23 June 2021
|
-- Date: 24 September 2021
|
||||||
-------------------------------------------------------------------------
|
-------------------------------------------------------------------------
|
||||||
|
|
||||||
-- Set up CTLD
|
-- Set up CTLD
|
||||||
local myctld = CTLD:New(coalition.side.BLUE,{"Player"},"LtRg II")
|
local myctld = CTLD:New(coalition.side.BLUE,{"Player"},"LtRg II")
|
||||||
myctld.allowcratepickupagain = false
|
myctld.allowcratepickupagain = false
|
||||||
myctld.dropcratesanywhere = false
|
myctld.dropcratesanywhere = false -- we only need to ammo crates to be dropped in one place
|
||||||
myctld.forcehoverload = false
|
myctld.forcehoverload = false
|
||||||
myctld.smokedistance = UTILS.NMToMeters(3)
|
myctld.smokedistance = UTILS.NMToMeters(3)
|
||||||
myctld.verbose = 2
|
myctld.verbose = 2
|
||||||
@@ -26,7 +26,7 @@ myctld:__Start(5)
|
|||||||
myctld:AddCTLDZone("PickupZone",CTLD.CargoZoneType.LOAD,SMOKECOLOR.Blue,true,true)
|
myctld:AddCTLDZone("PickupZone",CTLD.CargoZoneType.LOAD,SMOKECOLOR.Blue,true,true)
|
||||||
|
|
||||||
-- define a drop zone
|
-- define a drop zone
|
||||||
myctld:AddCTLDZone("DropZone",CTLD.CargoZoneType.LOAD,SMOKECOLOR.Red,true,true)
|
myctld:AddCTLDZone("DropZone",CTLD.CargoZoneType.DROP,SMOKECOLOR.Red,true,true)
|
||||||
|
|
||||||
-- define statics cargo
|
-- define statics cargo
|
||||||
myctld:AddStaticsCargo("Ammunition",50,25) -- ammuntion weight 50kg ;) stock 25 pc
|
myctld:AddStaticsCargo("Ammunition",50,25) -- ammuntion weight 50kg ;) stock 25 pc
|
||||||
|
|||||||
Reference in New Issue
Block a user