语言与货币

货币

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

6,86
AUD /月
8,19
BGN /月
24,34
BRL /月
6,76
CAD /月
3,90
CHF /月
32,49
CNY /月
101,45
CZK /月
31,32
DKK /月
4,19
EUR /月
3,59
GBP /月
37,74
HKD /月
31,58
HRK /月
1.526,21
HUF /月
86.872,11
IDR /月
14,71
ILS /月
459,01
INR /月
597,49
ISK /月
771,09
JPY /月
6.946,98
KRW /月
83,60
MXN /月
19,66
MYR /月
45,85
NOK /月
8,21
NZD /月
294,84
PHP /月
18,07
PLN /月
21,98
RON /月
491,07
RUB /月
46,03
SEK /月
6,18
SGD /月
161,04
THB /月
228,70
TRY /月
4,81
USD /月
79,76
ZAR /月
37,80
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. 重新启动服务器。