完善计分板扩展接口
This commit is contained in:
parent
d74bb19964
commit
51fa09b830
9
.vscode/settings.json
vendored
9
.vscode/settings.json
vendored
@ -7,9 +7,10 @@
|
||||
"tagRemove": "tag ${1:target} remove ${2:tag}",
|
||||
"dataModifyStorageFromSelf": "data modify storage ${1:id} ${2:path} set from entity @s ${3:path}",
|
||||
"summonAec": "summon minecraft:area_effect_cloud ~ ~ ~ {Age: -2147483648, Duration: -1, WaitTime: -2147483648, Tags: [\"${1:tag}\"]}",
|
||||
"logInfo": "tellraw @a [{\"nbt\": \"fz.level.info\", \"interpret\": true, \"storage\": \"fz:logger\"}, {\"text\": \"${1:log_info}\"}]",
|
||||
"logWarn": "tellraw @a [{\"nbt\": \"fz.level.warn\", \"interpret\": true, \"storage\": \"fz:logger\"}, {\"text\": \"${1:log_warn}\"}]",
|
||||
"logError": "tellraw @a [{\"nbt\": \"fz.level.error\", \"interpret\": true, \"storage\": \"fz:logger\"}, {\"text\": \"${1:log_error}\"}]",
|
||||
"logDebug": "execute if data storage fz:logger fz{debug:1b} run tellraw @a [{\"nbt\": \"fz.level.debug\", \"interpret\": true, \"storage\": \"fz:logger\"}, {\"text\": \"${1:log_debug}\"}]",
|
||||
"logFine": "execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{\"nbt\": \"fz.level.fine\", \"interpret\": true, \"storage\": \"fz:logger\"}, {\"text\": \"${log_fine}\"}",
|
||||
"logDebug": "execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{\"nbt\": \"fz.level.debug\", \"interpret\": true, \"storage\": \"fz:logger\"}, {\"text\": \"${1:log_debug}\"}]",
|
||||
"logInfo": "execute if score fz.logger.level fz.variable.integer matches ..500 run tellraw @a [{\"nbt\": \"fz.level.info\", \"interpret\": true, \"storage\": \"fz:logger\"}, {\"text\": \"${1:log_info}\"}]",
|
||||
"logAlert": "execute if score fz.logger.level fz.variable.integer matches ..600 run tellraw @a [{\"nbt\": \"fz.level.warn\", \"interpret\": true, \"storage\": \"fz:logger\"}, {\"text\": \"${1:log_alert}\"}]",
|
||||
"logError": "execute if score fz.logger.level fz.variable.integer matches ..800 run tellraw @a [{\"nbt\": \"fz.level.error\", \"interpret\": true, \"storage\": \"fz:logger\"}, {\"text\": \"${1:log_error}\"}]",
|
||||
}
|
||||
}
|
@ -1,7 +1,6 @@
|
||||
1. 主要逻辑和模块逻辑分离
|
||||
0. 提供各种工具,位于fz.admin命名空间下,包括
|
||||
0. 细化版本管理,提供不同版本之间的升级函数,由`update_manager`控制。*务必仔细测试再发布,一旦升级无法降级!*
|
||||
0. 反馈、警告、报错和调试由`logger`控制。分别对应四个类:`info`、`warn`、`error`、`debug`
|
||||
0. 反馈、警告、报错、调试等由`logger`控制。
|
||||
0. 函数由两个以上的函数调用,或由不同包下的函数调用,或需要作为接口开放给下游数据包时,应改用标签调用!
|
||||
|
||||
### 如果需要修改计分板颜色
|
@ -1,3 +1,3 @@
|
||||
function #fz:init
|
||||
function #fz:system_load
|
||||
function #fz:install
|
||||
function #fz:load
|
@ -1,5 +1,8 @@
|
||||
# 调用者:#fz:load
|
||||
|
||||
## 常量
|
||||
scoreboard players set 10 fz.variable.integer 10
|
||||
|
||||
function #fz:module/try_load
|
||||
|
||||
## 日志
|
||||
|
@ -1,25 +1,25 @@
|
||||
# 调用者:#fz:logger/init
|
||||
##### 使用方式,形如:tellraw @a [{"nbt": "fz.exception.load_without_install_exception", "interpret": true, "storage": "fz:logger"}, {"text": "计分板"}]
|
||||
|
||||
## 前缀
|
||||
### 根
|
||||
## 根
|
||||
data modify storage fz:logger fz.root set value '[{"text": "", "color": "white"}, {"text": "[", "color": "dark_gray"}, {"text": "FZD", "color": "gold"}, {"text": "]", "color": "dark_gray"}]'
|
||||
### 不同日志等级
|
||||
#### error 800
|
||||
|
||||
## 不同日志等级
|
||||
### error 800
|
||||
data modify storage fz:logger fz.level.error set value '[{"text": "", "color": "red"}, {"nbt": "root", "interpret": true, "storage": "fz:logger"}, {"text": "[错误]"}]'
|
||||
#### alert 600
|
||||
### alert 600
|
||||
data modify storage fz:logger fz.level.alert set value '[{"text": "", "color": "yellow"}, {"nbt": "fz.root", "interpret": true, "storage": "fz:logger"}, {"text": "[提醒]"}]'
|
||||
#### info 500
|
||||
### info 500
|
||||
data modify storage fz:logger fz.level.info set value '[{"text": "", "color": "green"}, {"nbt": "fz.root", "interpret": true, "storage": "fz:logger"}, {"text": "[信息]"}]'
|
||||
#### debug 400
|
||||
### debug 400
|
||||
data modify storage fz:logger fz.level.debug set value '[{"text": "", "color": "dark_aqua"}, {"nbt": "fz.root", "interpret": true, "storage": "fz:logger"}, {"text": "[调试]"}]'
|
||||
#### fine 300
|
||||
### fine 300
|
||||
data modify storage fz:logger fz.level.fine set value '[{"text": "", "color": "gray"}, {"nbt": "fz.root", "interpret": true, "storage": "fz:logger"}, {"text": "[详细]"}]'
|
||||
|
||||
## 异常
|
||||
data modify storage fz:logger fz.exception.load_without_install_exception set value '[{"nbt": "fz.level.error", "interpret": true, "storage": "fz:logger"}, {"text": "模块在未安装时被加载:"}]'
|
||||
|
||||
## 第一次安装时日志等级默认为一般消息
|
||||
## 首次安装时日志等级默认为一般消息
|
||||
execute unless data storage fz:logger fz.levels.current run data modify storage fz:logger fz.levels.current set value 500
|
||||
|
||||
## 读取debug等级存入缓存
|
||||
|
@ -0,0 +1,10 @@
|
||||
# 调用者:#fz:module/scoreboard/display/carousel_controller/loop
|
||||
|
||||
function #fz:module/scoreboard/display/carousel/try_display
|
||||
|
||||
schedule function fz:module/scoreboard/display/carousel/loop 10s replace
|
||||
|
||||
## 自增
|
||||
scoreboard players add fz.module.scoreboard.display.current_id fz.variable.integer 1
|
||||
## 循环
|
||||
execute if score fz.module.scoreboard.display.current_id fz.variable.integer > fz.module.scoreboard.display.highest_id fz.variable.integer run scoreboard players set fz.module.scoreboard.display.current_id fz.variable.integer 0
|
@ -0,0 +1,22 @@
|
||||
# 调用者:fz:module/scoreboard/carousel/try_display/~
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.activation
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.activation
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.activation
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.activation
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.activation
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.activation
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.activation
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.activation
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.activation
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.activation
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.activation
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.activation
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.activation
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.activation
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.activation
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.activation
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.activation", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -0,0 +1,22 @@
|
||||
# 调用者:fz:module/scoreboard/carousel/try_display/~
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.aviating_distance
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.aviating_distance
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.aviating_distance
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.aviating_distance
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.aviating_distance
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.aviating_distance
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.aviating_distance
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.aviating_distance
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.aviating_distance
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.aviating_distance
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.aviating_distance
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.aviating_distance
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.aviating_distance
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.aviating_distance
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.aviating_distance
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.aviating_distance
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.aviating_distance", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -0,0 +1,22 @@
|
||||
# 调用者:fz:module/scoreboard/carousel/try_display/~
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.damage_taken
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.damage_taken
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.damage_taken
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.damage_taken
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.damage_taken
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.damage_taken
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.damage_taken
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.damage_taken
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.damage_taken
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.damage_taken
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.damage_taken
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.damage_taken
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.damage_taken
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.damage_taken
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.damage_taken
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.damage_taken
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.damage_taken", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -0,0 +1,22 @@
|
||||
# 调用者:fz:module/scoreboard/carousel/try_display/~
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.death_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.death_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.death_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.death_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.death_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.death_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.death_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.death_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.death_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.death_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.death_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.death_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.death_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.death_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.death_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.death_count
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.death_count", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -0,0 +1,22 @@
|
||||
# 调用者:fz:module/scoreboard/carousel/try_display/~
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.dig_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.dig_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.dig_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.dig_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.dig_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.dig_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.dig_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.dig_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.dig_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.dig_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.dig_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.dig_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.dig_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.dig_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.dig_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.dig_count
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.dig_count", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -0,0 +1,22 @@
|
||||
# 调用者:fz:module/scoreboard/carousel/try_display/~
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.fishing_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.fishing_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.fishing_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.fishing_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.fishing_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.fishing_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.fishing_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.fishing_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.fishing_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.fishing_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.fishing_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.fishing_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.fishing_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.fishing_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.fishing_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.fishing_count
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.fishing_count", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -0,0 +1,22 @@
|
||||
# 调用者:fz:module/scoreboard/carousel/try_display/~
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.general
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.general
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.general
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.general
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.general
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.general
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.general
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.general
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.general
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.general
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.general
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.general
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.general
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.general
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.general
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.general
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.general", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -0,0 +1,22 @@
|
||||
# 调用者:fz:module/scoreboard/carousel/try_display/~
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.kill_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.kill_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.kill_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.kill_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.kill_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.kill_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.kill_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.kill_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.kill_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.kill_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.kill_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.kill_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.kill_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.kill_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.kill_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.kill_count
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.kill_count", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -0,0 +1,22 @@
|
||||
# 调用者:fz:module/scoreboard/carousel/try_display/~
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.trade_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.trade_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.trade_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.trade_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.trade_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.trade_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.trade_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.trade_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.trade_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.trade_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.trade_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.trade_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.trade_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.trade_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.trade_count
|
||||
execute if score fz.module.scoreboard.carousel.color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.trade_count
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.trade_count", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -0,0 +1 @@
|
||||
execute if score fz.module.scoreboard.display.current_id fz.variable.integer = fz.module.scoreboard.display.id.activation fz.variable.integer run function fz:module/scoreboard/display/carousel/set_display/activation
|
@ -0,0 +1 @@
|
||||
execute if score fz.module.scoreboard.display.current_id fz.variable.integer = fz.module.scoreboard.display.id.aviating_distance fz.variable.integer run function fz:module/scoreboard/display/carousel/set_display/aviating_distance
|
@ -0,0 +1 @@
|
||||
execute if score fz.module.scoreboard.display.current_id fz.variable.integer = fz.module.scoreboard.display.id.damage_taken fz.variable.integer run function fz:module/scoreboard/display/carousel/set_display/damage_taken
|
@ -0,0 +1 @@
|
||||
execute if score fz.module.scoreboard.display.current_id fz.variable.integer = fz.module.scoreboard.display.id.death_count fz.variable.integer run function fz:module/scoreboard/display/carousel/set_display/death_count
|
@ -0,0 +1 @@
|
||||
execute if score fz.module.scoreboard.display.current_id fz.variable.integer = fz.module.scoreboard.display.id.dig_count fz.variable.integer run function fz:module/scoreboard/display/carousel/set_display/dig_count
|
@ -0,0 +1 @@
|
||||
execute if score fz.module.scoreboard.display.current_id fz.variable.integer = fz.module.scoreboard.display.id.fishing_count fz.variable.integer run function fz:module/scoreboard/display/carousel/set_display/fishing_count
|
@ -0,0 +1 @@
|
||||
execute if score fz.module.scoreboard.display.current_id fz.variable.integer = fz.module.scoreboard.display.id.general fz.variable.integer run function fz:module/scoreboard/display/carousel/set_display/general
|
@ -0,0 +1 @@
|
||||
execute if score fz.module.scoreboard.display.current_id fz.variable.integer = fz.module.scoreboard.display.id.kill_count fz.variable.integer run function fz:module/scoreboard/display/carousel/set_display/kill_count
|
@ -0,0 +1 @@
|
||||
execute if score fz.module.scoreboard.display.current_id fz.variable.integer = fz.module.scoreboard.display.id.trade_count fz.variable.integer run function fz:module/scoreboard/display/carousel/set_display/trade_count
|
@ -1,13 +0,0 @@
|
||||
# 调用者:#fz:module/scoreboard/display/carousel_controller/loop
|
||||
|
||||
function fz:module/scoreboard/display/carousel_controller/set/general
|
||||
schedule function fz:module/scoreboard/display/carousel_controller/set/activation 10s replace
|
||||
schedule function fz:module/scoreboard/display/carousel_controller/set/aviating_distance 20s replace
|
||||
schedule function fz:module/scoreboard/display/carousel_controller/set/damage_taken 30s replace
|
||||
schedule function fz:module/scoreboard/display/carousel_controller/set/death_count 40s replace
|
||||
schedule function fz:module/scoreboard/display/carousel_controller/set/dig_count 50s replace
|
||||
schedule function fz:module/scoreboard/display/carousel_controller/set/fishing_count 60s replace
|
||||
schedule function fz:module/scoreboard/display/carousel_controller/set/kill_count 70s replace
|
||||
schedule function fz:module/scoreboard/display/carousel_controller/set/trade_count 80s replace
|
||||
|
||||
schedule function fz:module/scoreboard/display/carousel_controller/loop 90s replace
|
@ -1,22 +0,0 @@
|
||||
# 调用者:fz:module/scoreboard/carousel_controller/loop
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score carousel_color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.activation
|
||||
execute if score carousel_color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.activation
|
||||
execute if score carousel_color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.activation
|
||||
execute if score carousel_color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.activation
|
||||
execute if score carousel_color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.activation
|
||||
execute if score carousel_color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.activation
|
||||
execute if score carousel_color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.activation
|
||||
execute if score carousel_color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.activation
|
||||
execute if score carousel_color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.activation
|
||||
execute if score carousel_color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.activation
|
||||
execute if score carousel_color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.activation
|
||||
execute if score carousel_color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.activation
|
||||
execute if score carousel_color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.activation
|
||||
execute if score carousel_color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.activation
|
||||
execute if score carousel_color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.activation
|
||||
execute if score carousel_color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.activation
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.activation", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -1,22 +0,0 @@
|
||||
# 调用者:fz:module/scoreboard/carousel_controller/loop
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score carousel_color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.aviating_distance
|
||||
execute if score carousel_color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.aviating_distance
|
||||
execute if score carousel_color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.aviating_distance
|
||||
execute if score carousel_color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.aviating_distance
|
||||
execute if score carousel_color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.aviating_distance
|
||||
execute if score carousel_color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.aviating_distance
|
||||
execute if score carousel_color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.aviating_distance
|
||||
execute if score carousel_color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.aviating_distance
|
||||
execute if score carousel_color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.aviating_distance
|
||||
execute if score carousel_color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.aviating_distance
|
||||
execute if score carousel_color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.aviating_distance
|
||||
execute if score carousel_color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.aviating_distance
|
||||
execute if score carousel_color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.aviating_distance
|
||||
execute if score carousel_color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.aviating_distance
|
||||
execute if score carousel_color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.aviating_distance
|
||||
execute if score carousel_color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.aviating_distance
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.aviating_distance", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -1,22 +0,0 @@
|
||||
# 调用者:fz:module/scoreboard/carousel_controller/loop
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score carousel_color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.damage_taken
|
||||
execute if score carousel_color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.damage_taken
|
||||
execute if score carousel_color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.damage_taken
|
||||
execute if score carousel_color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.damage_taken
|
||||
execute if score carousel_color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.damage_taken
|
||||
execute if score carousel_color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.damage_taken
|
||||
execute if score carousel_color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.damage_taken
|
||||
execute if score carousel_color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.damage_taken
|
||||
execute if score carousel_color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.damage_taken
|
||||
execute if score carousel_color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.damage_taken
|
||||
execute if score carousel_color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.damage_taken
|
||||
execute if score carousel_color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.damage_taken
|
||||
execute if score carousel_color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.damage_taken
|
||||
execute if score carousel_color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.damage_taken
|
||||
execute if score carousel_color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.damage_taken
|
||||
execute if score carousel_color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.damage_taken
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.damage_taken", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -1,22 +0,0 @@
|
||||
# 调用者:fz:module/scoreboard/carousel_controller/loop
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score carousel_color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.death_count
|
||||
execute if score carousel_color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.death_count
|
||||
execute if score carousel_color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.death_count
|
||||
execute if score carousel_color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.death_count
|
||||
execute if score carousel_color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.death_count
|
||||
execute if score carousel_color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.death_count
|
||||
execute if score carousel_color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.death_count
|
||||
execute if score carousel_color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.death_count
|
||||
execute if score carousel_color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.death_count
|
||||
execute if score carousel_color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.death_count
|
||||
execute if score carousel_color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.death_count
|
||||
execute if score carousel_color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.death_count
|
||||
execute if score carousel_color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.death_count
|
||||
execute if score carousel_color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.death_count
|
||||
execute if score carousel_color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.death_count
|
||||
execute if score carousel_color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.death_count
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.death_count", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -1,22 +0,0 @@
|
||||
# 调用者:fz:module/scoreboard/carousel_controller/loop
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score carousel_color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.dig_count
|
||||
execute if score carousel_color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.dig_count
|
||||
execute if score carousel_color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.dig_count
|
||||
execute if score carousel_color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.dig_count
|
||||
execute if score carousel_color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.dig_count
|
||||
execute if score carousel_color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.dig_count
|
||||
execute if score carousel_color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.dig_count
|
||||
execute if score carousel_color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.dig_count
|
||||
execute if score carousel_color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.dig_count
|
||||
execute if score carousel_color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.dig_count
|
||||
execute if score carousel_color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.dig_count
|
||||
execute if score carousel_color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.dig_count
|
||||
execute if score carousel_color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.dig_count
|
||||
execute if score carousel_color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.dig_count
|
||||
execute if score carousel_color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.dig_count
|
||||
execute if score carousel_color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.dig_count
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.dig_count", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -1,22 +0,0 @@
|
||||
# 调用者:fz:module/scoreboard/carousel_controller/loop
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score carousel_color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.fishing_count
|
||||
execute if score carousel_color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.fishing_count
|
||||
execute if score carousel_color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.fishing_count
|
||||
execute if score carousel_color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.fishing_count
|
||||
execute if score carousel_color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.fishing_count
|
||||
execute if score carousel_color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.fishing_count
|
||||
execute if score carousel_color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.fishing_count
|
||||
execute if score carousel_color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.fishing_count
|
||||
execute if score carousel_color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.fishing_count
|
||||
execute if score carousel_color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.fishing_count
|
||||
execute if score carousel_color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.fishing_count
|
||||
execute if score carousel_color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.fishing_count
|
||||
execute if score carousel_color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.fishing_count
|
||||
execute if score carousel_color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.fishing_count
|
||||
execute if score carousel_color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.fishing_count
|
||||
execute if score carousel_color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.fishing_count
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.fishing_count", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -1,22 +0,0 @@
|
||||
# 调用者:fz:module/scoreboard/carousel_controller/loop
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score carousel_color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.general
|
||||
execute if score carousel_color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.general
|
||||
execute if score carousel_color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.general
|
||||
execute if score carousel_color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.general
|
||||
execute if score carousel_color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.general
|
||||
execute if score carousel_color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.general
|
||||
execute if score carousel_color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.general
|
||||
execute if score carousel_color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.general
|
||||
execute if score carousel_color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.general
|
||||
execute if score carousel_color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.general
|
||||
execute if score carousel_color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.general
|
||||
execute if score carousel_color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.general
|
||||
execute if score carousel_color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.general
|
||||
execute if score carousel_color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.general
|
||||
execute if score carousel_color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.general
|
||||
execute if score carousel_color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.general
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.general", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -1,22 +0,0 @@
|
||||
# 调用者:fz:module/scoreboard/carousel_controller/loop
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score carousel_color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.kill_count
|
||||
execute if score carousel_color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.kill_count
|
||||
execute if score carousel_color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.kill_count
|
||||
execute if score carousel_color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.kill_count
|
||||
execute if score carousel_color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.kill_count
|
||||
execute if score carousel_color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.kill_count
|
||||
execute if score carousel_color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.kill_count
|
||||
execute if score carousel_color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.kill_count
|
||||
execute if score carousel_color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.kill_count
|
||||
execute if score carousel_color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.kill_count
|
||||
execute if score carousel_color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.kill_count
|
||||
execute if score carousel_color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.kill_count
|
||||
execute if score carousel_color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.kill_count
|
||||
execute if score carousel_color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.kill_count
|
||||
execute if score carousel_color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.kill_count
|
||||
execute if score carousel_color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.kill_count
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.kill_count", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -1,22 +0,0 @@
|
||||
# 调用者:fz:module/scoreboard/carousel_controller/loop
|
||||
|
||||
## 判断颜色代码,见:https://minecraft.fandom.com/zh/wiki/%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81
|
||||
execute if score carousel_color fz.variable.integer matches 0 run scoreboard objectives setdisplay sidebar.team.black fz.module.scoreboard.display.trade_count
|
||||
execute if score carousel_color fz.variable.integer matches 1 run scoreboard objectives setdisplay sidebar.team.dark_blue fz.module.scoreboard.display.trade_count
|
||||
execute if score carousel_color fz.variable.integer matches 2 run scoreboard objectives setdisplay sidebar.team.dark_green fz.module.scoreboard.display.trade_count
|
||||
execute if score carousel_color fz.variable.integer matches 3 run scoreboard objectives setdisplay sidebar.team.dark_aqua fz.module.scoreboard.display.trade_count
|
||||
execute if score carousel_color fz.variable.integer matches 4 run scoreboard objectives setdisplay sidebar.team.dark_red fz.module.scoreboard.display.trade_count
|
||||
execute if score carousel_color fz.variable.integer matches 5 run scoreboard objectives setdisplay sidebar.team.dark_purple fz.module.scoreboard.display.trade_count
|
||||
execute if score carousel_color fz.variable.integer matches 6 run scoreboard objectives setdisplay sidebar.team.gold fz.module.scoreboard.display.trade_count
|
||||
execute if score carousel_color fz.variable.integer matches 7 run scoreboard objectives setdisplay sidebar.team.gray fz.module.scoreboard.display.trade_count
|
||||
execute if score carousel_color fz.variable.integer matches 8 run scoreboard objectives setdisplay sidebar.team.dark_gray fz.module.scoreboard.display.trade_count
|
||||
execute if score carousel_color fz.variable.integer matches 9 run scoreboard objectives setdisplay sidebar.team.blue fz.module.scoreboard.display.trade_count
|
||||
execute if score carousel_color fz.variable.integer matches 10 run scoreboard objectives setdisplay sidebar.team.green fz.module.scoreboard.display.trade_count
|
||||
execute if score carousel_color fz.variable.integer matches 11 run scoreboard objectives setdisplay sidebar.team.aqua fz.module.scoreboard.display.trade_count
|
||||
execute if score carousel_color fz.variable.integer matches 12 run scoreboard objectives setdisplay sidebar.team.red fz.module.scoreboard.display.trade_count
|
||||
execute if score carousel_color fz.variable.integer matches 13 run scoreboard objectives setdisplay sidebar.team.light_purple fz.module.scoreboard.display.trade_count
|
||||
execute if score carousel_color fz.variable.integer matches 14 run scoreboard objectives setdisplay sidebar.team.yellow fz.module.scoreboard.display.trade_count
|
||||
execute if score carousel_color fz.variable.integer matches 15 run scoreboard objectives setdisplay sidebar.team.white fz.module.scoreboard.display.trade_count
|
||||
|
||||
## 详细
|
||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "已为队伍"}, {"nbt": "fz.scoreboard.text.carousel", "interpret": true, "storage": "fz:module"}, {"text": "显示"}, {"nbt": "fz.scoreboard.text.trade_count", "interpret": true, "storage": "fz:module"}, {"text": "计分板"}]
|
@ -0,0 +1 @@
|
||||
scoreboard players add fz.module.scoreboard.display.highest_id fz.variable.integer 1
|
@ -0,0 +1,3 @@
|
||||
#### 注册计分板id
|
||||
function #fz:calculation/highest_id_add_1
|
||||
scoreboard players operation fz.module.scoreboard.display.id.activation fz.variable.integer = fz.module.scoreboard.display.highest_id fz.variable.integer
|
@ -0,0 +1,3 @@
|
||||
#### 注册计分板id
|
||||
function #fz:calculation/highest_id_add_1
|
||||
scoreboard players operation fz.module.scoreboard.display.id.aviating_distance fz.variable.integer = fz.module.scoreboard.display.highest_id fz.variable.integer
|
@ -0,0 +1,3 @@
|
||||
#### 注册计分板id
|
||||
function #fz:calculation/highest_id_add_1
|
||||
scoreboard players operation fz.module.scoreboard.display.id.damage_taken fz.variable.integer = fz.module.scoreboard.display.highest_id fz.variable.integer
|
@ -0,0 +1,3 @@
|
||||
#### 注册计分板id
|
||||
function #fz:calculation/highest_id_add_1
|
||||
scoreboard players operation fz.module.scoreboard.display.id.death_count fz.variable.integer = fz.module.scoreboard.display.highest_id fz.variable.integer
|
@ -0,0 +1,3 @@
|
||||
#### 注册计分板id
|
||||
function #fz:calculation/highest_id_add_1
|
||||
scoreboard players operation fz.module.scoreboard.display.id.dig_count fz.variable.integer = fz.module.scoreboard.display.highest_id fz.variable.integer
|
@ -0,0 +1,3 @@
|
||||
#### 注册计分板id
|
||||
function #fz:calculation/highest_id_add_1
|
||||
scoreboard players operation fz.module.scoreboard.display.id.fishing_count fz.variable.integer = fz.module.scoreboard.display.highest_id fz.variable.integer
|
@ -0,0 +1,3 @@
|
||||
#### 注册计分板id
|
||||
function #fz:calculation/highest_id_add_1
|
||||
scoreboard players operation fz.module.scoreboard.display.id.general fz.variable.integer = fz.module.scoreboard.display.highest_id fz.variable.integer
|
@ -0,0 +1,3 @@
|
||||
#### 注册计分板id
|
||||
function #fz:calculation/highest_id_add_1
|
||||
scoreboard players operation fz.module.scoreboard.display.id.kill_count fz.variable.integer = fz.module.scoreboard.display.highest_id fz.variable.integer
|
@ -0,0 +1,3 @@
|
||||
#### 注册计分板id
|
||||
function #fz:calculation/highest_id_add_1
|
||||
scoreboard players operation fz.module.scoreboard.display.id.trade_count fz.variable.integer = fz.module.scoreboard.display.highest_id fz.variable.integer
|
@ -3,4 +3,4 @@
|
||||
data modify storage fz:module fz.scoreboard.text.carousel set value '{"text": "轮播", "color": "aqua"}'
|
||||
team modify fz.module.scoreboard.display.carousel color aqua
|
||||
team modify fz.module.scoreboard.display.carousel displayName {"text": "轮播", "color": "aqua"}
|
||||
scoreboard players set carousel_color fz.variable.integer 11
|
||||
scoreboard players set fz.module.scoreboard.carousel.color fz.variable.integer 11
|
@ -3,4 +3,4 @@
|
||||
data modify storage fz:module fz.scoreboard.text.carousel set value '{"text": "轮播", "color": "black"}'
|
||||
team modify fz.module.scoreboard.display.carousel color black
|
||||
team modify fz.module.scoreboard.display.carousel displayName {"text": "轮播", "color": "black"}
|
||||
scoreboard players set carousel_color fz.variable.integer 0
|
||||
scoreboard players set fz.module.scoreboard.carousel.color fz.variable.integer 0
|
@ -3,4 +3,4 @@
|
||||
data modify storage fz:module fz.scoreboard.text.carousel set value '{"text": "轮播", "color": "blue"}'
|
||||
team modify fz.module.scoreboard.display.carousel color blue
|
||||
team modify fz.module.scoreboard.display.carousel displayName {"text": "轮播", "color": "blue"}
|
||||
scoreboard players set carousel_color fz.variable.integer 9
|
||||
scoreboard players set fz.module.scoreboard.carousel.color fz.variable.integer 9
|
@ -3,4 +3,4 @@
|
||||
data modify storage fz:module fz.scoreboard.text.carousel set value '{"text": "轮播", "color": "dark_aqua"}'
|
||||
team modify fz.module.scoreboard.display.carousel color dark_aqua
|
||||
team modify fz.module.scoreboard.display.carousel displayName {"text": "轮播", "color": "dark_aqua"}
|
||||
scoreboard players set carousel_color fz.variable.integer 3
|
||||
scoreboard players set fz.module.scoreboard.carousel.color fz.variable.integer 3
|
@ -3,4 +3,4 @@
|
||||
data modify storage fz:module fz.scoreboard.text.carousel set value '{"text": "轮播", "color": "dark_blue"}'
|
||||
team modify fz.module.scoreboard.display.carousel color dark_blue
|
||||
team modify fz.module.scoreboard.display.carousel displayName {"text": "轮播", "color": "dark_blue"}
|
||||
scoreboard players set carousel_color fz.variable.integer 1
|
||||
scoreboard players set fz.module.scoreboard.carousel.color fz.variable.integer 1
|
@ -3,4 +3,4 @@
|
||||
data modify storage fz:module fz.scoreboard.text.carousel set value '{"text": "轮播", "color": "dark_gray"}'
|
||||
team modify fz.module.scoreboard.display.carousel color dark_gray
|
||||
team modify fz.module.scoreboard.display.carousel displayName {"text": "轮播", "color": "dark_gray"}
|
||||
scoreboard players set carousel_color fz.variable.integer 8
|
||||
scoreboard players set fz.module.scoreboard.carousel.color fz.variable.integer 8
|
@ -3,4 +3,4 @@
|
||||
data modify storage fz:module fz.scoreboard.text.carousel set value '{"text": "轮播", "color": "dark_green"}'
|
||||
team modify fz.module.scoreboard.display.carousel color dark_green
|
||||
team modify fz.module.scoreboard.display.carousel displayName {"text": "轮播", "color": "dark_green"}
|
||||
scoreboard players set carousel_color fz.variable.integer 2
|
||||
scoreboard players set fz.module.scoreboard.carousel.color fz.variable.integer 2
|
@ -3,4 +3,4 @@
|
||||
data modify storage fz:module fz.scoreboard.text.carousel set value '{"text": "轮播", "color": "dark_purple"}'
|
||||
team modify fz.module.scoreboard.display.carousel color dark_purple
|
||||
team modify fz.module.scoreboard.display.carousel displayName {"text": "轮播", "color": "dark_purple"}
|
||||
scoreboard players set carousel_color fz.variable.integer 5
|
||||
scoreboard players set fz.module.scoreboard.carousel.color fz.variable.integer 5
|
@ -3,4 +3,4 @@
|
||||
data modify storage fz:module fz.scoreboard.text.carousel set value '{"text": "轮播", "color": "dark_red"}'
|
||||
team modify fz.module.scoreboard.display.carousel color dark_red
|
||||
team modify fz.module.scoreboard.display.carousel displayName {"text": "轮播", "color": "dark_red"}
|
||||
scoreboard players set carousel_color fz.variable.integer 4
|
||||
scoreboard players set fz.module.scoreboard.carousel.color fz.variable.integer 4
|
@ -3,4 +3,4 @@
|
||||
data modify storage fz:module fz.scoreboard.text.carousel set value '{"text": "轮播", "color": "gold"}'
|
||||
team modify fz.module.scoreboard.display.carousel color gold
|
||||
team modify fz.module.scoreboard.display.carousel displayName {"text": "轮播", "color": "gold"}
|
||||
scoreboard players set carousel_color fz.variable.integer 6
|
||||
scoreboard players set fz.module.scoreboard.carousel.color fz.variable.integer 6
|
@ -3,4 +3,4 @@
|
||||
data modify storage fz:module fz.scoreboard.text.carousel set value '{"text": "轮播", "color": "gray"}'
|
||||
team modify fz.module.scoreboard.display.carousel color gray
|
||||
team modify fz.module.scoreboard.display.carousel displayName {"text": "轮播", "color": "gray"}
|
||||
scoreboard players set carousel_color fz.variable.integer 7
|
||||
scoreboard players set fz.module.scoreboard.carousel.color fz.variable.integer 7
|
@ -3,4 +3,4 @@
|
||||
data modify storage fz:module fz.scoreboard.text.carousel set value '{"text": "轮播", "color": "green"}'
|
||||
team modify fz.module.scoreboard.display.carousel color green
|
||||
team modify fz.module.scoreboard.display.carousel displayName {"text": "轮播", "color": "green"}
|
||||
scoreboard players set carousel_color fz.variable.integer 10
|
||||
scoreboard players set fz.module.scoreboard.carousel.color fz.variable.integer 10
|
@ -3,4 +3,4 @@
|
||||
data modify storage fz:module fz.scoreboard.text.carousel set value '{"text": "轮播", "color": "light_purple"}'
|
||||
team modify fz.module.scoreboard.display.carousel color light_purple
|
||||
team modify fz.module.scoreboard.display.carousel displayName {"text": "轮播", "color": "light_purple"}
|
||||
scoreboard players set carousel_color fz.variable.integer 13
|
||||
scoreboard players set fz.module.scoreboard.carousel.color fz.variable.integer 13
|
@ -3,4 +3,4 @@
|
||||
data modify storage fz:module fz.scoreboard.text.carousel set value '{"text": "轮播", "color": "red"}'
|
||||
team modify fz.module.scoreboard.display.carousel color red
|
||||
team modify fz.module.scoreboard.display.carousel displayName {"text": "轮播", "color": "red"}
|
||||
scoreboard players set carousel_color fz.variable.integer 12
|
||||
scoreboard players set fz.module.scoreboard.carousel.color fz.variable.integer 12
|
@ -3,4 +3,4 @@
|
||||
data modify storage fz:module fz.scoreboard.text.carousel set value '{"text": "轮播", "color": "white"}'
|
||||
team modify fz.module.scoreboard.display.carousel color white
|
||||
team modify fz.module.scoreboard.display.carousel displayName {"text": "轮播", "color": "white"}
|
||||
scoreboard players set carousel_color fz.variable.integer 15
|
||||
scoreboard players set fz.module.scoreboard.carousel.color fz.variable.integer 15
|
@ -3,4 +3,4 @@
|
||||
data modify storage fz:module fz.scoreboard.text.carousel set value '{"text": "轮播", "color": "yellow"}'
|
||||
team modify fz.module.scoreboard.display.carousel color yellow
|
||||
team modify fz.module.scoreboard.display.carousel displayName {"text": "轮播", "color": "yellow"}
|
||||
scoreboard players set carousel_color fz.variable.integer 14
|
||||
scoreboard players set fz.module.scoreboard.carousel.color fz.variable.integer 14
|
@ -1,5 +1,6 @@
|
||||
# 调用者:#fz:module/scoreboard/install
|
||||
|
||||
|
||||
## 主计分板
|
||||
###### 判据均为dummy,便于升级维护!
|
||||
|
||||
|
@ -1,10 +1,7 @@
|
||||
# 调用者:#fz:module/scoreboard/load
|
||||
|
||||
## 异常检测
|
||||
execute unless data storage fz:install_manager fz.module{scoreboard: 1b} if score fz.logger.level fz.variable.integer matches ..800 run tellraw @a [{"nbt": "fz.exception.load_without_install_exception", "interpret": true, "storage": "fz:logger"}, {"text": "计分板"}]
|
||||
|
||||
## 设置颜色和名称
|
||||
function #fz:module/scoreboard/display/set_text/set_all
|
||||
execute unless data storage fz:install_manager fz.module{scoreboard: 1b} run tellraw @a [{"nbt": "fz.exception.load_without_install_exception", "interpret": true, "storage": "fz:logger"}, {"text": "计分板"}]
|
||||
|
||||
## 调试
|
||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "计分板显示文本已设为:"}]
|
||||
@ -18,8 +15,16 @@ execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @
|
||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"text": "", "color": "green"}, {"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "fz.module.scoreboard.display.kill_count - "}, {"nbt": "fz.scoreboard.text.kill_count", "interpret": true, "storage": "fz:module"}]
|
||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"text": "", "color": "green"}, {"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "fz.module.scoreboard.display.trade_count - "}, {"nbt": "fz.scoreboard.text.trade_count", "interpret": true, "storage": "fz:module"}]
|
||||
|
||||
## 初始化计分板
|
||||
### 重置计分板最大id计数
|
||||
scoreboard players set fz.module.scoreboard.display.highest_id fz.variable.integer -1
|
||||
### 设置颜色、名称、运行时数字id,同时会计算最大id数
|
||||
function #fz:module/scoreboard/display/init
|
||||
|
||||
## 重置轮播计分板ID
|
||||
scoreboard players set fz.module.scoreboard.display.current_id fz.variable.integer 0
|
||||
## 开启轮播循环
|
||||
function fz:module/scoreboard/display/carousel_controller/loop
|
||||
function fz:module/scoreboard/display/carousel/loop
|
||||
|
||||
## 日志
|
||||
execute if score fz.logger.level fz.variable.integer matches ..500 run tellraw @a [{"nbt": "fz.level.info", "interpret": true, "storage": "fz:logger"}, {"text": "已加载组件:计分板"}]
|
6
data/fz/tags/functions/calculation/highest_id_add_1.json
Normal file
6
data/fz/tags/functions/calculation/highest_id_add_1.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"replace": true,
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/highest_id_add_1"
|
||||
]
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"#fz:module/scoreboard/display/carousel/try_display/activation",
|
||||
"#fz:module/scoreboard/display/carousel/try_display/aviating_distance",
|
||||
"#fz:module/scoreboard/display/carousel/try_display/damage_taken",
|
||||
"#fz:module/scoreboard/display/carousel/try_display/death_count",
|
||||
"#fz:module/scoreboard/display/carousel/try_display/dig_count",
|
||||
"#fz:module/scoreboard/display/carousel/try_display/fishing_count",
|
||||
"#fz:module/scoreboard/display/carousel/try_display/general",
|
||||
"#fz:module/scoreboard/display/carousel/try_display/kill_count",
|
||||
"#fz:module/scoreboard/display/carousel/try_display/trade_count"
|
||||
]
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/carousel/try_display/activation"
|
||||
]
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/carousel/try_display/aviating_distance"
|
||||
]
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/carousel/try_display/damage_taken"
|
||||
]
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/carousel/try_display/death_count"
|
||||
]
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/carousel/try_display/dig_count"
|
||||
]
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/carousel/try_display/fishing_count"
|
||||
]
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/carousel/try_display/general"
|
||||
]
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/carousel/try_display/kill_count"
|
||||
]
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/carousel/try_display/trade_count"
|
||||
]
|
||||
}
|
20
data/fz/tags/functions/module/scoreboard/display/init.json
Normal file
20
data/fz/tags/functions/module/scoreboard/display/init.json
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
"__comments": [
|
||||
"调用者:fz:module/scoreboard/load",
|
||||
"用于在加载时储存计分板颜色,不同计分板不得使用同一颜色!",
|
||||
"建议不要直接修改本文件,可编写扩展数据包并覆写本标签!"
|
||||
],
|
||||
"replace": false,
|
||||
"values": [
|
||||
"#fz:module/scoreboard/display/init/carousel",
|
||||
"#fz:module/scoreboard/display/init/activation",
|
||||
"#fz:module/scoreboard/display/init/aviating_distance",
|
||||
"#fz:module/scoreboard/display/init/damage_taken",
|
||||
"#fz:module/scoreboard/display/init/death_count",
|
||||
"#fz:module/scoreboard/display/init/dig_count",
|
||||
"#fz:module/scoreboard/display/init/fishing_count",
|
||||
"#fz:module/scoreboard/display/init/general",
|
||||
"#fz:module/scoreboard/display/init/kill_count",
|
||||
"#fz:module/scoreboard/display/init/trade_count"
|
||||
]
|
||||
}
|
@ -1,13 +1,13 @@
|
||||
{
|
||||
"__comments": [
|
||||
"调用者:#fz:module/scoreboard/display/set_text/store_all",
|
||||
"调用者:#fz:module/scoreboard/display/init",
|
||||
"用于在加载时储存计分板颜色,不同计分板不得使用同一颜色!",
|
||||
"建议不要直接修改本文件,可编写扩展数据包并覆写本标签!"
|
||||
],
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/set_text/activation/aqua"
|
||||
"fz:module/scoreboard/display/set_text/activation/aqua",
|
||||
"fz:module/scoreboard/display/register_id/activation"
|
||||
]
|
||||
}
|
@ -1,13 +1,13 @@
|
||||
{
|
||||
"__comments": [
|
||||
"调用者:#fz:module/scoreboard/display/set_text/store_all",
|
||||
"调用者:#fz:module/scoreboard/display/init",
|
||||
"用于在加载时储存计分板颜色,不同计分板不得使用同一颜色!",
|
||||
"建议不要直接修改本文件,可编写扩展数据包并覆写本标签!"
|
||||
],
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/set_text/aviating_distance/light_purple"
|
||||
"fz:module/scoreboard/display/set_text/aviating_distance/light_purple",
|
||||
"fz:module/scoreboard/display/register_id/aviating_distance"
|
||||
]
|
||||
}
|
@ -1,12 +1,11 @@
|
||||
{
|
||||
"__comments": [
|
||||
"调用者:#fz:module/scoreboard/display/set_text/store_all",
|
||||
"调用者:#fz:module/scoreboard/display/init",
|
||||
"用于在加载时储存计分板颜色,不同计分板不得使用同一颜色!",
|
||||
"建议不要直接修改本文件,可编写扩展数据包并覆写本标签!"
|
||||
],
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/set_text/carousel/gold"
|
||||
]
|
@ -1,13 +1,13 @@
|
||||
{
|
||||
"__comments": [
|
||||
"调用者:#fz:module/scoreboard/display/set_text/store_all",
|
||||
"调用者:#fz:module/scoreboard/display/init",
|
||||
"用于在加载时储存计分板颜色,不同计分板不得使用同一颜色!",
|
||||
"建议不要直接修改本文件,可编写扩展数据包并覆写本标签!"
|
||||
],
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/set_text/damage_taken/yellow"
|
||||
"fz:module/scoreboard/display/set_text/damage_taken/yellow",
|
||||
"fz:module/scoreboard/display/register_id/damage_taken"
|
||||
]
|
||||
}
|
@ -1,13 +1,13 @@
|
||||
{
|
||||
"__comments": [
|
||||
"调用者:#fz:module/scoreboard/display/set_text/store_all",
|
||||
"调用者:#fz:module/scoreboard/display/init",
|
||||
"用于在加载时储存计分板颜色,不同计分板不得使用同一颜色!",
|
||||
"建议不要直接修改本文件,可编写扩展数据包并覆写本标签!"
|
||||
],
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/set_text/death_count/dark_red"
|
||||
"fz:module/scoreboard/display/set_text/death_count/dark_red",
|
||||
"fz:module/scoreboard/display/register_id/death_count"
|
||||
]
|
||||
}
|
@ -1,13 +1,13 @@
|
||||
{
|
||||
"__comments": [
|
||||
"调用者:#fz:module/scoreboard/display/set_text/store_all",
|
||||
"调用者:#fz:module/scoreboard/display/init",
|
||||
"用于在加载时储存计分板颜色,不同计分板不得使用同一颜色!",
|
||||
"建议不要直接修改本文件,可编写扩展数据包并覆写本标签!"
|
||||
],
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/set_text/dig_count/gray"
|
||||
"fz:module/scoreboard/display/set_text/dig_count/gray",
|
||||
"fz:module/scoreboard/display/register_id/dig_count"
|
||||
]
|
||||
}
|
@ -1,13 +1,13 @@
|
||||
{
|
||||
"__comments": [
|
||||
"调用者:#fz:module/scoreboard/display/set_text/store_all",
|
||||
"调用者:#fz:module/scoreboard/display/init",
|
||||
"用于在加载时储存计分板颜色,不同计分板不得使用同一颜色!",
|
||||
"建议不要直接修改本文件,可编写扩展数据包并覆写本标签!"
|
||||
],
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/set_text/fishing_count/blue"
|
||||
"fz:module/scoreboard/display/set_text/fishing_count/blue",
|
||||
"fz:module/scoreboard/display/register_id/fishing_count"
|
||||
]
|
||||
}
|
@ -1,13 +1,13 @@
|
||||
{
|
||||
"__comments": [
|
||||
"调用者:#fz:module/scoreboard/display/set_text/store_all",
|
||||
"调用者:#fz:module/scoreboard/display/init",
|
||||
"用于在加载时储存计分板颜色,不同计分板不得使用同一颜色!",
|
||||
"建议不要直接修改本文件,可编写扩展数据包并覆写本标签!"
|
||||
],
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/set_text/general/dark_aqua"
|
||||
"fz:module/scoreboard/display/set_text/general/dark_aqua",
|
||||
"fz:module/scoreboard/display/register_id/general"
|
||||
]
|
||||
}
|
@ -1,13 +1,13 @@
|
||||
{
|
||||
"__comments": [
|
||||
"调用者:#fz:module/scoreboard/display/set_text/store_all",
|
||||
"调用者:#fz:module/scoreboard/display/init",
|
||||
"用于在加载时储存计分板颜色,不同计分板不得使用同一颜色!",
|
||||
"建议不要直接修改本文件,可编写扩展数据包并覆写本标签!"
|
||||
],
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/set_text/kill_count/red"
|
||||
"fz:module/scoreboard/display/set_text/kill_count/red",
|
||||
"fz:module/scoreboard/display/register_id/kill_count"
|
||||
]
|
||||
}
|
@ -1,13 +1,13 @@
|
||||
{
|
||||
"__comments": [
|
||||
"调用者:#fz:module/scoreboard/display/set_text/store_all",
|
||||
"调用者:#fz:module/scoreboard/display/init",
|
||||
"用于在加载时储存计分板颜色,不同计分板不得使用同一颜色!",
|
||||
"建议不要直接修改本文件,可编写扩展数据包并覆写本标签!"
|
||||
],
|
||||
"__comment_replace": "编写扩展数据包时必须为true",
|
||||
"replace": false,
|
||||
"__comment_values": "此处只能填入一个函数!",
|
||||
"values": [
|
||||
"fz:module/scoreboard/display/set_text/trade_count/green"
|
||||
"fz:module/scoreboard/display/set_text/trade_count/green",
|
||||
"fz:module/scoreboard/display/register_id/trade_count"
|
||||
]
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
{
|
||||
"__comments": [
|
||||
"调用者:fz:module/scoreboard/load",
|
||||
"用于在加载时储存计分板颜色,不同计分板不得使用同一颜色!",
|
||||
"建议不要直接修改本文件,可编写扩展数据包并覆写本标签!"
|
||||
],
|
||||
"replace": false,
|
||||
"values": [
|
||||
"#fz:module/scoreboard/display/set_text/carousel",
|
||||
"#fz:module/scoreboard/display/set_text/activation",
|
||||
"#fz:module/scoreboard/display/set_text/aviating_distance",
|
||||
"#fz:module/scoreboard/display/set_text/damage_taken",
|
||||
"#fz:module/scoreboard/display/set_text/death_count",
|
||||
"#fz:module/scoreboard/display/set_text/dig_count",
|
||||
"#fz:module/scoreboard/display/set_text/fishing_count",
|
||||
"#fz:module/scoreboard/display/set_text/general",
|
||||
"#fz:module/scoreboard/display/set_text/kill_count",
|
||||
"#fz:module/scoreboard/display/set_text/trade_count"
|
||||
]
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"fz:init"
|
||||
"fz:system_load"
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user