Complete disaster-recovery snapshot: engine/game source, game data assets, VC6 toolchain + DX SDKs, build outputs, deployed game, and _UNUSED archive. Large binaries in Git LFS; text preserved byte-for-byte (core.autocrlf=false, no eol attributes). See RECOVERY.md for the one-clone rebuild procedure.
18 lines
742 B
Batchfile
18 lines
742 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\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
|