自该Mod更新至1.20.1版后,我发现/back和/Home的相关指令跟以前不同,尤其是Back无法返回上一个存档点。

会提示玩家teleportation history is empty(传送历史记录是空白的)或没有/Back指令

尤其是ATM9玩家发现我没法使用Back和Home的冷却长达数小时

在这里我稍微看了下配置文件发现和以前的版本不同。

我们来看一下修改教程吧:

  1. 我们先找到我们要修改的配置文件在哪
    位置:.minecraft/saves/你所游玩的当前存档/serverconfig,进入该目录后找到“ftbessentials.snbt”文件
    这个文件你用记事本也好VS也好,打开它。
    (没错,这货在存档文件夹里,别去根目录下的config里找了)

  2. 他的内容我看不懂怎么办   用翻译软件啊里面都英文注释了,还用我教?
    可能会有些玩家与我的不同,但也只是顺序,我会将我的配置文件代码粘贴上来,带中文注释
    在传送相关设置中,第一条设置为10秒,第二条设置为true启用,第三条自行设置他有个范围,第四条保持默认
    你可能看完会问,预设时间是什么,就是你输入指令后按下回车会有个倒计时的缓冲时间

# FTB Essentials config file
# If you're a modpack maker, edit defaultconfigs/ftbessentials-server.snbt instead

