介绍
传送请求是 Neutron 同名功能的独立实现。
指令列表
指令 | 作用 | 权限节点(仅 LuckPerms 加载时) |
/trtpa 玩家名称 | 请求传送到目标玩家的位置
| tprequest.common.tpa
|
/trtpahere 玩家名称 | 请求目标玩家传送到发送者的位置
| tprequest.common.tpahere
|
/trtpcancel | 取消待定请求
| tprequest.common.tpcancel |
/trtpaccept | 接受待定请求 | tprequest.common.tpaccept |
/trtpdeny | 拒绝待定请求 | tprequest.common.tpdeny |
/trtpignore | 忽略待定请求 | tprequest.common.tpignore |
/tprequest help | 查看所有相关指令及用途 | tprequest.common.help |
/tprequest reload | 重载配置文件 | tprequest.admin.reload |
注:本模组默认为所有 /trxxx 指令注册简短版本,如 /tpaccept(/trtpaccept)。可在配置文件中调整。
配置文件
Forge
.minecraft/config/tprequest-common.toml
# 传送请求-配置文件
[general]
# 传送请求被接受后,作用于请求发送者的冷却时间(刻)
#Range: > 0
tpCd = 600
# 传送请求的有效时间(刻)
#Range: > 0
expirationTime = 1200
# 是否注册简短版本指令
shortAlternatives = true
# 传送成功后播放的提示音,留空("")以关闭
notificationSound = "minecraft:entity.enderman.teleport"
Fabric < 1.1.0
.minecraft/config/TeleportationRequest-Config.properties
# 传送请求-配置文件
# 传送请求被接受后,作用于请求发送者的冷却时间(刻)
tpCd=100
# 传送请求的有效时间(刻)
expirationTime=1200
# 是否注册简短版本指令
shortAlternatives=true
# 传送成功后播放的提示音,留空以关闭
notificationSound=minecraft:entity.enderman.teleport
Fabric ≥ 1.1.0
.minecraft/config/tprequest.yaml
!!committee.nova.tprequest.cfg.TprConfig
# 传送请求的有效时间(刻)
expirationTime: 600
# 传送成功后播放的提示音,留空以关闭
notificationSound: minecraft:entity.enderman.teleport
# /trtpa 的别名(替代指令)
saTpa: [tpa]
# /trtpaccept 的别名
saTpaccept: [tpaccept, tpyes]
# /trtpahere 的别名
saTpahere: [tpahere]
# /trtpcancel 的别名
saTpcancel: [tpcancel]
# /trtpdeny 的别名
saTpdeny: [tpdeny, tpno]
# /trtpignore 的别名
saTpignore: [tpignore]
# 传送请求被接受后,作用于请求发送者的冷却时间(刻)
tpCd: 600
注意事项