use steamcmd to download/install the serverfiles...
i use it for almost every server i host on my machine which is running on steam...
for making it simple i use this script
- Code: Select all
@echo off
SETLOCAL ENABLEDELAYEDEXPANSION
:: DEFINE the following variables where applicable to your install
SET STEAMLOGIN=yoursteamloginname yoursteampassword
SET BRANCH=320850
:: For stable use 320850
:: Note, the missing qotation marks, these need to be wrapped around the entire "+app_data......"
SET Path=c:\Gameserver\LifeIsFeudal
SET STEAMPATH=C:\Gameserver\steamcmd_win32
:: _________________________________________________________
echo.
echo You are about to update Life is Feudal: your own
echo Dir: %Path%
echo Branch: %BRANCH%
echo.
echo Key "ENTER" to procede
pause
%STEAMPATH%\steamcmd.exe +login %STEAMLOGIN% +force_install_dir %Path% +"app_update %BRANCH%" validate +quit
echo .
echo Life is Feudal: your own is now up to date
echo key "ENTER" to exit
pause
you need to edit and adjust your paths where you have located your steamcmd and where you want to install the files etc...