18 lines
723 B
Batchfile
18 lines
723 B
Batchfile
|
@echo off
|
||
|
|
||
|
SET ARMA=f:\Arma3\Arma3_Server
|
||
|
color 0a
|
||
|
title Exile Monitor
|
||
|
:Serverstart
|
||
|
echo Launching Server
|
||
|
F:
|
||
|
cd %ARMA%
|
||
|
echo Exile Server Monitor... Active !
|
||
|
start "Arma3" arma3server_SC.exe "-mod=@exile;Kart;Mark;Heli;" "-servermod=@exileserver;@asm;@marma;" -config=%ARMA%\@ExileServer\config.cfg -port=2302 -profiles=SC -cfg=%ARMA%\@ExileServer\basic.cfg -name=SC -autoinit -Loadmissiontomemory -hugepages
|
||
|
REM start "Arma3_HC" arma3server_HC.exe -client -connect=127.0.0.1 -password=joejer "-mod=@exile;Kart;Mark;Heli;@A3XAI_HC;@asm;" -profiles=HC -name=HC -hugepages
|
||
|
|
||
|
REM ping 127.0.0.1 -n 15 >NUL
|
||
|
REM echo Exile Server Shutdown ... Restarting!
|
||
|
REM ping 127.0.0.1 -n 5 >NUL
|
||
|
REM cls
|
||
|
REM goto Serverstart
|