复
描述
Vintage Story 是一款毫不妥协的荒野生存沙盒游戏,灵感来源于洛夫克拉夫特式恐怖主题。你将发现自己身处一个被自然重新占据、充满不安的时间扰动的废墟世界。重温人类文明的曙光,或者走出自己的道路。
67 浏览
8 下载
2026-07-01
更新于 10 小时前
预设配置详情
Vintage Story
Vintage Story 服务器
服务器支持模组
服务器文件对应的 Egg 支持以下分支:pre、unstable、stable
来自开发者
Vintage Story 是一款受洛夫克拉夫特式恐怖题材启发、毫不妥协的荒野生存沙盒游戏。你将发现自己置身于一个被自然重新占领的破败世界,处处弥漫着令人不安的时间扰动。重温人类文明的曙光,或走出一条属于自己的道路。初次接触本游戏?请务必查看他们的入门页面。
服务器端口
Vintage Story 只需一个端口
| 端口 | 默认值 |
|---|---|
| 游戏 | 42420 |
Docker 映像配置
当您安装的版本大于或等于 1.21.0 时,需要在“启动”部分选择 Dotnet 8 Docker 映像。
registry.cn-shanghai.aliyuncs.com/pterodactyl-images/yolks:dotnet_10
registry.cn-shanghai.aliyuncs.com/pterodactyl-images/yolks:dotnet_8
registry.cn-shanghai.aliyuncs.com/pterodactyl-images/yolks:dotnet_7
./VintagestoryServer --dataPath ./data --port={{SERVER_PORT}} --maxclients={{MAX_CLIENTS}} {{OPTIONS}}
| 变量名 | 变量 | 描述 | 默认值 | 规则 | 可查看 | 可编辑 |
|---|---|---|---|---|---|---|
| 启动选项 | OPTIONS |
|
nullable|string|max:200
可选 字符串 最大 200
|
|||
| 发布分支 | FILES_BRANCH |
stable |
required|string|in:stable,unstable,pre
必填 字符串 选项: stable,unstable,pre
|
|||
| 发布版本 | RELEASE_VERSION |
latest |
required|string|max:20
必填 字符串 最大 20
|
|||
| 最大客户端 | MAX_CLIENTS |
16 |
required|integer|max:256
必填 整数 最大 256
|
|||
| Sqlite 临时文件目录 | SQLITE_TMPDIR |
定义SQLite中临时文件的位置。这是"/db vacuum"命令(1.19版本新增)所需要的,因为否则它将使用/tmp文件夹,该文件夹默认只有100MB且位于内存中。 | /home/container/data/Backups |
required|string|max:40
必填 字符串 最大 40
|
镜像
registry.cn-shanghai.aliyuncs.com/pterodactyl-images/installers:debian
入口
bash
#!/bin/bash
# Vintage Story Installation Script
#
# Server Files: /mnt/server
apt update
apt -y install curl jq
declare -A API_URLS=(
["stable"]="http://api.vintagestory.at/stable.json"
["unstable"]="http://api.vintagestory.at/unstable.json"
)
declare -A DOWNLOAD_URLS=(
["stable"]="https://cdn.vintagestory.at/gamefiles/stable/vs_server_linux-x64_${RELEASE_VERSION}.tar.gz"
["unstable"]="https://cdn.vintagestory.at/gamefiles/unstable/vs_server_linux-x64_${RELEASE_VERSION}.tar.gz"
["pre"]="https://cdn.vintagestory.at/gamefiles/pre/vs_server_linux-x64_${RELEASE_VERSION}.tar.gz"
)
BRANCH="${FILES_BRANCH}"
if [ -z "${RELEASE_VERSION}" ] || [ "${RELEASE_VERSION}" == "latest" ] && [ "${BRANCH}" == "pre" ]; then
echo "-----------------------------------------"
echo "Installation failed..."
echo "Please specify the version when using RELEASE BRANCH: pre"
echo "-----------------------------------------"
exit
fi
if [ -z "${RELEASE_VERSION}" ] || [ "${RELEASE_VERSION}" == "latest" ]; then
API_URL="${API_URLS[$BRANCH]}"
echo "API URL: $API_URL"
DOWNLOAD_URL=$(curl -SsL "$API_URL" | jq -r 'if ([.[]] | .[0].linuxserver.urls.cdn) != null then [.[]] | .[0].linuxserver.urls.cdn else [.[]] | .[0].linuxserver.urls.local end')
else
DOWNLOAD_URL="${DOWNLOAD_URLS[$BRANCH]}"
fi
echo "Download URL: $DOWNLOAD_URL"
cd /mnt/server/ || exit
# make sure to cleanup the prior installation else this might cause issue with old asset files that do not exist in the new version
if [ -d "assets" ]; then
echo "Removing old installation files"
rm -rf assets/
rm -rf Lib/
fi
curl -o vs_server.tar.gz "${DOWNLOAD_URL}"
tar -xzf vs_server.tar.gz
if [ $? -ne 0 ]; then
echo "-----------------------------------------"
echo "Installation failed..."
echo "Please make sure the specified version exists: $RELEASE_VERSION"
echo "-----------------------------------------"
rm vs_server.tar.gz
exit
fi
rm vs_server.tar.gz
rm server.sh
echo "-----------------------------------------"
echo "Installation completed..."
echo "-----------------------------------------"
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
"meta": {
"version": "PTDL_v2",
"update_url": "https://eggs.pterodactyl.top/eggs/258/download/egg-vintage-story.json"
},
"exported_at": "2026-02-10T14:32:54+00:00",
"name": "Vintage Story",
"author": "mail@wuffy.eu",
"description": "Vintage Story 是一款毫不妥协的荒野生存沙盒游戏,灵感来源于洛夫克拉夫特式恐怖主题。你将发现自己身处一个被自然重新占据、充满不安的时间扰动的废墟世界。重温人类文明的曙光,或者走出自己的道路。",
"features": null,
"docker_images": {
"Dotnet 10": "registry.cn-shanghai.aliyuncs.com/pterodactyl-images/yolks:dotnet_10",
"Dotnet 8": "registry.cn-shanghai.aliyuncs.com/pterodactyl-images/yolks:dotnet_8",
"Dotnet 7": "registry.cn-shanghai.aliyuncs.com/pterodactyl-images/yolks:dotnet_7"
},
"file_denylist": [],
"startup": "./VintagestoryServer --dataPath ./data --port={{SERVER_PORT}} --maxclients={{MAX_CLIENTS}} {{OPTIONS}}",
"config": {
"files": "{}",
"startup": "{\n \"done\": \"Dedicated Server now running on Port \"\n}",
"logs": "{}",
"stop": "/stop"
},
"scripts": {
"installation": {
"script": "#!/bin/bash\r\n# Vintage Story Installation Script\r\n#\r\n# Server Files: /mnt/server\r\napt update\r\napt -y install curl jq\r\n\r\ndeclare -A API_URLS=(\r\n [\"stable\"]=\"http://api.vintagestory.at/stable.json\"\r\n [\"unstable\"]=\"http://api.vintagestory.at/unstable.json\"\r\n)\r\n\r\ndeclare -A DOWNLOAD_URLS=(\r\n [\"stable\"]=\"https://cdn.vintagestory.at/gamefiles/stable/vs_server_linux-x64_${RELEASE_VERSION}.tar.gz\"\r\n [\"unstable\"]=\"https://cdn.vintagestory.at/gamefiles/unstable/vs_server_linux-x64_${RELEASE_VERSION}.tar.gz\"\r\n [\"pre\"]=\"https://cdn.vintagestory.at/gamefiles/pre/vs_server_linux-x64_${RELEASE_VERSION}.tar.gz\"\r\n)\r\n\r\nBRANCH=\"${FILES_BRANCH}\"\r\n\r\nif [ -z \"${RELEASE_VERSION}\" ] || [ \"${RELEASE_VERSION}\" == \"latest\" ] && [ \"${BRANCH}\" == \"pre\" ]; then\r\n echo \"-----------------------------------------\"\r\n echo \"Installation failed...\"\r\n echo \"Please specify the version when using RELEASE BRANCH: pre\"\r\n echo \"-----------------------------------------\" \r\n exit\r\nfi\r\n\r\nif [ -z \"${RELEASE_VERSION}\" ] || [ \"${RELEASE_VERSION}\" == \"latest\" ]; then\r\n API_URL=\"${API_URLS[$BRANCH]}\"\r\n echo \"API URL: $API_URL\"\r\n DOWNLOAD_URL=$(curl -SsL \"$API_URL\" | jq -r 'if ([.[]] | .[0].linuxserver.urls.cdn) != null then [.[]] | .[0].linuxserver.urls.cdn else [.[]] | .[0].linuxserver.urls.local end')\r\nelse\r\n DOWNLOAD_URL=\"${DOWNLOAD_URLS[$BRANCH]}\"\r\nfi\r\n\r\necho \"Download URL: $DOWNLOAD_URL\"\r\n\r\ncd /mnt/server/ || exit\r\n\r\n# make sure to cleanup the prior installation else this might cause issue with old asset files that do not exist in the new version\r\nif [ -d \"assets\" ]; then\r\n echo \"Removing old installation files\"\r\n rm -rf assets/\r\n rm -rf Lib/\r\nfi\r\ncurl -o vs_server.tar.gz \"${DOWNLOAD_URL}\"\r\ntar -xzf vs_server.tar.gz\r\n\r\nif [ $? -ne 0 ]; then\r\n echo \"-----------------------------------------\"\r\n echo \"Installation failed...\"\r\n echo \"Please make sure the specified version exists: $RELEASE_VERSION\"\r\n echo \"-----------------------------------------\"\r\n rm vs_server.tar.gz\r\n exit\r\nfi\r\n\r\nrm vs_server.tar.gz\r\nrm server.sh\r\n\r\necho \"-----------------------------------------\"\r\necho \"Installation completed...\"\r\necho \"-----------------------------------------\"",
"container": "registry.cn-shanghai.aliyuncs.com/pterodactyl-images/installers:debian",
"entrypoint": "bash"
}
},
"variables": [
{
"name": "启动选项",
"description": "",
"env_variable": "OPTIONS",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string|max:200",
"field_type": "text"
},
{
"name": "发布分支",
"description": "",
"env_variable": "FILES_BRANCH",
"default_value": "stable",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|in:stable,unstable,pre",
"field_type": "text"
},
{
"name": "发布版本",
"description": "",
"env_variable": "RELEASE_VERSION",
"default_value": "latest",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|max:20",
"field_type": "text"
},
{
"name": "最大客户端",
"description": "",
"env_variable": "MAX_CLIENTS",
"default_value": "16",
"user_viewable": true,
"user_editable": true,
"rules": "required|integer|max:256",
"field_type": "text"
},
{
"name": "Sqlite 临时文件目录",
"description": "定义SQLite中临时文件的位置。这是\"/db vacuum\"命令(1.19版本新增)所需要的,因为否则它将使用/tmp文件夹,该文件夹默认只有100MB且位于内存中。",
"env_variable": "SQLITE_TMPDIR",
"default_value": "/home/container/data/Backups",
"user_viewable": true,
"user_editable": false,
"rules": "required|string|max:40",
"field_type": "text"
}
]
}附属文件
暂无附属文件
Fork 关系
查看关系图暂无 Fork,成为第一个 Fork 的人吧!
统计
67
浏览
8
下载
0
星标
0
复刻
作者
飒
飒爽师叔
UID: 1
279 预设
·
2026-06