语言与货币

货币

Hytale: 你的游戏,你的服务器

6,96
AUD /月
8,19
BGN /月
25,50
BRL /月
6,76
CAD /月
3,81
CHF /月
33,92
CNY /月
101,58
CZK /月
31,31
DKK /月
4,19
EUR /月
3,67
GBP /月
38,70
HKD /月
31,58
HRK /月
1.578,08
HUF /月
83.103,20
IDR /月
15,55
ILS /月
450,51
INR /月
601,27
ISK /月
771,50
JPY /月
7.132,43
KRW /月
85,14
MXN /月
19,25
MYR /月
46,96
NOK /月
8,27
NZD /月
285,32
PHP /月
17,70
PLN /月
21,35
RON /月
491,07
RUB /月
44,68
SEK /月
6,26
SGD /月
153,76
THB /月
217,44
TRY /月
4,95
USD /月
78,85
ZAR /月
12,70
date /月

修改玩家死亡惩罚设置

你想在游戏中死亡后保留物品栏吗?
还是全部丢失?
或者只丢失一部分?
下面将说明如何调整相应设置。

下载配置文件

  1. 如果尚未启动,请先启动你的服务器。
    重要:否则所需的 FTP 无法使用。
  2. 然后停止服务器。
  3. 使用 FTP 客户端连接到 游戏服务器 FTP
    所需的登录信息可在服务器设置的 FTP 中找到。
  4. 进入以下目录:
    hytale-data/Server/universe/worlds/NameDeinerWelt
    默认的世界名称为 Default
  5. 下载 config.json

编辑配置文件

使用例如 Notepad 打开 config.json
与死亡相关的可用设置如下:

设置项说明取值
ItemsLossMode控制玩家死亡时的总体行为None:全部保留
All:全部丢失
Configured:允许更精细的设置
ItemsAmountLossPercentage仅在模式为 Configured 时生效。
控制死亡时每个物品堆会丢失的百分比
0 - 100
ItemsDurabilityLossPercentage仅在模式为 Configured 时生效。
物品耐久度损失的百分比
0 - 100


  1. 找到以下这一行:
    "GameplayConfig": "Default",
  2. 在其下一行插入以下片段:
"Death": {
   "RespawnController": {
     "Type": "HomeOrSpawnPoint"
   },
   "ItemsLossMode": "Configured",
   "ItemsAmountLossPercentage": 50.0,
   "ItemsDurabilityLossPercentage": 10.0
 },
  1. 该部分现在应如下所示:
"GameplayConfig": "Default",
"Death": {
  "RespawnController": {
    "Type": "HomeOrSpawnPoint"
  },
  "ItemsLossMode": "Configured",
  "ItemsAmountLossPercentage": 50.0,
  "ItemsDurabilityLossPercentage": 10.0
},
  1. 根据需要调整 ItemsLossModeItemsAmountLossPercentageItemsDurabilityLossPercentage 的取值。
  2. 保存修改。

上传配置文件

  1. 请确保服务器仍处于停止状态。
  2. 使用 FTP 客户端连接到 游戏服务器 FTP
  3. 将修改后的 config.json 上传到以下目录:
    hytale-data/Server/universe/worlds/NameDeinerWelt
    请确保覆盖已有的 config.json
  4. 重新启动服务器。