S
描述
逃离一场致命的献祭仪式后,你在旅途中发现了一副古老的神秘面具。这副面具蕴含着强大的知识,彻底改变了你所熟知的世界。面对严酷的自然挑战,努力生存,集结追随者,建立属于你自己的部落。探索并揭开这副神秘面具背后的真相。
56 浏览
9 下载
2026-06-30
更新于 1 天前
预设配置详情
灵魂面罩
游戏简介
逃离一场致命的献祭仪式后,你在旅途中发现了一副古老的神秘面具。这副面具蕴含着强大的知识,彻底颠覆了你所熟知的世界。面对严酷的自然挑战,努力生存,集结追随者,建立属于你自己的部落。探索并揭开这副神秘面具背后的真相。
相关链接
Steam:https://store.steampowered.com/app/2646460/Soulmask/
作者与贡献者
| 名称 | Github 个人主页 | 请我喝杯咖啡 |
|---|---|---|
| QuintenQVD0 | https://github.com/QuintenQVD0 |
服务器端口
灵魂面罩最多需要 3 个端口。你可以自由选择任意端口。
| 端口类型 | 默认端口 |
|---|---|
| 游戏端口 | 7777 |
| 查询端口 | 27015 |
| 维护/回显端口 | 18888(无需公开) |
特别说明
- 每个游戏进程需要开放两个 UDP 端口
- 单个游戏进程至少需要 16GB 内存和 2-4 个 CPU 核心
- 带宽需求:每个游戏服务器的入站/出站带宽约为 100kbps/玩家
- 游戏包体大小约为 1-2GB,运行需要约 20GB 可用磁盘空间
registry.cn-shanghai.aliyuncs.com/pterodactyl-images/steamcmd:debian
/home/container/WS/Binaries/Linux/WSServer-Linux-Shipping WS Level01_Main -server -SILENT -SteamServerName="{{SERVER_NAME}}" -saving={{SAVE_TIME}} -Port={{SERVER_PORT}} -QueryPort={{QUERY_PORT}} -EchoPort={{ECHO_PORT}} -forcepassthrough -MaxPlayers={{MAX_PLAYERS}} -backup={{BACKUP_TIME}} -log -UTF8Output -MULTIHOME=0.0.0.0 {{EXTRA_ARGS}} -online=Steam -adminpsw={{ADMIN_PASSWORD}} -PSW={{SERVER_PASSWORD}}
| 变量名 | 变量 | 描述 | 默认值 | 规则 | 可查看 | 可编辑 |
|---|---|---|---|---|---|---|
| 应用ID | SRCDS_APPID |
3017300 |
required|string|in:3017300
必填 字符串 选项: 3017300
|
|||
| 自动更新 | AUTO_UPDATE |
启动时自动更新服务器 | 1 |
boolean
布尔
|
||
| 服务器名称 | SERVER_NAME |
指定服务器列表中显示的游戏实例名称。 | Soulmask Server |
required|string|max:85
必填 字符串 最大 85
|
||
| 最大玩家数 | MAX_PLAYERS |
指定游戏实例可以支持的最大玩家数量。 | 60 |
required|numeric|between:1,70
必填 数字 介于 1-70 之间
|
||
| 备份间隔 | BACKUP_TIME |
指定将游戏数据库写入磁盘的时间间隔(单位:秒)。 | 960 |
required|numeric
必填 数字
|
||
| 保存时间间隔 | SAVE_TIME |
指定将游戏对象写入数据库的时间间隔(单位:秒)。 | 600 |
required|numeric
必填 数字
|
||
| 查询端口 | QUERY_PORT |
指定Steam查询端口,UDP,需对公网开放。 | 27015 |
required|numeric|between:1024,65536
必填 数字 介于 1024-65536 之间
|
||
| 维护端口 | ECHO_PORT |
维护端口,用于本地telnet服务器维护,TCP协议,无需对外开放。 | 18888 |
required|numeric|between:1024,65536
必填 数字 介于 1024-65536 之间
|
||
| 服务器密码 | SERVER_PASSWORD |
服务器密码,私人服务器可以设置密码,玩家必须输入密码才能进入服务器。 | |
nullable|string|max:32
可选 字符串 最大 32
|
||
| 管理员密码 | ADMIN_PASSWORD |
GM激活密码。打开GM面板(gm key [password]) | |
nullable|string|max:32
可选 字符串 最大 32
|
||
| 额外参数 | EXTRA_ARGS |
启动时传递的附加参数,例如:-pve 或 -pve | |
nullable|string|max:32
可选 字符串 最大 32
|
镜像
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
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
./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} +app_update 1007 $( [[ -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
## add below your custom commands if needed
## Maybe this path is just needed?
mkdir -p /mnt/server/WS/Saved/Config/LinuxServer
## install end
echo "-----------------------------------------"
echo "Installation completed..."
echo "-----------------------------------------"
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
"meta": {
"update_url": "https://eggs.pterodactyl.top/eggs/109/download/egg-soulmask.json",
"version": "PTDL_v2"
},
"exported_at": "2024-06-01T13:27:43+02:00",
"name": "Soulmask",
"author": "josdekurk@gmail.com",
"description": "逃离一场致命的献祭仪式后,你在旅途中发现了一副古老的神秘面具。这副面具蕴含着强大的知识,彻底改变了你所熟知的世界。面对严酷的自然挑战,努力生存,集结追随者,建立属于你自己的部落。探索并揭开这副神秘面具背后的真相。",
"features": [
"steam_disk_space"
],
"docker_images": {
"SteamCMD": "registry.cn-shanghai.aliyuncs.com/pterodactyl-images/steamcmd:debian"
},
"file_denylist": [],
"startup": "/home/container/WS/Binaries/Linux/WSServer-Linux-Shipping WS Level01_Main -server -SILENT -SteamServerName=\"{{SERVER_NAME}}\" -saving={{SAVE_TIME}} -Port={{SERVER_PORT}} -QueryPort={{QUERY_PORT}} -EchoPort={{ECHO_PORT}} -forcepassthrough -MaxPlayers={{MAX_PLAYERS}} -backup={{BACKUP_TIME}} -log -UTF8Output -MULTIHOME=0.0.0.0 {{EXTRA_ARGS}} -online=Steam -adminpsw={{ADMIN_PASSWORD}} -PSW={{SERVER_PASSWORD}}",
"config": {
"files": "{}",
"logs": "{}",
"startup": "{\r\n \"done\": \"Create Dungeon Successed\"\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\r\n\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\r\n## just in case someone removed the defaults.\r\nif [[ \"${STEAM_USER}\" == \"\" ]] || [[ \"${STEAM_PASS}\" == \"\" ]]; then\r\n echo -e \"steam user is not set.\\n\"\r\n echo -e \"Using anonymous user.\\n\"\r\n STEAM_USER=anonymous\r\n STEAM_PASS=\"\"\r\n STEAM_AUTH=\"\"\r\nelse\r\n echo -e \"user set to ${STEAM_USER}\"\r\nfi\r\n\r\n## download and install steamcmd\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\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\r\n## install game using steamcmd\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} +app_update 1007 $( [[ -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\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\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\r\n## add below your custom commands if needed\r\n## Maybe this path is just needed?\r\nmkdir -p /mnt/server/WS/Saved/Config/LinuxServer\r\n\r\n## install end\r\necho \"-----------------------------------------\"\r\necho \"Installation completed...\"\r\necho \"-----------------------------------------\""
}
},
"variables": [
{
"name": "应用ID",
"description": "",
"env_variable": "SRCDS_APPID",
"default_value": "3017300",
"user_viewable": false,
"user_editable": false,
"rules": "required|string|in:3017300",
"field_type": "text"
},
{
"name": "自动更新",
"description": "启动时自动更新服务器",
"env_variable": "AUTO_UPDATE",
"default_value": "1",
"user_viewable": true,
"user_editable": true,
"rules": "boolean",
"field_type": "text"
},
{
"name": "服务器名称",
"description": "指定服务器列表中显示的游戏实例名称。",
"env_variable": "SERVER_NAME",
"default_value": "Soulmask Server",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|max:85",
"field_type": "text"
},
{
"name": "最大玩家数",
"description": "指定游戏实例可以支持的最大玩家数量。",
"env_variable": "MAX_PLAYERS",
"default_value": "60",
"user_viewable": true,
"user_editable": true,
"rules": "required|numeric|between:1,70",
"field_type": "text"
},
{
"name": "备份间隔",
"description": "指定将游戏数据库写入磁盘的时间间隔(单位:秒)。",
"env_variable": "BACKUP_TIME",
"default_value": "960",
"user_viewable": true,
"user_editable": true,
"rules": "required|numeric",
"field_type": "text"
},
{
"name": "保存时间间隔",
"description": "指定将游戏对象写入数据库的时间间隔(单位:秒)。",
"env_variable": "SAVE_TIME",
"default_value": "600",
"user_viewable": true,
"user_editable": true,
"rules": "required|numeric",
"field_type": "text"
},
{
"name": "查询端口",
"description": "指定Steam查询端口,UDP,需对公网开放。",
"env_variable": "QUERY_PORT",
"default_value": "27015",
"user_viewable": true,
"user_editable": false,
"rules": "required|numeric|between:1024,65536",
"field_type": "text"
},
{
"name": "维护端口",
"description": "维护端口,用于本地telnet服务器维护,TCP协议,无需对外开放。",
"env_variable": "ECHO_PORT",
"default_value": "18888",
"user_viewable": true,
"user_editable": false,
"rules": "required|numeric|between:1024,65536",
"field_type": "text"
},
{
"name": "服务器密码",
"description": "服务器密码,私人服务器可以设置密码,玩家必须输入密码才能进入服务器。",
"env_variable": "SERVER_PASSWORD",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string|max:32",
"field_type": "text"
},
{
"name": "管理员密码",
"description": "GM激活密码。打开GM面板(gm key [password])",
"env_variable": "ADMIN_PASSWORD",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string|max:32",
"field_type": "text"
},
{
"name": "额外参数",
"description": "启动时传递的附加参数,例如:-pve 或 -pve",
"env_variable": "EXTRA_ARGS",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string|max:32",
"field_type": "text"
}
]
}附属文件
暂无附属文件
提交历史
Fork 关系
查看关系图暂无 Fork,成为第一个 Fork 的人吧!
统计
56
浏览
9
下载
0
星标
0
复刻
作者
飒
飒爽师叔
UID: 1
279 预设
·
2026-06