Loading...
Loading...
Compare original and translation side by side
| Question | Options | Notes |
|---|---|---|
| Where will you host? | Local PC, VPS, Game Host | Local = free, VPS = flexible, Host = easy |
| Who will have access? | Friends list (whitelist) | Start restricted |
| Starting vanilla or modded? | Vanilla first is great! | Can add mods anytime |
| World seed? | Random, specific | Can make new worlds later |
| Backups? | Manual, automated | Set schedule before playing |
Tip: Starting vanilla is perfectly fine! You can add mods later - just make a new world if needed. Many groups prefer to learn vanilla first anyway!
| 问题 | 选项 | 说明 |
|---|---|---|
| 服务器托管位置? | 本地电脑、VPS、游戏托管服务商 | 本地=免费,VPS=灵活,托管服务商=操作简便 |
| 允许哪些人访问? | 好友列表(白名单) | 初始阶段建议限制访问 |
| 从原版还是模组版开始? | 建议先从原版开始! | 可随时添加模组 |
| 世界种子? | 随机、特定种子 | 之后可创建新的世界 |
| 备份方式? | 手动备份、自动备份 | 开始游玩前设置备份计划 |
提示:从原版开始完全没问题!之后可以随时添加模组——如果需要的话,只需创建一个新世界即可。很多团队都倾向于先熟悉原版内容!
| Question | Options | Notes |
|---|---|---|
| Expected player count? | 10, 50, 100+ | Affects RAM/hosting needs |
| Moderation team? | Solo, trusted friends, hired | Plan roles |
| Rules? | PvP, griefing, chat | Document before opening |
| Server listing? | Private, public discovery | Authentication level |
| Anti-cheat? | Plugins, vanilla | Consider early |
| DDoS protection? | Host-provided, Cloudflare | Required for public |
| 问题 | 选项 | 说明 |
|---|---|---|
| 预计玩家数量? | 10人、50人、100人以上 | 影响内存/托管需求 |
| 管理团队配置? | 单人管理、信任的好友、雇佣管理员 | 规划好角色分工 |
| 服务器规则? | PvP、破坏行为、聊天规范 | 开放前先整理成文 |
| 服务器列表可见性? | 私有、公开可发现 | 关联身份验证级别 |
| 反作弊措施? | 插件、原版自带 | 尽早考虑 |
| DDoS防护? | 托管服务商提供、Cloudflare | 公开服务器必备 |
| Players | RAM | CPU | Notes |
|---|---|---|---|
| 1-5 | 4GB | 2 cores | Minimum |
| 5-20 | 8GB | 4 cores | Recommended |
| 20-50 | 16GB | 6 cores | With mods |
| 50+ | 32GB+ | 8+ cores | Heavy mods |
| 玩家数量 | 内存 | CPU | 说明 |
|---|---|---|---|
| 1-5人 | 4GB | 2核 | 最低要求 |
| 5-20人 | 8GB | 4核 | 推荐配置 |
| 20-50人 | 16GB | 6核 | 带模组场景 |
| 50人以上 | 32GB+ | 8核以上 | 重度模组场景 |
HytaleServer.jarAssets.zipHytaleServer.jarAssets.zipundefinedundefined
This creates the folder structure:undefined
此操作会生成如下文件夹结构:undefinedundefinedundefined
1. Copy the URL and code shown
2. Visit URL in browser
3. Enter code to authenticate
4. Server can now accept connections
---
1. 复制显示的URL和验证码
2. 在浏览器中访问该URL
3. 输入验证码完成身份验证
4. 服务器现在可以接受玩家连接
---{
"ServerName": "My Hytale Server",
"MOTD": "Welcome to our server!",
"Password": "",
"MaxPlayers": 20,
"MaxViewRadius": 12,
"LocalCompressionEnabled": true
}| Setting | Description |
|---|---|
| Displayed to players |
| Message of the day |
| Empty = no password |
| Concurrent player limit |
| Render distance |
{
"ServerName": "My Hytale Server",
"MOTD": "Welcome to our server!",
"Password": "",
"MaxPlayers": 20,
"MaxViewRadius": 12,
"LocalCompressionEnabled": true
}| 设置项 | 说明 |
|---|---|
| 显示给玩家的服务器名称 |
| 每日提示消息(Message of the day) |
| 留空则无需密码 |
| 同时在线玩家上限 |
| 渲染距离 |
universe/worlds/[name]/config.json{
"seed": "my-custom-seed",
"pvp": true,
"fallDamage": true,
"keepInventory": false,
"difficulty": "normal"
}universe/worlds/[name]/config.json{
"seed": "my-custom-seed",
"pvp": true,
"fallDamage": true,
"keepInventory": false,
"difficulty": "normal"
}{
"groups": {
"default": {
"permissions": [
"hytale.command.help",
"hytale.command.spawn"
]
},
"moderator": {
"inherits": ["default"],
"permissions": [
"hytale.command.kick",
"hytale.command.mute",
"hytale.command.tp"
]
},
"admin": {
"inherits": ["moderator"],
"permissions": [
"hytale.command.*",
"hytale.admin.*"
]
}
},
"users": {
"player-uuid-here": {
"groups": ["admin"]
}
}
}{
"groups": {
"default": {
"permissions": [
"hytale.command.help",
"hytale.command.spawn"
]
},
"moderator": {
"inherits": ["default"],
"permissions": [
"hytale.command.kick",
"hytale.command.mute",
"hytale.command.tp"
]
},
"admin": {
"inherits": ["moderator"],
"permissions": [
"hytale.command.*",
"hytale.admin.*"
]
}
},
"users": {
"player-uuid-here": {
"groups": ["admin"]
}
}
}undefinedundefined
---
---| Protocol | Port | Purpose |
|---|---|---|
| UDP | 5520 | Game traffic (default) |
| 协议 | 端口 | 用途 |
|---|---|---|
| UDP | 5520 | 游戏流量(默认) |
New-NetFirewallRule -DisplayName "Hytale Server" -Direction Inbound -Protocol UDP -LocalPort 5520 -Action Allowsudo ufw allow 5520/udpsudo iptables -A INPUT -p udp --dport 5520 -j ACCEPTNew-NetFirewallRule -DisplayName "Hytale Server" -Direction Inbound -Protocol UDP -LocalPort 5520 -Action Allowsudo ufw allow 5520/udpsudo iptables -A INPUT -p udp --dport 5520 -j ACCEPTjava -jar HytaleServer.jar --assets ./Assets.zip --bind 0.0.0.0:25565java -jar HytaleServer.jar --assets ./Assets.zip --bind 0.0.0.0:25565whitelist.json{
"enabled": true,
"players": [
"friend1-uuid",
"friend2-uuid"
]
}/whitelist add <username>
/whitelist remove <username>
/whitelist on
/whitelist offwhitelist.json{
"enabled": true,
"players": [
"friend1-uuid",
"friend2-uuid"
]
}/whitelist add <username>
/whitelist remove <username>
/whitelist on
/whitelist offconfig.json{
"Password": "secretpassword123"
}config.json{
"Password": "secretpassword123"
}{
"MaxPlayers": 50,
"RateLimit": {
"ConnectionsPerIP": 2,
"CommandsPerMinute": 30
}
}{
"MaxPlayers": 50,
"RateLimit": {
"ConnectionsPerIP": 2,
"CommandsPerMinute": 30
}
}| Purpose | Examples |
|---|---|
| Permissions | HyperPerms |
| Economy | HyVault |
| Protection | WorldGuard-equivalent |
| Moderation | Essentials-equivalent |
| 用途 | 示例 |
|---|---|
| 权限管理 | HyperPerms |
| 经济系统 | HyVault |
| 世界保护 | 类似WorldGuard的插件 |
| 服务器管理 | 类似Essentials的插件 |
| Pros | Cons |
|---|---|
| Free | Your hardware/bandwidth |
| Full control | You handle maintenance |
| No monthly cost | Uptime depends on you |
| 优点 | 缺点 |
|---|---|
| 免费 | 占用自身硬件/带宽 |
| 完全控制权 | 需自行维护 |
| 无月度费用 | 在线时长取决于个人 |
| Pros | Cons |
|---|---|
| Always online | Monthly cost ($10-50+) |
| Better bandwidth | Some technical knowledge |
| Scalable | You manage software |
| 优点 | 缺点 |
|---|---|
| 全天候在线 | 月度费用(10-50美元以上) |
| 带宽更优 | 需要一定技术知识 |
| 可扩展 | 需自行管理软件 |
| Pros | Cons |
|---|---|
| Easy setup | Higher cost |
| Control panel | Less flexibility |
| Support included | Limited customization |
| 优点 | 缺点 |
|---|---|
| 搭建简便 | 费用更高 |
| 提供控制面板 | 灵活性较低 |
| 包含技术支持 | 自定义空间有限 |
| Command | Description |
|---|---|
| List all commands |
| Grant admin |
| Kick player |
| Ban player |
| Allow player |
| Teleport to player |
| Change gamemode |
| List plugins |
| Reload plugins |
| Force world save |
| Gracefully stop server |
| 命令 | 说明 |
|---|---|
| 列出所有命令 |
| 授予管理员权限 |
| 踢出玩家 |
| 封禁玩家 |
| 添加白名单玩家 |
| 传送到指定玩家位置 |
| 切换游戏模式 |
| 列出已安装插件 |
| 重新加载插件 |
| 强制保存世界数据 |
| 优雅停止服务器 |
| Issue | Solution |
|---|---|
| Players can't connect | Check firewall + port forward (UDP!) |
| Authentication failed | Re-run |
| Server crashes | Check RAM allocation, reduce view distance |
| Lag | Lower MaxPlayers, optimize plugins |
| World corruption | Restore from backup |
| 问题 | 解决方案 |
|---|---|
| 玩家无法连接 | 检查防火墙设置及端口转发(注意是UDP协议!) |
| 身份验证失败 | 重新执行 |
| 服务器崩溃 | 检查内存分配,降低渲染距离 |
| 服务器卡顿 | 降低最大玩家数,优化插件 |
| 世界数据损坏 | 从备份恢复 |
undefinedundefinedundefinedundefinedundefinedundefined
---
---| Task | Command/File |
|---|---|
| Start server | |
| Authenticate | |
| Main config | |
| Permissions | |
| Whitelist | |
| Default port | UDP 5520 |
| 任务 | 命令/文件 |
|---|---|
| 启动服务器 | |
| 身份验证 | |
| 主配置文件 | |
| 权限配置文件 | |
| 白名单配置 | |
| 默认端口 | UDP 5520 |
hytale-plugin-devgit-workflowhytale-plugin-devgit-workflow