This repository has been archived by the owner on Nov 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Batch files
Tarasa24 edited this page Nov 30, 2019
·
1 revision
Batch files (.bat) included in the root directory of your installation are used for launching game of your choice together with SCS_RPC. If for whatever reason have those files not been generated (you have filled out your game paths in the installer incorrectly, or not at all) here is a format that can be used for creating one manually.
@echo off
<Game path drive letter>:
cd "<Path to the game of your choice, pointing to the /bin/win_x??/ directory>
start <eurotrucks2.exe or amtrucks.exe>
<SCS_RPC drive letter>:
cd "<SCS_RPC installation path>"
start SCS_RPC.exe
Here are two examples of two batch files for running ETS2 with SCS_RPC
and ATS with SCS_RPC
respectively.
@echo off
X:
cd "X:\Steam\steamapps\common\Euro Truck Simulator 2/bin/win_x64/"
start eurotrucks2.exe
C:
cd "C:\Users\Tarasa24\AppData\Local\Programs\SCS_RPC\0.2"
start SCS_RPC.exe
@echo off
X:
cd "X:\Steam\steamapps\common\American Truck Simulator/bin/win_x64/"
start amtrucks.exe
C:
cd "C:\Users\Tarasa24\AppData\Local\Programs\SCS_RPC\0.2"
start SCS_RPC.exe