Tutorial for ME3 Launcher Batch Program. A tutorial on how to make your own custom launcher program from a batch file.
Primarily done to benefit Mass Effect 3 owners.
Instructions:
Copy and paste code from below into notepad. Save as a *.bat file, where * is your filename. Replace any necessary lines in the code with the correct ones for your system as described in the video (or if you know how to do it yourself, go right ahead). Double click to run it. Enjoy!
Feel free to modify it yourself.
Code:
@echo off
title ME3Launcher
:start
echo Mass Effect 3 Launcher
echo.
echo Now with added Mods!
echo.
echo Un/Mod and Launch:
echo 1. Unmodded ME3
echo 3. ME3 and Mods
echo.
echo Un/Mod (no launch):
echo 4. Unmod Coalesced
echo 6. Mod Coalesced
echo.
echo 8. Just Launch
echo.
echo Misc:
echo K. Kill process (ME3)
echo kO. Kill Origin
echo.
echo O. Launch Origin
echo f. Launch Fraps
echo d. Launch Dxtory
echo 0. Quit Batch
echo.
@cd c:\Program Files (x86)\Electronic Arts\Mass Effect 3\BioGame\CookedPCConsole\
set /p choice="Enter your selection: "
if %choice%==1 goto NoMods
if %choice%==3 goto WithMods
if %choice%==4 goto NoMods
if %choice%==K goto KillME3
if %choice%==6 goto WithMods
if %choice%==8 goto LaunchME3
if %choice%==f goto Fraps
if %choice%==d goto Dxtory
if %choice%==O goto StartOrigin
if %choice%==kO goto KillOrigin
if %choice%==0 exit
echo Invalid choice: %choice%
echo.
pause
cls
goto start
:StartOrigin
@cd c:\Program Files (x86)\Origin\
start Origin.exe
cls
goto start
:KillOrigin
taskkill /F /IM Origin.exe
cls
goto start
:KillME3
taskkill /F /IM MassEffect3.exe
cls
goto start
:Fraps
@cd c:\Fraps\
start fraps.exe
cls
goto start
:Dxtory
@cd c:\Program Files (x86)\Dxtory Software\Dxtory2.0\
start Dxtory.exe
cls
goto start
:NoMods
@copy /y CoalescedOriginal.bin Coalesced.bin
if %choice%==1 goto LaunchME3
echo Overwrite Successful!
echo.
pause
cls
goto start
:WithMods
@copy /y CoalescedModded2.bin Coalesced.bin
if %choice%==3 goto LaunchME3
echo Overwrite Successful!
echo.
pause
cls
goto start
:LaunchME3
@cd c:\Program Files (x86)\Electronic ARts\Mass Effect 3\Binaries\Win32\
start MassEffect3.exe
cls
@cd c:\Users\Nick\Desktop\
start /min ME3Launcher.bat
exit
Tags: Tutorial for ME3 Launcher Batch Program, tutorial, software tutorial, batch program, batch file, Mass Effect 3 Launcher, Custom program launcher