Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- :MENU
- ECHO ...............................................
- ECHO Select Aircraft
- ECHO ...............................................
- ECHO.
- ECHO 1 - 737-600
- ECHO 2 - 737-700
- ECHO 3 - 737-800
- ECHO 4 - EXIT
- ECHO ...............................................
- SET /P M=Type 1, 2, 3, or 4 then press ENTER:
- ECHO ...............................................
- ECHO
- ECHO "Starting SIM..."
- start "" "D:\Lockheed Martin\Prepar3D v3\Prepar3D.exe"
- echo "Starting ADDONS..."
- start "" "D:\Nedlastinger\FSX . P3D\FSXWX.exe"
- start "" "D:\Nedlastinger\FSX . P3D\projectFLY.exe"
- timeout 2 > NUL
- nircmd win activate process cmd.exe
- echo "Addons started!"
- echo "Waiting for FSUIPC/Simconnect..."
- timeout 6 > NUL
- echo "ProjectFLY..."
- nircmd win activate process projectFLY.exe
- timeout 1 > NUL
- nircmd setcursor 967 572
- nircmd sendmouse left click
- echo "FSXWX..."
- nircmd win activate process cmd.exe
- timeout 1 > NUL
- nircmd win activate process FSXWX.exe
- nircmd sendkeypress spc
- timeout 1 > NUL
- nircmd win activate process cmd.exe
- timeout 1 > NUL
- nircmd win activate process Prepar3D.exe
- timeout 1 > NUL
- nircmd setcursor 711 486
- nircmd sendmouse left click
- nircmd setcursor 1212 240
- nircmd sendmouse left click
- IF %M%==1 GOTO 600
- IF %M%==2 GOTO 700
- IF %M%==3 GOTO 800
- IF %M%==4 GOTO EOF
- timeout 1 > NUL
- :600
- nircmd setcursor 656 346
- timeout 1 > NUL
- nircmd sendmouse left click
- GOTO after
- :700
- nircmd setcursor 656 362
- timeout 1 > NUL
- nircmd sendmouse left click
- GOTO after
- :800
- nircmd setcursor 656 383
- timeout 1 > NUL
- nircmd sendmouse left click
- GOTO after
- :after
- timeout 1 > NUL
- nircmd setcursor 1392 892
- nircmd sendmouse left click
- timeout 1 > NUL
- nircmd setcursor 1107 500
- nircmd sendmouse left click
- timeout 1 > NUL
- nircmd setcursor 1036 264
- nircmd sendmouse left click
- echo "All done!"
- :EOF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement