Skip to content

Instantly share code, notes, and snippets.

@BNTFryingPan
Created September 3, 2020 13:23
Show Gist options
  • Save BNTFryingPan/e335632e21739bfcc8e383d62f3c7975 to your computer and use it in GitHub Desktop.
Save BNTFryingPan/e335632e21739bfcc8e383d62f3c7975 to your computer and use it in GitHub Desktop.
Batch script to launch Bakkes Mod and Rocket League on steam at the same time
To use, put both the batch script and the Bakkes Mod executable in {steamgamesdir}/rocketleague/Binaries
you can make a shortcut of the bat file on your desktop or whatever
might work on epic games launcher if you change line 12 to whatever epic needs
@echo off
tasklist /nh /fi "imagename eq BakkesMod.exe" | find /i "BakkesMod.exe" >nul && (
echo BM is running
) || (
echo BM is not running
start ./BakkesMod.exe
)
tasklist /nh /fi "imagename eq RocketLeague.exe" | find /i "RocketLeague.exe" >nul && (
echo RL is running
) || (
echo RL is not running
start steam://rungameid/252950
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment