15 lines
531 B
Batchfile
15 lines
531 B
Batchfile
@echo off
|
|
|
|
:: Either put the batch in the Advanced Warfare install dir, or change the value below to the Advanced Warfare install dir
|
|
set AW_INSTALL=%~dp0
|
|
|
|
:: Remove this line if automatic updates on start should be disabled
|
|
start /W alterware-launcher.exe --update
|
|
|
|
::///////////////////////////////////////////////////////////////////////
|
|
:://You're done!! WARNING!!! Don't mess with anything below this line //
|
|
::///////////////////////////////////////////////////////////////////////
|
|
|
|
set GAME_EXE=s1-mod.exe
|
|
start %GAME_EXE%
|