This repository has been archived on 2024-08-26. You can view files and clone it, but cannot push or open issues or pull requests.
Dominion/src/main/resources/config.yml

40 lines
814 B
YAML
Raw Normal View History

2024-02-05 11:43:51 +08:00
Database:
2024-04-05 17:40:04 +08:00
Type: sqlite # pgsql, sqlite
2024-02-05 11:43:51 +08:00
Host: localhost
Port: 5432
Name: dominion
User: dominion
Pass: dominion
2024-04-22 00:19:53 +08:00
# 自动圈地大小
AutoCreateRadius: 10 #-1 表示不开启
2024-03-30 02:50:21 +08:00
# -1 表示不限制
Limit:
2024-04-22 00:19:53 +08:00
MinY: -64 # 最小Y坐标
MaxY: 320 # 最大Y坐标
SizeX: 128 # X方向最大长度
SizeY: 64 # Y方向最大长度
SizeZ: 128 # Z方向最大长度
Amount: 10 # 最大领地数量
2024-03-30 02:50:21 +08:00
Depth: 3 # 子领地深度 0不允许子领地 -1不限制
2024-04-22 00:19:53 +08:00
WorldBlackList: [] # 不允许领地的世界
2024-03-30 02:50:21 +08:00
2024-04-22 00:07:15 +08:00
Teleport:
Enable: true
# 传送延迟 秒
Delay: 0
# 冷却时间 秒
CoolDown: 0
2024-04-22 00:19:53 +08:00
# 自动清理长时间未上线玩家的领地
AutoCleanAfterDays: 180 # -1 表示不开启
# 圈地工具
Tool: ARROW
2024-02-18 14:33:47 +08:00
2024-02-15 10:55:08 +08:00
BlueMap: true
2024-04-07 14:28:10 +08:00
CheckUpdate: true
2024-02-05 11:43:51 +08:00
Debug: false