Egg Repository

Pterodactyl Community Egg Repository

Holdfast NaW

Holdfast: Nations at War

Read Me

What is Holdfast: Nations At War

Fight on multiple fronts in Holdfast: Nations At War - A competitive multiplayer first and third person shooter set during the great Napoleonic Era. Charge into battle with over 150 players per server!

Holdfast: NaW

image

Server Ports

These are the servers required ports

Port default
Game 20100
Query 27000
Communications 8700
Yolks
NameTag
bmghosting/pterodactyl-holdfastbmghosting/pterodactyl-holdfast
Variables
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
Config NameTells the server which config to load in the configs folder. Put .txt at the end of the config name or else the server will not launch.SERVER_CONFIG_PATHserverconfig_default.txtYesYes
Server NameServer name that shows up on the server browser.SERVER_NAMEServer Hosted by BMGHosting.comYesYes
Welcome MessageWelcome Message in text chat.MOTDWelcome!YesYes
Server RegionRegion of the world the server is located in. Options: europe / usa / australia / brazil / china / japan / russia / southkoreaREGIONeuropeYesYes
Admin PasswordPassword for Admin Login (F1).ADMIN_PASSYesYes
Server PasswordServer Password to lock the server. Leave blank if you want the server public.SERVER_PASSYesYes
Max PlayersMax PlayersPLAYERSYesNo
Server Comm PortServer Comm PortSERVER_COMM_PORTYesNo
Server Query PortServer Query PortSERVER_QUERY_PORTYesNo
Server FPSServer FPSFPSMAXYesNo
Server Log ArchiveServer Log ArchiveSERVER_LOG_ARCHIVE_PATHlogs_archiveNoNo
Steam App IDSteam CMD App IDSRCDS_APPID1424230NoNo
Holdfast BuildTo apply a beta branch, do -beta. If you are wanting to specify a beta branch, do -beta <betaname>. If the beta branch has a password, do -beta <betaname> -betapassword <password>.EXTRA_FLAGSYesYes
Install Script
#!/bin/bash
# steamcmd Base Installation Script
#
# Server Files: /mnt/server
# Image to install with is 'debian:buster-slim'

##
#
# Variables
# STEAM_USER, STEAM_PASS, STEAM_AUTH - Steam user setup. If a user has 2fa enabled it will most likely fail due to timeout. Leave blank for anon install.
# WINDOWS_INSTALL - if it's a windows server you want to install set to 1
# SRCDS_APPID - steam app id ffound here - https://developer.valvesoftware.com/wiki/Dedicated_Servers_List
# EXTRA_FLAGS - when a server has extra glas for things like beta installs or updates.
#
##



## just in case someone removed the defaults.
if [ "${STEAM_USER}" == "" ]; then
    echo -e "steam user is not set.\n"
    echo -e "Using anonymous user.\n"
    STEAM_USER=anonymous
    STEAM_PASS=""
    STEAM_AUTH=""
else
    echo -e "user set to ${STEAM_USER}"
fi

## download and install steamcmd
cd /tmp
mkdir -p /mnt/server/steamcmd
curl -sSL -o steamcmd.tar.gz https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz
tar -xzvf steamcmd.tar.gz -C /mnt/server/steamcmd
cd /mnt/server/steamcmd

# SteamCMD fails otherwise for some reason, even running as root.
# This is changed at the end of the install process anyways.
chown -R root:root /mnt
export HOME=/mnt/server

## install game using steamcmd
./steamcmd.sh +login ${STEAM_USER} ${STEAM_PASS} ${STEAM_AUTH} $( [[ "${WINDOWS_INSTALL}" == "1" ]] && printf %s '+@sSteamCmdForcePlatformType windows' ) +force_install_dir /mnt/server/holdfastnaw-dedicated +app_update ${SRCDS_APPID} ${EXTRA_FLAGS} validate +quit ## other flags may be needed depending on install. looking at you cs 1.6

## set up 32 bit libraries
mkdir -p /mnt/server/.steam/sdk32
cp -v linux32/steamclient.so ../.steam/sdk32/steamclient.so

## copy config to the configs folder - avoid rewrite from steamCMD update
cd /mnt/server/holdfastnaw-dedicated
mkdir -p configs 
git clone https://github.com/ankit2951/holdfast-config.git configs
cp serverconfig_default.txt configs/serverconfig_default.txt
 
## Read/Write access
chmod -R 777 /mnt/server/*

## install end
echo "-----------------------------------------"
echo "Installation completed..."
echo "-----------------------------------------"