Hello,
I want server start .bat for my altis life server, but it doesn't work even though I set it. Can anyone help me in this position?
Schön, dass du den Weg zu NodeZone.net gefunden hast! Aktuell bist du nicht angemeldet und kannst deshalb nur eingeschränkt auf unsere Community zugreifen. Um alle Funktionen freizuschalten, spannende Inhalte zu entdecken und dich aktiv einzubringen, registriere dich jetzt kostenlos oder melde dich mit deinem Account an.
Hello,
I want server start .bat for my altis life server, but it doesn't work even though I set it. Can anyone help me in this position?
Sooo you could kill the server process and restart it after or use BEC OR the way i would recommend is to use Firedaemon Pro.
You can try it for 30day and buy it afterwards if you like it.
https://www.firedaemon.com/products
taskkill /IM "arma3server.exe" /F
Sooo you could kill the server process and restart it after or use BEC OR the way i would recommend is to use Firedaemon Pro.
You can try it for 30day and buy it afterwards if you like it.
https://www.firedaemon.com/products
taskkill /IM "arma3server.exe" /F
@echo off
chdir /c "C:\Arma3\A3Server"
COLOR 0B
TITLE Altis Auto Server Restart
SETLOCAL EnableExtensions enabledelayedexpansion
set EXE=arma3server_x64.exe
timeout 1
goto CheckServerRunning
timeout 1
:CheckServerRunning
echo "Arma 3.exe Status under review..."
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %EXE%"') DO IF %%x == %EXE% goto KillRestartServer
goto StartArma3Server
timeout 1
:StartArma3Server
echo "Starting the server..."
start C:\Arma3\A3Server\arma3server_x64.exe -port=2302 -servermod=@life_server;@extDB3;@infiSTAR_A3 -config=C:\Arma3\A3Server\config\server.cfg -cfg=C:\Arma3\A3Server\config\basic.cfg -bepath=C:\Arma3\A3Server\battleye -profiles=C:\Arma3\A3Server\Default -name=default -autoinit+
exit
timeout 1
:KillRestartServer
echo "Starting the server..."
timeout 1 >nul
taskkill /F /IM %EXE% >nul
timeout 5 >nul
cls
goto StartArma3Server
Alles anzeigen
It seems to be working fine, but the server is not showing up at all.
Well,
In the past where i was hosting my own Life Server i used this :
https://github.com/Kuchenplatte/GoRcon
Did you allow the .exe in your Firewall ?