{
# Admin commands for cheating and moderation
# 管理员的相关指令
admin: {
# Allows admins to toggle flying status using a command, without having to use Creative Mode
# 允许管理员启用飞行模式,无需创造模式开启,方式/fly
fly: {
# Default: true
enabled: false
}

# Allows admins to toggle invincibility using a command, without having to use Creative Mode
# 允许管理员通过指令开启无敌,无需创造模式开启
god: {
# Default: true
enabled: true
}

# Allows admins to heal themselves using a command
# 允许管理员使用指令治疗自己
heal: {
# Default: true
enabled: true
}

# Allows admins to view other users' inventories using a command
# 允许管理员通过指令查看其他玩家背包
invsee: {
# Default: true
enabled: true
}

# Allows admins to restrict players from chatting by using a command to mute (or unmute) them
# 允许管理员通过指令使其他玩家静音或取消静音,来限制他们的聊天
mute: {
# Default: true
enabled: true
}
}

# Miscellaneous features and utilities
# 杂项与实用功能
misc: {
# Allows users to access their ender chest, as well as admins to manage other players' ender chests.
# 允许玩家访问他们的末影箱,以及管理员管理其他的末影箱
enderchest: {
# Default: true
enabled: true
}

# Allows users to set a custom hat as their head item by using a command
# 允许玩家通过指令自定义他们的帽子,指令:/hat
hat: {
# Default: true
enabled: true
}

# Allows users to kick themselves from the server, for example if they are stuck or desynced
# 允许用户将自己踢出去,列如他们被卡住或服务器不同步时
kickme: {
# Default: true
enabled: true
}

# Allows users to view leaderboard stats about everyone on the server.
# 允许用户查看服务器上每个人的排行榜统计信息
leaderboard: {
# Default: true
enabled: true
}

# Allows users to change their display name, as well as admins to change nicknames for other users
# 允许用户更改自己的显示名,也允许管理员更改其他用户的昵称
nick: {
# Default: true
enabled: true
}

# Allows users to announce their recording or streaming status to the server by using commands
# 允许用户通过命令向服务器宣布他们的录制或流媒体状态
rec: {
# Default: true
enabled: true
}

# Enables usage of a trash can inventory, which can be used to void unneeded items
# 启用垃圾桶库存,可以用来清除不需要的物品
trashcan: {
# Default: true
enabled: true
}
}

# Teleportation-related settings
# 传送相关设置
teleportation: {
# Allows users to return to their previous location after teleporting (or dying)
# 允许用户在传送(或死亡)后返回到之前的位置
back: {
# Cooldown between /back commands (in seconds)
# /back命令之间的冷却时间(单位为秒)
# You can override this with FTB Ranks using ftbessentials.back.cooldown
# #你可以通过FTB ranks使用fbessentials .back.cooldown来覆盖这个
# Default: 30
# Range: 0 ~ 604800
cooldown: 30

# Default: true
enabled: false

# Max size of the teleport history. This limits how many times you can use /back
# 传送历史记录的最大大小。这限制了您可以使用/back的次数
# You can override this with FTB Ranks using ftbessentials.back.max
# #你可以通过FTB ranks使用fbessentials .back.max来覆盖这个
# Default: 10
# Range: 0 ~ 2147483647
max: 0

# Should be the /back command only be used for returning to the last death point?
# /back命令是否只能用于返回上一个死亡点?
# Default: false
only_on_death: false

# Warm-up time before /back command executes (in seconds)
# #执行/back命令前的预热时间(单位为秒)
# You can override this with FTB Ranks using ftbessentials.back.warmup
# Default: 0
# Range: 0 ~ 604800
warmup: 0
}

# Allows users to set 'homes', which they can then freely teleport to by using /home afterwards
# 允许用户设置“家”,然后他们可以通过/home自由传送
home: {
# Cooldown between /home commands (in seconds)
# /home命令之间的冷却时间(秒)
# You can override this with FTB Ranks using ftbessentials.home.cooldown
# Default: 10
# Range: 0 ~ 604800
cooldown: 10000

# Default: true
enabled: true

# Max amount of homes a user can have.
# 一个用户可以拥有的房屋的最大数量。
# You can override this with FTB Ranks using ftbessentials.home.max
# Default: 1
# Range: 0 ~ 2147483647
max: 1

# Warm-up time before /home command executes (in seconds)
# /home命令执行前的预热时间(单位:秒)
# You can override this with FTB Ranks using ftbessentials.home.warmup
# Default: 0
# Range: 0 ~ 604800
warmup: 0
}

# Allows players to teleport to a random point in the Wilderness
# 允许玩家传送到荒野中的任意点,就是rtp随机传送
# Note: This currently does not respect Claimed Chunks yet!
rtp: {
# Cooldown between /rtp commands (in seconds)
# /rtp命令之间的冷却时间(以秒为单位)
# You can override this with FTB Ranks using ftbessentials.rtp.cooldown
# Default: 600
# Range: 0 ~ 604800
cooldown: 60000

# Blacklisted dimension ID's for /rtp (player *must not* be in any of these dimensions)
# 黑名单维度ID的/rtp(玩家*不得*在这些维度中的任何一个)
# Wildcarded dimensions (e.g. 'somemod:*') are supported
# Default: ["minecraft:the_end"]
dimension_blacklist: ["minecraft:the_end"]

# Whitelisted dimension ID's for /rtp (if non-empty, player *must* be in one of these dimensions)
# 白名单维度ID的/rtp(如果非空,玩家*必须*在这些维度之一)
# Wildcarded dimensions (e.g. 'somemod:*') are supported
# Default: []
dimension_whitelist: [ ]

# Default: true
enabled: true

# /rtp max distance from spawn point
# /rtp 最大距离
# Default: 25000
# Range: 0 ~ 30000000
max_distance: 25000

# Number of tries before /rtp gives up
# /rtp放弃前的尝试次数
# Default: 100
# Range: 1 ~ 1000
max_tries: 100

# /rtp min distance from spawn point
# /rtp 最小次数
# Default: 500
# Range: 0 ~ 30000000
min_distance: 500

# Warm-up time before /rtp command executes (in seconds)
# /rtp命令执行前的预热时间(单位:秒)
# You can override this with FTB Ranks using ftbessentials.rtp.warmup
# Default: 0
# Range: 0 ~ 604800
warmup: 0
}
spawn: {
#这个指令可以让你回到世界出生点
# Cooldown between /spawn commands (in seconds)
# /spawn命令之间的冷却时间(秒)
# You can override this with FTB Ranks using ftbessentials.spawn.cooldown
# Default: 10
# Range: 0 ~ 604800
cooldown: 10

# Default: true
enabled: true

# Warm-up time before /spawn command executes (in seconds)
# /spawn命令执行前的预热时间(以秒为单位)
# You can override this with FTB Ranks using ftbessentials.spawn.warmup
# Default: 0
# Range: 0 ~ 604800
warmup: 0
}

# Allows players to create requests to teleport to other users on the server,
# 允许玩家创建请求传送到服务器上的其他用户
# as well as requesting other players to teleport to them
# 以及请求其他玩家传送到他们身边
tpa: {
# Cooldown between /tpa commands (in seconds)
# /tpa命令之间的冷却时间(以秒为单位)
# You can override this with FTB Ranks using ftbessentials.tpa.cooldown
# Default: 10
# Range: 0 ~ 604800
cooldown: 10

# Default: true
enabled: false

# Warm-up time before /tpa command executes (in seconds)
# /tpa命令执行前的预热时间(单位:秒)
# You can override this with FTB Ranks using ftbessentials.tpa.warmup
# Default: 0
# Range: 0 ~ 604800
warmup: 0
}

# Allows admins to teleport to the location a user was last seen at
# 允许管理员传送到用户最后被看到的位置
tpl: {
# Default: true
enabled: true
}

# Allows admins to teleport to dimension
# 允许管理员传送到维度
tpx: {
# Default: true
enabled: true
}

# Allows admins to create 'warps', which are fixed points in the world that users may teleport to using /warp
# 允许管理员创建'warp ',用户可以使用/warp传送到世界上的固定点
warp: {
# Cooldown between /warp commands (in seconds)
# /warp命令之间的冷却时间(秒)
# You can override this with FTB Ranks using ftbessentials.warp.cooldown
# Default: 10
# Range: 0 ~ 604800
cooldown: 10

# Default: true
enabled: true

# Warm-up time before /warp command executes (in seconds)
# #执行/warp命令前的预热时间(单位:秒)
# You can override this with FTB Ranks using ftbessentials.warp.warmup
# Default: 0
# Range: 0 ~ 604800
warmup: 0
}
}
}