T
描述
游玩、创造、派对!Tower Unite 是一款基于社区的虚拟世界派对游戏,包含在线游戏、娱乐、活动,并且绝对没有微交易。
24 浏览
1 下载
2026-06-30
更新于 20 小时前
预设配置详情
Tower Unite
描述
游玩、创造、派对!Tower Unite 是一款基于社区的虚拟世界派对游戏,包含在线游戏、娱乐、活动,并且完全没有微交易。
令牌
此服务器需要两个令牌
- 从 https://steamcommunity.com/dev/managegameservers 获取,使用拥有此游戏的 Steam 账户,应用 ID 为
394690。 - 从 https://moderation.towerunite.com/manage_game_servers.php 获取。
服务器端口
Tower Unite 需要开放两个端口
| 端口 | 默认值 | 备注 |
|---|---|---|
| 游戏 (UDP) | 7777 | 7777-7778 |
| 查询 (UDP/TCP) | 27015 | 27015-27050 |
磁盘空间
此服务器默认使用约 5GiB 的磁盘空间。
registry.cn-shanghai.aliyuncs.com/pterodactyl-images/steamcmd:debian
./Tower/Binaries/Linux/TowerServer-Linux-Shipping {{GAME_MAP}} -log -Port={{SERVER_PORT}} -QueryPort={{QUERY_PORT}} -nosteamclient
| 变量名 | 变量 | 描述 | 默认值 | 规则 | 可查看 | 可编辑 |
|---|---|---|---|---|---|---|
| 自动保存 | AUTO_SAVE |
启用自动保存系统,该系统将在更改后定期保存公寓数据。 | True |
in:True,False
选项: True,False
|
||
| 自动更新 | AUTO_UPDATE |
在启动时自动更新服务器 | 1 |
boolean
布尔
|
||
| 游戏地图 | GAME_MAP |
你的专属公寓将使用的公寓地图。 | /Game/Maps/C_Condo |
in:/Game/Maps/C_Condo,/Game/Maps/C_House,/Game/Maps/C_SmoothDirt,/Game/Maps/C_Lobby1,/Game/Maps/C_SmoothAutumn,/Game/Maps/C_Underwater,/Game/Maps/C_Highrise,/Game/Maps/C_Studio,/Game/Maps/C_Theatre,/Game/Maps/C_Courtyard,/Game/Maps/C_IcePlanet
选项: /Game/Maps/C_Condo,/Game/Maps/C_House,/Game/Maps/C_SmoothDirt,/Game/Maps/C_Lobby1,/Game/Maps/C_SmoothAutumn,/Game/Maps/C_Underwater,/Game/Maps/C_Highrise,/Game/Maps/C_Studio,/Game/Maps/C_Theatre,/Game/Maps/C_Courtyard,/Game/Maps/C_IcePlanet
|
||
| 最大玩家数 | MAX_PLAYERS |
设置最大玩家数(2 - 64)(默认 32) | 32 |
integer|between:2,64
整数 介于 2-64 之间
|
||
| 查询端口 | QUERY_PORT |
27016 |
integer|between:1024,65535
整数 介于 1024-65535 之间
|
|||
| 服务器标题 | SERVER_TITLE |
设置服务器的标题 | My Dedicated Condo |
required|string
必填 字符串
|
||
| 应用ID | SRCDS_APPID |
439660 |
in:439660
选项: 439660
|
|||
| Steam 登录令牌 | STEAM_LOGIN_TOKEN |
设置令牌以授予您一个静态Steam ID。 https://steamcommunity.com/dev/managegameservers: APP_ID:394690 | |
required|string
必填 字符串
|
||
| Tower 登录令牌 | TOWER_LOGIN_TOKEN |
允许您连接到Tower Unite的公寓服务器列表。 https://moderation.towerunite.com/manage_game_servers.php | |
required|string
必填 字符串
|
镜像
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'
## 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 ## 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
mkdir -p /mnt/server/Tower/Saved/Config/LinuxServer/
if [ ! -f /mnt/server/Tower/Saved/Config/LinuxServer/TowerServer.ini ]; then
echo "Generating a default config file"
curl -sSL -o /mnt/server/Tower/Saved/Config/LinuxServer/TowerServer.ini https://pastebin.com/raw/zy9XTc7m
fi
cp /mnt/server/linux64/steamclient.so /mnt/server/Tower/Binaries/Linux/steamclient.so
## install end
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/128/download/egg-tower-unite.json"
},
"exported_at": "2025-12-28T10:55:54+00:00",
"name": "Tower Unite",
"author": "teamwuffy@gmail.com",
"description": "游玩、创造、派对!Tower Unite 是一款基于社区的虚拟世界派对游戏,包含在线游戏、娱乐、活动,并且绝对没有微交易。",
"features": [
"steam_disk_space"
],
"docker_images": {
"Steamcmd Debian": "registry.cn-shanghai.aliyuncs.com/pterodactyl-images/steamcmd:debian"
},
"file_denylist": [],
"startup": "./Tower/Binaries/Linux/TowerServer-Linux-Shipping {{GAME_MAP}} -log -Port={{SERVER_PORT}} -QueryPort={{QUERY_PORT}} -nosteamclient",
"config": {
"files": "{\n \"Tower/Saved/Config/LinuxServer/TowerServer.ini\": {\n \"parser\": \"file\",\n \"find\": {\n \"ServerTitle=\": \"ServerTitle={{server.build.env.SERVER_TITLE}}\",\n \"MaxPlayers=\": \"MaxPlayers={{server.build.env.MAX_PLAYERS}}\",\n \"SteamLoginToken=\": \"SteamLoginToken={{server.build.env.STEAM_LOGIN_TOKEN}}\",\n \"TowerLoginToken=\": \"TowerLoginToken={{server.build.env.TOWER_LOGIN_TOKEN}}\",\n \"CondoAutoSave=\": \"CondoAutoSave={{server.build.env.AUTO_SAVE}}\" \n }\n }\n}",
"startup": "{\n \"done\": \"LogNet: GameNetDriver SteamNetDriver_0 IpNetDriver listening on port\"\n}",
"logs": "{}",
"stop": "^C"
},
"scripts": {
"installation": {
"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## 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 ## 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\r\nmkdir -p /mnt/server/Tower/Saved/Config/LinuxServer/\r\n\r\nif [ ! -f /mnt/server/Tower/Saved/Config/LinuxServer/TowerServer.ini ]; then\r\n echo \"Generating a default config file\"\r\n curl -sSL -o /mnt/server/Tower/Saved/Config/LinuxServer/TowerServer.ini https://pastebin.com/raw/zy9XTc7m\r\nfi\r\n\r\ncp /mnt/server/linux64/steamclient.so /mnt/server/Tower/Binaries/Linux/steamclient.so\r\n\r\n\r\n## install end\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": "AUTO_SAVE",
"default_value": "True",
"user_viewable": true,
"user_editable": true,
"rules": "in:True,False",
"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": "GAME_MAP",
"default_value": "/Game/Maps/C_Condo",
"user_viewable": true,
"user_editable": true,
"rules": "in:/Game/Maps/C_Condo,/Game/Maps/C_House,/Game/Maps/C_SmoothDirt,/Game/Maps/C_Lobby1,/Game/Maps/C_SmoothAutumn,/Game/Maps/C_Underwater,/Game/Maps/C_Highrise,/Game/Maps/C_Studio,/Game/Maps/C_Theatre,/Game/Maps/C_Courtyard,/Game/Maps/C_IcePlanet",
"field_type": "text"
},
{
"name": "最大玩家数",
"description": "设置最大玩家数(2 - 64)(默认 32)",
"env_variable": "MAX_PLAYERS",
"default_value": "32",
"user_viewable": true,
"user_editable": true,
"rules": "integer|between:2,64",
"field_type": "text"
},
{
"name": "查询端口",
"description": "",
"env_variable": "QUERY_PORT",
"default_value": "27016",
"user_viewable": true,
"user_editable": false,
"rules": "integer|between:1024,65535",
"field_type": "text"
},
{
"name": "服务器标题",
"description": "设置服务器的标题",
"env_variable": "SERVER_TITLE",
"default_value": "My Dedicated Condo",
"user_viewable": true,
"user_editable": true,
"rules": "required|string",
"field_type": "text"
},
{
"name": "应用ID",
"description": "",
"env_variable": "SRCDS_APPID",
"default_value": "439660",
"user_viewable": false,
"user_editable": false,
"rules": "in:439660",
"field_type": "text"
},
{
"name": "Steam 登录令牌",
"description": "设置令牌以授予您一个静态Steam ID。 \nhttps://steamcommunity.com/dev/managegameservers: APP_ID:394690",
"env_variable": "STEAM_LOGIN_TOKEN",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "required|string",
"field_type": "text"
},
{
"name": "Tower 登录令牌",
"description": "允许您连接到Tower Unite的公寓服务器列表。\nhttps://moderation.towerunite.com/manage_game_servers.php",
"env_variable": "TOWER_LOGIN_TOKEN",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "required|string",
"field_type": "text"
}
]
}附属文件
暂无附属文件
提交历史
Fork 关系
查看关系图暂无 Fork,成为第一个 Fork 的人吧!
统计
24
浏览
1
下载
0
星标
0
复刻
作者
飒
飒爽师叔
UID: 1
279 预设
·
2026-06