Initial commit

This commit is contained in:
Ambroise Garel
2025-07-22 10:22:50 +02:00
parent 16f53c8a47
commit edb28205cd
422 changed files with 17001 additions and 2 deletions
+25
View File
@@ -0,0 +1,25 @@
@echo off
cls
@REM -------------------------------------------
@REM DELETE PREVIOUSLY GENERATED MISSIONS
@REM -------------------------------------------
if exist *.miz del *.miz
@REM -------------------------------------------
@REM CREATE SCENARIOS
@REM -------------------------------------------
c:\php\php Make.php
echo.
@REM -------------------------------------------
@REM COPY OUTPUT MIZ FILES TO DCS'S MISSIONS DIRECTORY
@REM -------------------------------------------
if not exist "%userprofile%\Saved Games\DCS\Missions\" goto EOF
if not exist *.miz goto EOF
echo Copying output MIZ files to %userprofile%\Saved Games\DCS\Missions...
copy /y *.miz "%userprofile%\Saved Games\DCS\Missions"
echo DONE
echo.
:EOF