Merge pull request #21 from FlightControl-Master/Applevangelist-AICSR-1

Add files via upload
This commit is contained in:
Applevangelist 2022-01-01 14:52:06 +01:00 committed by GitHub
commit 21d460436e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,17 @@
-------------------------------------------------------------------------
-- CSR-001 - Basics - Basic Demo
-------------------------------------------------------------------------
-- Documentation
--
-- AICSAR: https://flightcontrol-master.github.io/MOOSE_DOCS_DEVELOP/Documentation/Functional.AICSAR.html
--
-------------------------------------------------------------------------
-- Grab a flight and eject from the plane once the mission was loaded.
-- Follow your parachuting pilot. Once landing, a helicopter will launch
-- to pick you up and fly you to the MASH.
-------------------------------------------------------------------------
-- Date: Jan 2022
-------------------------------------------------------------------------
local my_aicsar=AICSAR:New("Luftrettung",coalition.side.BLUE,"Downed Pilot","Rescue Helo",AIRBASE:FindByName("Test FARP"),ZONE:New("MASH"))

Binary file not shown.

10
CSR-001 - Basics/pack.ps1 Normal file
View File

@ -0,0 +1,10 @@
$dir = split-path -parent $MyInvocation.MyCommand.Definition
cd $dir
$file = Split-Path $dir -leaf
$dir
$file
cd "_unpacked"
. 7z a -r -y -tzip "..\$file.miz" *
cd ..

View File

@ -0,0 +1,7 @@
$dir = split-path -parent $MyInvocation.MyCommand.Definition
cd $dir
$file = Split-Path $dir -leaf
Remove-Item .\_unpacked -Force -Recurse
md "_unpacked"
cd "_unpacked"
. 7z x -r -y "..\$file.miz" *