The Front is a survival open-world crafting shooter. You play the role of a resistance fighter sent back in time to stop the rise of a tyrannical empire.
Name | Github Profile | Buy me a Coffee |
---|---|---|
gOOvER | https://github.com/gOOvER | Donate |
Special thanks to KRServers for spending me the Key
The Front is a survival open-world crafting shooter. You play the role of a resistance fighter sent back in time to stop the rise of a tyrannical empire.
Steam: https://store.steampowered.com/app/2285150/The_Front/
The Server needs 4 Ports. You can choose every Port you want
Port | default |
---|---|
Game | 27015 |
Beacon | 27016 |
Query | 27017 |
ShutDownService | 27018 |
Until the devs fix their linux server, you must reinstall the server on every update. Autoupdate is disabled and should NOT activated, because it can break your installation.
You need a min of 10GB for the Server.
[!WARNING] DO NOT ADD STARTUP FLAGS AFTER THE SERVER PASSWORD FLAG, else you are not longer able to login into your server. The Passwort Flag MUST be everytime the LAST flag
You can use Server Tags with this Egg. But max is 5
To be used in the variable as follows: 0,1,2,3,4
Available Server Tags
0 = PVP 1 = PVE 2 = EXP Multiplikator 3 = GatheringRate 4 = KeepInventory 5 = 45d wipe 6 = 15d wipe 7 = 30d wipe 8 = 60d wipe
Name | Tag |
---|---|
ghcr.io/ptero-eggs/steamcmd:debian | ghcr.io/ptero-eggs/steamcmd:debian |
Name | Description | Environment Variable | Default Value | User Viewable | User Editable |
---|---|---|---|---|---|
[SERVER] Server Name | no spaces und special signs | SRV_NAME | Pterodactyl hosted Server | Yes | Yes |
[SERVER] Max Players | The max number of players on your server. | MAX_PLAYERS | 10 | Yes | Yes |
[SERVER] Config Name | Name of the savefile. NO SPACE or SPECIAL signs | CFG_NAME | new | Yes | Yes |
[SERVER] Server Password | SRV_PW | Yes | Yes | ||
[SERVER] PvE | off = PvP; on = PvE | GAMEMODE | 0 | Yes | Yes |
[SERVER] Use Steam Socket | Use Steam servers for network penetration. Enable this if you don't have a public IP but you want to allow players from outside your network to join your server. If disabled, only you and other players on your LAN can join. If you have a public IP, you do not need to enable this. Enabling this feature will affect latency. When Steam servers are busy, you may not be able to join this server. | STEAMSOCKET | 0 | Yes | Yes |
[SERVER] Damage self? | Allows players to damage themselves. | SELFDMG | true | Yes | Yes |
[SERVER] Damage allies? | Allows squadmates to damage each other. | DMGALLIES | true | Yes | Yes |
[SERVER] Server Admins | Enter a 17-digit Steam ID. Use semicolons between each ID. GM level defaults to highest level (Lv. 25) | SRV_ADMIN | Yes | Yes | |
[ADVANCED] Label admin | Toggles special admin icon. | ADMIN_LABEL | false | Yes | Yes |
[ADVANCED] Server save interval | Server archive interval (in seconds) | SRV_SAVETIME | 300 | Yes | Yes |
[ADVANCED] Enable novice protection? | When enabled, new characters will receive novice protection. | GREENHAND | true | Yes | Yes |
[ADVANCED] Server Tags | MAX 5 -> 0= PVP | 1= PVE | 2= EXP Multiplikator | 3= GatheringRate | 4= KeepInventory | 5= 45d wipe | 6= 15d wipe | 7= 30d wipe | 8= 60d wipe | | SRV_TAGS | Yes | Yes | |
[ADVANCED] Enable anticheat? | Toggles anticheat. | ANTI_CHEAT | true | Yes | Yes |
[ADVANCED] Enable profanity? | When disable, profanity will be blocked. | SENSITIVE_WORDS | true | Yes | Yes |
[SERVER] Auto Update | Autoupdate your Server on start/restart | AUTO_UPDATE | 0 | Yes | Yes |
[SYSTEM] SRCDS_APPID | SRCDS_APPID | 2334200 | No | No | |
[SERVER] BeaconPort | port+1 | BEACON_PORT | 27016 | Yes | No |
[SERVER] QueryPort | port+2 | QUERY_PORT | 27017 | Yes | No |
[SERVER] ShutDownServicePort | port +3 | SHUTDOWN_PORT | 27017 | Yes | No |
WINDOWS_INSTALL | DO NOT REMOVE !!! | WINDOWS_INSTALL | 1 | No | No |
#!/bin/bash
# steamcmd Base Installation Script
#
clear
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
NC='\033[0m'
echo -e "${BLUE}-------------------------------------------------${NC}"
echo -e "${YELLOW}The Front Installscript${NC}"
echo -e "${YELLOW}Egg by gOOvER | https://goover.dev${NC}"
echo -e "${BLUE}-------------------------------------------------${NC}"
#apt -y update
#apt -y --no-install-recommends install curl lib32gcc-s1 ca-certificates jq dos2unix
echo -e "${BLUE}-------------------------------------------------${NC}"
echo -e "${YELLOW}download and install steamcmd. please wait...${NC}"
echo -e "${BLUE}-------------------------------------------------${NC}"
## just in case someone removed the defaults.
if [[ "${STEAM_USER}" == "" ]] || [[ "${STEAM_PASS}" == "" ]]; 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
mkdir -p /mnt/server/steamapps # Fix steamcmd disk write error when this folder is missing
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
echo -e "${GREEN}..done..${NC}"
## install game using steamcmd
echo -e "${BLUE}-------------------------------------------------${NC}"
echo -e "${YELLOW}install game using steamcmd. please wait...${NC}"
echo -e "${BLUE}-------------------------------------------------${NC}"
./steamcmd.sh +force_install_dir /mnt/server +login ${STEAM_USER} ${STEAM_PASS} ${STEAM_AUTH} $( [[ "${WINDOWS_INSTALL}" == "1" ]] && printf %s '+@sSteamCmdForcePlatformType windows' ) +app_update 1007 +app_update ${SRCDS_APPID} $( [[ -z ${SRCDS_BETAID} ]] || printf %s "-beta ${SRCDS_BETAID}" ) $( [[ -z ${SRCDS_BETAPASS} ]] || printf %s "-betapassword ${SRCDS_BETAPASS}" ) ${INSTALL_FLAGS} validate +quit ## other flags may be needed depending on install. looking at you cs 1.6
echo -e "${GREEN}..done..${NC}"
## set up 32 bit libraries
mkdir -p /mnt/server/.steam/sdk32
cp -v linux32/steamclient.so ../.steam/sdk32/steamclient.so
## set up 64 bit libraries
mkdir -p /mnt/server/.steam/sdk64
cp -v linux64/steamclient.so ../.steam/sdk64/steamclient.so
## install end
echo -e "${BLUE}-------------------------------------------------${NC}"
echo -e "${GREEN}Installation completed...${NC}"
echo -e "${BLUE}-------------------------------------------------${NC}"