A
描述
一款关于航空航天工业与星际探索的游戏。
19 浏览
1 下载
2026-06-30
更新于 4 小时前
预设配置详情
异星探险家
Steam描述:探索并重塑遥远世界!《异星探险家》设定在25世纪的淘金热时期:玩家必须探索太空的最深处,在充满敌意的环境中冒着生命危险和资源风险,只为有机会成为百万富翁。
安装说明
以下变量是防止服务器启动时崩溃所必需的:
- 公共IP:用于注册服务器。必须是加入服务器时使用的IP地址。
- 服务器所有者名称:服务器所有者的Steam用户名。同时将该用户设置为服务器的所有者和管理员。
- 服务器所有者GUID:服务器所有者的Steam ID。同时将该用户设置为服务器的所有者和管理员。(Steam常见问题解答)[https://help.steampowered.com/en/faqs/view/2816-BE67-5B69-0FEC]
最低内存警告
《异星探险家》运行至少需要700MiB内存。如果有多名玩家连接,1GiB似乎是最低要求。
最低存储警告
《异星探险家》至少需要3GiB存储空间。随着存档文件增大,所需空间可能会增加。
服务器端口
《异星探险家》运行需要单个端口。
| 端口 | 默认值 |
|---|---|
| 游戏 | 27000 |
备注
27000是默认端口,但可以使用任何端口。
客户端配置
要连接到服务器,需要在每台玩家电脑上编辑Engine.ini文件(位于%LocalAppData%\Astro\Saved\Config\WindowsNoEditor\Engine.ini),添加以下内容:
[SystemSettings]
net.AllowEncryption=False
registry.cn-shanghai.aliyuncs.com/pterodactyl-images/steamcmd:proton
proton run ./Astro/Binaries/Win64/AstroServer-Win64-Shipping.exe
| 变量名 | 变量 | 描述 | 默认值 | 规则 | 可查看 | 可编辑 |
|---|---|---|---|---|---|---|
| 公网IP | PUBLIC_IP |
连接到服务器的公共IP地址。 | |
required|string
必填 字符串
|
||
| 服务器所有者名称 | OWNER_NAME |
服务器所有者的Steam用户名 | |
required|string
必填 字符串
|
||
| 服务器所有者指南 | OWNER_GUID |
服务器所有者的Steam ID | |
required|string
必填 字符串
|
||
| 服务器密码 | SERVER_PWD |
如果指定,玩家必须提供此密码才能加入服务器。 | |
nullable|alpha_dash|between:1,100
可选 介于 1-100 之间
|
||
| 自动更新 | AUTO_UPDATE |
启动时快速检查服务器更新,并在必要时进行更新。(1 启用 | 0 禁用) | 1 |
boolean
布尔
|
||
| [高级] Windows 安装 | WINDOWS_INSTALL |
Windows 安装程序 | 1 |
required|string|max:20
必填 字符串 最大 20
|
||
| [高级] Steam 应用 ID | SRCDS_APPID |
728470 |
required|string|max:20
必填 字符串 最大 20
|
|||
| PROTON_LOG | PROTON_LOG |
1 |
boolean
布尔
|
|||
| 服务器名称 | SERVER_NAME |
Pterodactyl hosted Server |
required|string|max:60
必填 字符串 最大 60
|
镜像
registry.cn-shanghai.aliyuncs.com/pterodactyl-images/installers:debian
入口
bash
#!/bin/bash
# steamcmd Base Installation Script
#
# Server Files: /mnt/server
# Image to install with is 'registry.cn-shanghai.aliyuncs.com/pterodactyl-images/installers:debian'
# Install packages. Default packages below are not required if using our existing install image thus speeding up the install process.
#apt -y update
#apt -y --no-install-recommends install curl lib32gcc-s1 ca-certificates
## just in case someone removed the defaults.
if [[ "${STEAM_USER}" == "" ]] || [[ "${STEAM_PASS}" == "" ]]; then
echo -e "steam user is not set.
"
echo -e "Using anonymous user.
"
STEAM_USER=anonymous
STEAM_PASS=""
STEAM_AUTH=""
else
echo -e "user set to ${STEAM_USER}"
fi
## download and install steamcmd
## install end
echo "-----------------------------------------"
echo "Install steamcmd"
echo "-----------------------------------------"
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
## install game using steamcmd
## install end
echo "-----------------------------------------"
echo "Install game"
echo "-----------------------------------------"
./steamcmd.sh +force_install_dir /mnt/server +login ${STEAM_USER} ${STEAM_PASS} ${STEAM_AUTH} $( [[ "${WINDOWS_INSTALL}" == "1" ]] && printf %s '+@sSteamCmdForcePlatformType windows' ) +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
## 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 "-----------------------------------------"
echo "Installation completed..."
echo "-----------------------------------------"
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PANEL",
"meta": {
"update_url": "https://eggs.pterodactyl.top/eggs/27/download/egg-astroneer-dedicated-server.json",
"version": "PTDL_v2"
},
"exported_at": "2024-06-01T00:03:55+00:00",
"name": "Astroneer Dedicated Server",
"author": "melethainiel.aerin@gmail.com",
"description": "一款关于航空航天工业与星际探索的游戏。",
"features": null,
"docker_images": {
"registry.cn-shanghai.aliyuncs.com/pterodactyl-images/steamcmd:proton": "registry.cn-shanghai.aliyuncs.com/pterodactyl-images/steamcmd:proton"
},
"file_denylist": [],
"startup": "proton run ./Astro/Binaries/Win64/AstroServer-Win64-Shipping.exe",
"config": {
"files": "{\r\n \"Astro/Saved/Config/WindowsServer/Engine.ini\": {\r\n \"parser\": \"ini\",\r\n \"find\": {\r\n \"url.Port\": \"{{server.build.default.port}}\",\r\n \"[SystemSettings].net.AllowEncryption\":\"false\"\r\n }\r\n },\r\n \"Astro/Saved/Config/WindowsServer/AstroServerSettings.ini\": {\r\n \"parser\": \"ini\",\r\n \"find\": {\r\n \"[/Script/Astro.AstroServerSettings].PublicIP\": \"{{env.PUBLIC_IP}}\",\r\n \"[/Script/Astro.AstroServerSettings].OwnerName\": \"{{env.OWNER_NAME}}\",\r\n \"[/Script/Astro.AstroServerSettings].OwnerGuid\": \"{{env.OWNER_GUID}}\",\r\n \"[/Script/Astro.AstroServerSettings].PlayerProperties\": \"(PlayerFirstJoinName=\\\"{{env.OWNER_NAME}}\\\",PlayerCategory=Admin,PlayerGuid=\\\"{{env.OWNER_GUID}}\\\",PlayerRecentJoinName=\\\"\\\")\",\r\n \"[/Script/Astro.AstroServerSettings].ServerPassword\": \"{{env.SERVER_PWD}}\",\r\n \"[/Script/Astro.AstroServerSettings].ServerName\": \"{{env.SERVER_NAME}}\"\r\n }\r\n }\r\n}",
"logs": "{}",
"startup": "{\r\n \"done\": \"nable to use setpriority safely\"\r\n}",
"stop": "^C"
},
"scripts": {
"installation": {
"container": "registry.cn-shanghai.aliyuncs.com/pterodactyl-images/installers:debian",
"entrypoint": "bash",
"script": "#!/bin/bash\r\n# steamcmd Base Installation Script\r\n#\r\n# Server Files: /mnt/server\r\n# Image to install with is 'registry.cn-shanghai.aliyuncs.com/pterodactyl-images/installers:debian'\r\n# Install packages. Default packages below are not required if using our existing install image thus speeding up the install process.\r\n#apt -y update\r\n#apt -y --no-install-recommends install curl lib32gcc-s1 ca-certificates\r\n## just in case someone removed the defaults.\r\nif [[ \"${STEAM_USER}\" == \"\" ]] || [[ \"${STEAM_PASS}\" == \"\" ]]; then\r\necho -e \"steam user is not set.\\n\"\r\necho -e \"Using anonymous user.\\n\"\r\nSTEAM_USER=anonymous\r\nSTEAM_PASS=\"\"\r\nSTEAM_AUTH=\"\"\r\nelse\r\necho -e \"user set to ${STEAM_USER}\"\r\nfi\r\n## download and install steamcmd\r\n## install end\r\necho \"-----------------------------------------\"\r\necho \"Install steamcmd\"\r\necho \"-----------------------------------------\"\r\ncd /tmp\r\nmkdir -p /mnt/server/steamcmd\r\ncurl -sSL -o steamcmd.tar.gz https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz\r\ntar -xzvf steamcmd.tar.gz -C /mnt/server/steamcmd\r\nmkdir -p /mnt/server/steamapps # Fix steamcmd disk write error when this folder is missing\r\ncd /mnt/server/steamcmd\r\n# SteamCMD fails otherwise for some reason, even running as root.\r\n# This is changed at the end of the install process anyways.\r\nchown -R root:root /mnt\r\nexport HOME=/mnt/server\r\n## install game using steamcmd\r\n## install end\r\necho \"-----------------------------------------\"\r\necho \"Install game\"\r\necho \"-----------------------------------------\"\r\n./steamcmd.sh +force_install_dir /mnt/server +login ${STEAM_USER} ${STEAM_PASS} ${STEAM_AUTH} $( [[ \"${WINDOWS_INSTALL}\" == \"1\" ]] && printf %s '+@sSteamCmdForcePlatformType windows' ) +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\r\n## set up 32 bit libraries\r\nmkdir -p /mnt/server/.steam/sdk32\r\ncp -v linux32/steamclient.so ../.steam/sdk32/steamclient.so\r\n## set up 64 bit libraries\r\nmkdir -p /mnt/server/.steam/sdk64\r\ncp -v linux64/steamclient.so ../.steam/sdk64/steamclient.so\r\n## install end\r\necho \"-----------------------------------------\"\r\necho \"Installation completed...\"\r\necho \"-----------------------------------------\""
}
},
"variables": [
{
"name": "公网IP",
"description": "连接到服务器的公共IP地址。",
"env_variable": "PUBLIC_IP",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "required|string",
"field_type": "text"
},
{
"name": "服务器所有者名称",
"description": "服务器所有者的Steam用户名",
"env_variable": "OWNER_NAME",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "required|string",
"field_type": "text"
},
{
"name": "服务器所有者指南",
"description": "服务器所有者的Steam ID",
"env_variable": "OWNER_GUID",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "required|string",
"field_type": "text"
},
{
"name": "服务器密码",
"description": "如果指定,玩家必须提供此密码才能加入服务器。",
"env_variable": "SERVER_PWD",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|alpha_dash|between:1,100",
"field_type": "text"
},
{
"name": "自动更新",
"description": "启动时快速检查服务器更新,并在必要时进行更新。(1 启用 | 0 禁用)",
"env_variable": "AUTO_UPDATE",
"default_value": "1",
"user_viewable": true,
"user_editable": true,
"rules": "boolean",
"field_type": "text"
},
{
"name": "[高级] Windows 安装",
"description": "Windows 安装程序",
"env_variable": "WINDOWS_INSTALL",
"default_value": "1",
"user_viewable": true,
"user_editable": false,
"rules": "required|string|max:20",
"field_type": "text"
},
{
"name": "[高级] Steam 应用 ID",
"description": "",
"env_variable": "SRCDS_APPID",
"default_value": "728470",
"user_viewable": false,
"user_editable": false,
"rules": "required|string|max:20",
"field_type": "text"
},
{
"name": "PROTON_LOG",
"description": "",
"env_variable": "PROTON_LOG",
"default_value": "1",
"user_viewable": false,
"user_editable": false,
"rules": "boolean",
"field_type": "text"
},
{
"name": "服务器名称",
"description": "",
"env_variable": "SERVER_NAME",
"default_value": "Pterodactyl hosted Server",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|max:60",
"field_type": "text"
}
]
}附属文件
暂无附属文件
提交历史
Fork 关系
查看关系图暂无 Fork,成为第一个 Fork 的人吧!
统计
19
浏览
1
下载
0
星标
0
复刻
作者
飒
飒爽师叔
UID: 1
279 预设
·
2026-06