fz-survival-datapack/data/fz/functions/config/turnon.mcfunction

11 lines
723 B
Mcfunction
Raw Normal View History

2020-11-27 00:27:49 +08:00
#触发函数由成就和unsneak函数控制
#重置玩家的config分数避免开启设置功能后由于该玩家先前的分数而直接运行某些功能
scoreboard players reset @s config
#判断设置功能是否已经开启,如果未开启则运行主函数
2021-07-03 06:21:34 +08:00
execute unless data storage fz.config {is_open: 1b} run function fz:config/main
execute unless data storage fz.config {is_open: 1b} run scoreboard objectives add openingConfig dummy
execute unless data storage fz.config {is_open: 1b} run data merge storage fz.config {is_open: 1b}
2020-11-27 00:27:49 +08:00
#将该玩家加入打开设置页面的玩家的列表
scoreboard players set @s openingConfig 1
#将设置内容输出给玩家
function fz:config/display