18 lines
752 B
Batchfile
18 lines
752 B
Batchfile
@echo off
|
|
rem ============================================================================
|
|
rem play-mr.bat - drag-and-drop launcher for MW4 mission-review (.mr) replay.
|
|
rem Drop a .mr file onto this .bat, or run: play-mr.bat "C:\path\match.mr"
|
|
rem
|
|
rem EDIT THIS to your game install folder (the one containing MW4.exe):
|
|
set "GAMEDIR=C:\VWE\firestorm\MW4"
|
|
rem ============================================================================
|
|
if "%~1"=="" (
|
|
echo Usage: drag a .mr file onto this file, or: play-mr.bat "path\to\match.mr"
|
|
pause
|
|
exit /b 1
|
|
)
|
|
powershell -ExecutionPolicy Bypass -File "%~dp0play-mr.ps1" -MrFile "%~1" -GameDir "%GAMEDIR%"
|
|
echo.
|
|
echo In the game: Main Menu -^> INSTANT ACTION -^> Launch to start the replay.
|
|
pause
|