You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
553 B
13 lines
553 B
#!/bin/bash
|
|
export templdpath=$LD_LIBRARY_PATH
|
|
export LD_LIBRARY_PATH=./linux64:$LD_LIBRARY_PATH
|
|
export SteamAppID=892970
|
|
|
|
GAMENAME="Pitrisskovo Hall of Lame"
|
|
BASEDIR="/hdd/data/steamcmd/vallheim/"
|
|
|
|
echo "Starting server..."
|
|
./valheim_server.x86_64 -name "$GAMENAME" -port 2456 -nographics -batchmode -world "GAMENAME" -password "<PASSWD>" -public 1 -crossplay -savedir $BASEDIR/savedir -logFile $BASEDIR/logs/valheim.log -backups 8 -modifier raids none -modifier DeathPenalty casual -modifier Combat veryeasy
|
|
export LD_LIBRARY_PATH=$templdpath
|
|
|