帝
描述
《帝国神话》是一款具有高度自由度的多人战争沙盒游戏。玩家必须生存、制造、创造并率领军队,在征服领土、建立自己帝国的征途中不断前行。
17 浏览
1 下载
2026-06-30
更新于 1 天前
预设配置详情
帝国神话
Steam
安装/系统要求
<!--修改以反映服务器最低/推荐硬件规格-->
| | 最低配置 | 推荐配置 |
|---------|---------|---------|
| 处理器 | 仅限AMD64 | - |
| 内存 | 9 GiB | 12 GiB |
| 存储空间 | 10 GiB | 15 GiB |
| 网络 | - | - |
| 游戏所有权 | 不需要 | - |
服务器端口
运行服务器所需的端口
| 端口 | 默认值 |
|---|---|
| 游戏 | 11888 |
| 查询 | 12888 |
| RCON | 13888 |
registry.cn-shanghai.aliyuncs.com/pterodactyl-images/steamcmd:proton
export PROTON_USE_WINED3D=1; export PROTON_NO_ESYNC=1; proton run MOE/Binaries/Win64/MOEServer.exe {{MAP_NAME}} -game -server -DataLocalFile -NotCheckServerSteamAuth -LOCALLOGTIMES -PrivateServer -MultiHome=0.0.0.0 -OutAddress={{SERVER_IP}} -SessionName="{{SERVER_NAME}}" -GameServerPVPType={{PVP}} -MaxPlayers={{MAX_PLAYERS}} -MapDifficultyRate=1 -UseACE -EnableVACBan=1 -ServerId={{SERVER_ID}} -ClusterId={{CLUSTER_ID}} -Port={{SERVER_PORT}} -QueryPort={{QUERY_PORT}} -bStartShutDownServiceInPrivateServer={{SHUTDOWN_SERVICE}} -ShutDownServiceIP=127.0.0.1 -ShutDownServicePort={{RCON_PORT}} -ShutDownServiceKey="{{RCON_PASSWORD}}" -ServerAdminAccounts="{{ADMIN_IDS}}" {{EXTRA_FLAGS}}
| 变量名 | 变量 | 描述 | 默认值 | 规则 | 可查看 | 可编辑 |
|---|---|---|---|---|---|---|
| 应用ID | SRCDS_APPID |
1794810 |
required|string|in:1794810
必填 字符串 选项: 1794810
|
|||
| 安装Windows版本 | WINDOWS_INSTALL |
1 |
required|in:1
必填 选项: 1
|
|||
| 自动更新 | AUTO_UPDATE |
在启动时自动更新服务器 | 1 |
boolean
布尔
|
||
| 地图名称 | MAP_NAME |
LargeTerrain_Central_Main |
required|string|in:LargeTerrain_Central_Main,LargeTerrain_Central2_Main
必填 字符串 选项: LargeTerrain_Central_Main,LargeTerrain_Central2_Main
|
|||
| 服务器名称 | SERVER_NAME |
服务器名称 | A Pterodactyl hosted server |
required|string|max:80
必填 字符串 最大 80
|
||
| 启用PVP | PVP |
启用或禁用PVP | 1 |
boolean
布尔
|
||
| 最大玩家数 | MAX_PLAYERS |
25 |
required|numeric|between:1,150
必填 数字 介于 1-150 之间
|
|||
| 查询端口 | QUERY_PORT |
12888 |
required|numeric
必填 数字
|
|||
| 关闭服务 | SHUTDOWN_SERVICE |
1 |
boolean
布尔
|
|||
| RCON 端口 | RCON_PORT |
13888 |
required|int
必填
|
|||
| RCON 密码 | RCON_PASSWORD |
|
required|alpha_dash|min:5|max:32
必填 最大 32 最小 5
|
|||
| 管理员ID | ADMIN_IDS |
Steam 管理员 ID 列表 | |
nullable|string|max:128
可选 字符串 最大 128
|
||
| 额外标志 | EXTRA_FLAGS |
额外标志。所有以 - 开头的标志 示例:-ServerLevelAddMul=1.01 | |
nullable|string|
可选 字符串
|
||
| 集群ID | CLUSTER_ID |
1 |
required|numeric
必填 数字
|
|||
| 服务器ID | SERVER_ID |
100 |
required|numeric
必填 数字
|
镜像
registry.cn-shanghai.aliyuncs.com/pterodactyl-images/installers:debian
入口
bash
#!/bin/bash
##
# 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} $( [[ -z ${SRCDS_BETAID} ]] || printf %s "-beta ${SRCDS_BETAID}" ) $( [[ -z ${SRCDS_BETAPASS} ]] || printf %s "-betapassword ${SRCDS_BETAPASS}" ) ${INSTALL_FLAGS} validate +quit
## 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
## install end
echo "-----------------------------------------"
echo "Installation completed..."
echo "-----------------------------------------"
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PANEL",
"meta": {
"update_url": "https://eggs.pterodactyl.top/eggs/74/download/egg-myth-of-empires.json",
"version": "PTDL_v2"
},
"exported_at": "2024-06-01T00:04:23+00:00",
"name": "Myth of Empires",
"author": "josdekurk@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": "export PROTON_USE_WINED3D=1; export PROTON_NO_ESYNC=1; proton run MOE/Binaries/Win64/MOEServer.exe {{MAP_NAME}} -game -server -DataLocalFile -NotCheckServerSteamAuth -LOCALLOGTIMES -PrivateServer -MultiHome=0.0.0.0 -OutAddress={{SERVER_IP}} -SessionName=\"{{SERVER_NAME}}\" -GameServerPVPType={{PVP}} -MaxPlayers={{MAX_PLAYERS}} -MapDifficultyRate=1 -UseACE -EnableVACBan=1 -ServerId={{SERVER_ID}} -ClusterId={{CLUSTER_ID}} -Port={{SERVER_PORT}} -QueryPort={{QUERY_PORT}} -bStartShutDownServiceInPrivateServer={{SHUTDOWN_SERVICE}} -ShutDownServiceIP=127.0.0.1 -ShutDownServicePort={{RCON_PORT}} -ShutDownServiceKey=\"{{RCON_PASSWORD}}\" -ServerAdminAccounts=\"{{ADMIN_IDS}}\" {{EXTRA_FLAGS}}",
"config": {
"files": "{}",
"logs": "{}",
"startup": "{\r\n \"done\": \"LogInit: Display: Starting Game.\"\r\n}",
"stop": "^C"
},
"scripts": {
"installation": {
"container": "registry.cn-shanghai.aliyuncs.com/pterodactyl-images/installers:debian",
"entrypoint": "bash",
"script": "#!/bin/bash\r\n\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} $( [[ -z ${SRCDS_BETAID} ]] || printf %s \"-beta ${SRCDS_BETAID}\" ) $( [[ -z ${SRCDS_BETAPASS} ]] || printf %s \"-betapassword ${SRCDS_BETAPASS}\" ) ${INSTALL_FLAGS} validate +quit\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\r\n## install end\r\necho \"-----------------------------------------\"\r\necho \"Installation completed...\"\r\necho \"-----------------------------------------\""
}
},
"variables": [
{
"name": "应用ID",
"description": "",
"env_variable": "SRCDS_APPID",
"default_value": "1794810",
"user_viewable": false,
"user_editable": false,
"rules": "required|string|in:1794810",
"field_type": "text"
},
{
"name": "安装Windows版本",
"description": "",
"env_variable": "WINDOWS_INSTALL",
"default_value": "1",
"user_viewable": false,
"user_editable": false,
"rules": "required|in:1",
"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": "MAP_NAME",
"default_value": "LargeTerrain_Central_Main",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|in:LargeTerrain_Central_Main,LargeTerrain_Central2_Main",
"field_type": "text"
},
{
"name": "服务器名称",
"description": "服务器名称",
"env_variable": "SERVER_NAME",
"default_value": "A Pterodactyl hosted server",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|max:80",
"field_type": "text"
},
{
"name": "启用PVP",
"description": "启用或禁用PVP",
"env_variable": "PVP",
"default_value": "1",
"user_viewable": true,
"user_editable": true,
"rules": "boolean",
"field_type": "text"
},
{
"name": "最大玩家数",
"description": "",
"env_variable": "MAX_PLAYERS",
"default_value": "25",
"user_viewable": true,
"user_editable": true,
"rules": "required|numeric|between:1,150",
"field_type": "text"
},
{
"name": "查询端口",
"description": "",
"env_variable": "QUERY_PORT",
"default_value": "12888",
"user_viewable": true,
"user_editable": false,
"rules": "required|numeric",
"field_type": "text"
},
{
"name": "关闭服务",
"description": "",
"env_variable": "SHUTDOWN_SERVICE",
"default_value": "1",
"user_viewable": true,
"user_editable": true,
"rules": "boolean",
"field_type": "text"
},
{
"name": "RCON 端口",
"description": "",
"env_variable": "RCON_PORT",
"default_value": "13888",
"user_viewable": true,
"user_editable": false,
"rules": "required|int",
"field_type": "text"
},
{
"name": "RCON 密码",
"description": "",
"env_variable": "RCON_PASSWORD",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "required|alpha_dash|min:5|max:32",
"field_type": "text"
},
{
"name": "管理员ID",
"description": "Steam 管理员 ID 列表",
"env_variable": "ADMIN_IDS",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string|max:128",
"field_type": "text"
},
{
"name": "额外标志",
"description": "额外标志。所有以 - 开头的标志 \n示例:-ServerLevelAddMul=1.01",
"env_variable": "EXTRA_FLAGS",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string|",
"field_type": "text"
},
{
"name": "集群ID",
"description": "",
"env_variable": "CLUSTER_ID",
"default_value": "1",
"user_viewable": true,
"user_editable": true,
"rules": "required|numeric",
"field_type": "text"
},
{
"name": "服务器ID",
"description": "",
"env_variable": "SERVER_ID",
"default_value": "100",
"user_viewable": true,
"user_editable": true,
"rules": "required|numeric",
"field_type": "text"
}
]
}附属文件
暂无附属文件
提交历史
Fork 关系
查看关系图暂无 Fork,成为第一个 Fork 的人吧!
统计
17
浏览
1
下载
0
星标
0
复刻
作者
飒
飒爽师叔
UID: 1
279 预设
·
2026-06