Compare commits
4 Commits
v3.0-beta.4
..
2.0
| Author | SHA1 | Date | |
|---|---|---|---|
| 198ec6889f | |||
| f4b5b84ad8 | |||
| a15a320414 | |||
| 28605849d0 |
Vendored
-20
@@ -1,20 +0,0 @@
|
|||||||
{
|
|
||||||
"datapack.snippets": {
|
|
||||||
"executeIfScoreSet": "execute if score ${1:score_holder} ${2:objective} = ${1:score_holder} ${2:objective} $0",
|
|
||||||
"scoreboardPlayersOperation": "scoreboard players operation ${1:target_score_holder} ${2:target_objective} ${3|+=,-=,*=,/=,%=,=,>,<,<>|} ${4:source_score_holder} ${5:source_objective}",
|
|
||||||
"scoreboardPlayersSet": "scoreboard players set ${1:score_holder} ${2:objective} ${3:0}",
|
|
||||||
"scoreboardAddObjective": "scoreboard objectives add ${1:objective} ${2:dummy}",
|
|
||||||
"tagAdd": "tag ${1:target} add ${2:tag}",
|
|
||||||
"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}\"]}",
|
|
||||||
"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.alert\", \"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}\"}]",
|
|
||||||
"TEXT": "{\"text\": \"${1:TEXT}\", \"color\": \"${2:COLOR}\"}",
|
|
||||||
"storageText": "{\"nbt\": \"${1:NBT}\", \"interpret\": true, \"storage\": \"${2:A namespaced ID}\"}",
|
|
||||||
"ifInstalled": "execute if data storage fz:installed fz.module{${1:module_name}:1b} run ${tellraw}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,118 +0,0 @@
|
|||||||
# 开发文档
|
|
||||||
|
|
||||||
|
|
||||||
## 指引
|
|
||||||
- `函数`,指数据包`<命名空间>/functions`目录下的`.mcfunction`文件
|
|
||||||
- `标签`,指数据包`<命名空间>/tags`目录下的`.json`文件
|
|
||||||
- `覆盖标签并填入函数`时,`replace`为`true`
|
|
||||||
``` json
|
|
||||||
{
|
|
||||||
"replace": true,
|
|
||||||
"values": ...
|
|
||||||
}
|
|
||||||
```
|
|
||||||
- `向标签中注册函数`时,`replace`为`false`
|
|
||||||
``` json
|
|
||||||
{
|
|
||||||
"replace": false,
|
|
||||||
"values": ...
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
## 基本要求
|
|
||||||
- 接口逻辑和模块逻辑分离
|
|
||||||
- 函数由两个以上的函数调用,或由不同包下的函数调用,或需要作为接口开放给下游数据包时,应改用标签调用!
|
|
||||||
- 函数调用尽量不要使用`function`命令,应改在标签中按顺序调用!
|
|
||||||
|
|
||||||
|
|
||||||
## 未来计划
|
|
||||||
- 细化版本管理,提供不同版本之间的升级函数,由`update_manager`控制。*务必仔细测试再发布,一旦升级无法降级!*
|
|
||||||
- playerdata相关功能
|
|
||||||
|
|
||||||
|
|
||||||
## 系统模块
|
|
||||||
|
|
||||||
### 频繁使用的计算单元
|
|
||||||
- [`#fz:calculation/*`](data/fz/tags/functions/calculation/)标签通常被用来进行简单重复的计算任务
|
|
||||||
|
|
||||||
### 事件模块
|
|
||||||
- 通常由**进度**触发,触发后调用同名的事件标签
|
|
||||||
- 在[`#fz:game_event/(<...>/)on_<事件>`](data/fz/tags/functions/game_event/)标签中注册触发时需要调用的函数即可
|
|
||||||
|
|
||||||
### 日志模块
|
|
||||||
- 仓库中提供了日志相关的代码片段,位于[`.vscode/settings.json`](.vscode/settings.json)
|
|
||||||
- 暂时没有找到方法在服务端控制台打印日志,但会被记录在客户端
|
|
||||||
|
|
||||||
#### 详细 Fine
|
|
||||||
- 等级:300
|
|
||||||
- 使用方法:`execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "你的日志"}`
|
|
||||||
|
|
||||||
#### 调试 Debug
|
|
||||||
- 等级:400
|
|
||||||
- 使用方法:`execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "你的日志"}`
|
|
||||||
|
|
||||||
#### 信息 Info
|
|
||||||
- 等级:500
|
|
||||||
- 使用方法:`execute if score fz.logger.level fz.variable.integer matches ..500 run tellraw @a [{"nbt": "fz.level.info", "interpret": true, "storage": "fz:logger"}, {"text": "你的日志"}`
|
|
||||||
|
|
||||||
#### 提醒 Alert
|
|
||||||
- 等级:600
|
|
||||||
- 使用方法:`execute if score fz.logger.level fz.variable.integer matches ..600 run tellraw @a [{"nbt": "fz.level.alert", "interpret": true, "storage": "fz:logger"}, {"text": "你的日志"}`
|
|
||||||
|
|
||||||
#### 意外 Exception
|
|
||||||
###### 暂不提供
|
|
||||||
|
|
||||||
#### 错误 Error
|
|
||||||
- 等级:800
|
|
||||||
- 使用方法:`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. 定义一个显示按钮时执行的函数,使用形如`tellraw @s {"text": "[按钮]", "clickEvent": {"action": "run_command", "value": "/trigger fz.module.config.trigger set <触发器分数>"}}`的指令定义按钮。
|
|
||||||
- 大多数情况下这里的触发器分数必须是独一无二的
|
|
||||||
- 建议使用`>10000`的随机数作为自定义按钮的触发器分数
|
|
||||||
2. 在[`#fz:module/config/display`](data/fz/tags/functions/module/config/display.json)标签中注册上述函数
|
|
||||||
3. 定义一个点击按钮时执行的函数,使用形如`execute if score @s fz.module.config.trigger matches <min>..<max> run ...`的指令判断玩家的触发器分数,并执行你的操作
|
|
||||||
4. 如需在点击后重新显示一遍配置页面,请在上述函数中调用一次[`#fz:module/config/display`](data/fz/tags/functions/module/config/display.json)标签,**请不要将此标签直接注册到[`#fz:module/config/on_click`](data/fz/tags/functions/module/config/on_click.json)标签中**
|
|
||||||
5. 在[`#fz:module/config/on_click`](data/fz/tags/functions/module/config/on_click.json)标签中注册上述函数
|
|
||||||
|
|
||||||
#### 其他接口
|
|
||||||
- 标签[`#fz:module/config/timeout`](data/fz/tags/functions/module/config/timeout.json):超时时的操作
|
|
||||||
- 标签[`#fz:module/config/reset_trigger`](data/fz/tags/functions/module/config/reset_trigger.json):重置玩家`@s`的触发器计分板
|
|
||||||
|
|
||||||
### 计分板模块
|
|
||||||
|
|
||||||
#### 自定义计分板颜色
|
|
||||||
- 数据包提供了所有计分板的全部16色命名函数
|
|
||||||
- 使用方法:**覆盖**[`#fz:module/scoreboard/display/set_text/<计分板名称>`](data/fz/tags/functions/module/scoreboard/display/set_text/)标签,填入[`fz:module/scoreboard/display/set_text/<计分板名称>/<颜色名称>`](data/fz/functions/module/scoreboard/display/set_text/)函数
|
|
||||||
|
|
||||||
#### 自定义计分板名称
|
|
||||||
1. 定义一个设置计分板颜色、文本的函数,格式可以参考[`fz:module/scoreboard/display/set_text/general/*`](data/fz/functions/module/scoreboard/display/set_text/general/)函数
|
|
||||||
2. **覆盖**[`#fz:module/scoreboard/display/set_text/<计分板名称>`](data/fz/tags/functions/module/scoreboard/display/set_text/)标签,填入上述函数
|
|
||||||
|
|
||||||
#### 扩展自己的计分板
|
|
||||||
1. 定义一个安装函数,参考[`fz:module/scoreboard/install`](data/fz/functions/module/scoreboard/install.mcfunction)函数
|
|
||||||
2. 在[`#fz:module/scoreboard/install`](data/fz/tags/functions/module/scoreboard/install.json)标签中注册该函数
|
|
||||||
3. 按照“自定义计分板颜色”和“自定义计分板名称”中的操作,定义你的计分板颜色和名称
|
|
||||||
4. 定义一个生成计分板运行时id的函数,参考[`fz:module/scoreboard/display/register_id`](data/fz/functions/module/scoreboard/display/register_id.mcfunction)函数
|
|
||||||
5. 在[`#fz:module/scoreboard/display/register_id`](data/fz/tags/functions/module/scoreboard/display/register_id.json)标签中注册该函数
|
|
||||||
6. 定义一个用来在轮播时显示你的计分板的函数,参考[`fz:module/scoreboard/display/carousel/set_display/*`](data/fz/functions/module/scoreboard/display/carousel/set_display/activation.mcfunction)函数
|
|
||||||
7. 定义一个用来判断在轮播时是否轮到你的计分板的函数,在判断后调用上一条中的函数,参考[`fz:module/scoreboard/display/carousel/try_display/*`](data/fz/functions/module/scoreboard/display/carousel/try_display/activation.mcfunction)函数
|
|
||||||
8. 将该函数注册到[`#fz:module/scoreboard/display/try_display`](data/fz/tags/functions/module/scoreboard/display/carousel/try_display.json)标签中
|
|
||||||
|
|
||||||
|
|
||||||
## 自定义模块
|
|
||||||
|
|
||||||
#### 注册安装、卸载、加载函数
|
|
||||||
- 在下列标签中注册你的安装、卸载、加载函数:
|
|
||||||
- [`#fz:system/install/module`](data/fz/tags/functions/system/install/module.json)
|
|
||||||
- [`#fz:system/uninstall/module`](data/fz/tags/functions/system/uninstall/module.json)
|
|
||||||
- [`#fz:system/load/module`](data/fz/tags/functions/system/load/module.json)
|
|
||||||
|
|
||||||
#### 注册设置页面
|
|
||||||
- 见[按钮操作](#按钮操作)
|
|
||||||
@@ -1,20 +1,674 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
FZSD许可证
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
2022/7/20 https://gitee.com/harvey-husky/fz-survival-datapack/LICENSE
|
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
版权所有 © 2019-2022 延皓<https://gitee.com/harvey-husky><https://space.bilibili.com/677233356>
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
定义:
|
Preamble
|
||||||
“该许可证”指FZSD许可证。
|
|
||||||
“该软件”指许可在该许可证下的程序和相关文档的集合。
|
The GNU General Public License is a free, copyleft license for
|
||||||
“官方网址”指由版权所有者提供的该软件的发布网址。
|
software and other kinds of works.
|
||||||
|
|
||||||
您对该软件的复制、使用、修改及分发受如下条款的约束:
|
The licenses for most software and other practical works are designed
|
||||||
1. 禁止添加、修改或删除该许可证的内容。
|
to take away your freedom to share and change the works. By contrast,
|
||||||
2. 禁止未经授权的转载、销售或二次发布该软件。
|
the GNU General Public License is intended to guarantee your freedom to
|
||||||
3. 禁止添加、修改或抹除该软件中的原作者署名。
|
share and change all versions of a program--to make sure it remains free
|
||||||
4. 如果您从部署了该软件的Minecraft服务器中以任何方式获取了收益,则您必须在游戏中的明显位置明确告知用户您的Minecraft服务器使用了该软件,并附上官方网址。
|
software for all its users. We, the Free Software Foundation, use the
|
||||||
5. 如果您修改了该软件中的任何内容,您必须将修改部分开源在主流开源平台(如gitee<https://gitee.com/>或github<https://github.com/>等)。
|
GNU General Public License for most of our software; it applies also to
|
||||||
6. 如果您修改了该软件中的任何内容,您必须保留该许可证,但您可以追加其他许可证(不包括不支持附加条款的许可证)。当您添加的许可证中的条款与该许可证冲突时,必须以该许可证为准。
|
any other work released this way by its authors. You can apply it to
|
||||||
7. 该软件在提供时不带任何明示或默示的担保。在任何情况下,版权所有者不对任何人因使用该软件而引发的任何直接或间接损失承担任何责任。
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to prevent others from denying you
|
||||||
|
these rights or asking you to surrender the rights. Therefore, you have
|
||||||
|
certain responsibilities if you distribute copies of the software, or if
|
||||||
|
you modify it: responsibilities to respect the freedom of others.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must pass on to the recipients the same
|
||||||
|
freedoms that you received. You must make sure that they, too, receive
|
||||||
|
or can get the source code. And you must show them these terms so they
|
||||||
|
know their rights.
|
||||||
|
|
||||||
|
Developers that use the GNU GPL protect your rights with two steps:
|
||||||
|
(1) assert copyright on the software, and (2) offer you this License
|
||||||
|
giving you legal permission to copy, distribute and/or modify it.
|
||||||
|
|
||||||
|
For the developers' and authors' protection, the GPL clearly explains
|
||||||
|
that there is no warranty for this free software. For both users' and
|
||||||
|
authors' sake, the GPL requires that modified versions be marked as
|
||||||
|
changed, so that their problems will not be attributed erroneously to
|
||||||
|
authors of previous versions.
|
||||||
|
|
||||||
|
Some devices are designed to deny users access to install or run
|
||||||
|
modified versions of the software inside them, although the manufacturer
|
||||||
|
can do so. This is fundamentally incompatible with the aim of
|
||||||
|
protecting users' freedom to change the software. The systematic
|
||||||
|
pattern of such abuse occurs in the area of products for individuals to
|
||||||
|
use, which is precisely where it is most unacceptable. Therefore, we
|
||||||
|
have designed this version of the GPL to prohibit the practice for those
|
||||||
|
products. If such problems arise substantially in other domains, we
|
||||||
|
stand ready to extend this provision to those domains in future versions
|
||||||
|
of the GPL, as needed to protect the freedom of users.
|
||||||
|
|
||||||
|
Finally, every program is threatened constantly by software patents.
|
||||||
|
States should not allow patents to restrict development and use of
|
||||||
|
software on general-purpose computers, but in those that do, we wish to
|
||||||
|
avoid the special danger that patents applied to a free program could
|
||||||
|
make it effectively proprietary. To prevent this, the GPL assures that
|
||||||
|
patents cannot be used to render the program non-free.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU General Public License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||||
|
works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of an
|
||||||
|
exact copy. The resulting work is called a "modified version" of the
|
||||||
|
earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user through
|
||||||
|
a computer network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices"
|
||||||
|
to the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work
|
||||||
|
for making modifications to it. "Object code" means any non-source
|
||||||
|
form of a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users
|
||||||
|
can regenerate automatically from other parts of the Corresponding
|
||||||
|
Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that
|
||||||
|
same work.
|
||||||
|
|
||||||
|
2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not
|
||||||
|
convey, without conditions so long as your license otherwise remains
|
||||||
|
in force. You may convey covered works to others for the sole purpose
|
||||||
|
of having them make modifications exclusively for you, or provide you
|
||||||
|
with facilities for running those works, provided that you comply with
|
||||||
|
the terms of this License in conveying all material for which you do
|
||||||
|
not control copyright. Those thus making or running the covered works
|
||||||
|
for you must do so exclusively on your behalf, under your direction
|
||||||
|
and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under
|
||||||
|
the conditions stated below. Sublicensing is not allowed; section 10
|
||||||
|
makes it unnecessary.
|
||||||
|
|
||||||
|
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention
|
||||||
|
is effected by exercising rights under this License with respect to
|
||||||
|
the covered work, and you disclaim any intention to limit operation or
|
||||||
|
modification of the work as a means of enforcing, against the work's
|
||||||
|
users, your or third parties' legal rights to forbid circumvention of
|
||||||
|
technological measures.
|
||||||
|
|
||||||
|
4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
|
||||||
|
b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under section
|
||||||
|
7. This requirement modifies the requirement in section 4 to
|
||||||
|
"keep intact all notices".
|
||||||
|
|
||||||
|
c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
|
||||||
|
d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms
|
||||||
|
of sections 4 and 5, provided that you also convey the
|
||||||
|
machine-readable Corresponding Source under the terms of this License,
|
||||||
|
in one of these ways:
|
||||||
|
|
||||||
|
a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
|
||||||
|
b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the
|
||||||
|
Corresponding Source from a network server at no charge.
|
||||||
|
|
||||||
|
c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
|
||||||
|
d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
|
||||||
|
e) Convey the object code using peer-to-peer transmission, provided
|
||||||
|
you inform other peers where the object code and Corresponding
|
||||||
|
Source of the work are being offered to the general public at no
|
||||||
|
charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal, family,
|
||||||
|
or household purposes, or (2) anything designed or sold for incorporation
|
||||||
|
into a dwelling. In determining whether a product is a consumer product,
|
||||||
|
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||||
|
product received by a particular user, "normally used" refers to a
|
||||||
|
typical or common use of that class of product, regardless of the status
|
||||||
|
of the particular user or of the way in which the particular user
|
||||||
|
actually uses, or expects or is expected to use, the product. A product
|
||||||
|
is a consumer product regardless of whether the product has substantial
|
||||||
|
commercial, industrial or non-consumer uses, unless such uses represent
|
||||||
|
the only significant mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to install
|
||||||
|
and execute modified versions of a covered work in that User Product from
|
||||||
|
a modified version of its Corresponding Source. The information must
|
||||||
|
suffice to ensure that the continued functioning of the modified object
|
||||||
|
code is in no case prevented or interfered with solely because
|
||||||
|
modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates
|
||||||
|
for a work that has been modified or installed by the recipient, or for
|
||||||
|
the User Product in which it has been modified or installed. Access to a
|
||||||
|
network may be denied when the modification itself materially and
|
||||||
|
adversely affects the operation of the network or violates the rules and
|
||||||
|
protocols for communication across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders of
|
||||||
|
that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
|
||||||
|
b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
|
||||||
|
c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
|
||||||
|
d) Limiting the use for publicity purposes of names of licensors or
|
||||||
|
authors of the material; or
|
||||||
|
|
||||||
|
e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
|
||||||
|
f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions of
|
||||||
|
it) with contractual assumptions of liability to the recipient, for
|
||||||
|
any liability that these contractual assumptions directly impose on
|
||||||
|
those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions;
|
||||||
|
the above requirements apply either way.
|
||||||
|
|
||||||
|
8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your
|
||||||
|
license from a particular copyright holder is reinstated (a)
|
||||||
|
provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and (b) permanently, if the copyright
|
||||||
|
holder fails to notify you of the violation by some reasonable means
|
||||||
|
prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or
|
||||||
|
run a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims
|
||||||
|
owned or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within
|
||||||
|
the scope of its coverage, prohibits the exercise of, or is
|
||||||
|
conditioned on the non-exercise of one or more of the rights that are
|
||||||
|
specifically granted under this License. You may not convey a covered
|
||||||
|
work if you are a party to an arrangement with a third party that is
|
||||||
|
in the business of distributing software, under which you make payment
|
||||||
|
to the third party based on the extent of your activity of conveying
|
||||||
|
the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory
|
||||||
|
patent license (a) in connection with copies of the covered work
|
||||||
|
conveyed by you (or copies made from those copies), or (b) primarily
|
||||||
|
for and in connection with specific products or compilations that
|
||||||
|
contain the covered work, unless you entered into that arrangement,
|
||||||
|
or that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you may
|
||||||
|
not convey it at all. For example, if you agree to terms that obligate you
|
||||||
|
to collect a royalty for further conveying from those to whom you convey
|
||||||
|
the Program, the only way you could satisfy both those terms and this
|
||||||
|
License would be to refrain entirely from conveying the Program.
|
||||||
|
|
||||||
|
13. Use with the GNU Affero General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU Affero General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the special requirements of the GNU Affero General Public License,
|
||||||
|
section 13, concerning interaction through a network will apply to the
|
||||||
|
combination as such.
|
||||||
|
|
||||||
|
14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of
|
||||||
|
the GNU General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Program specifies that a certain numbered version of the GNU General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU General Public License, you may choose any version ever published
|
||||||
|
by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future
|
||||||
|
versions of the GNU General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||||
|
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||||
|
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||||
|
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||||
|
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||||
|
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||||
|
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||||
|
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||||
|
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||||
|
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||||
|
SUCH DAMAGES.
|
||||||
|
|
||||||
|
17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
state the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program does terminal interaction, make it output a short
|
||||||
|
notice like this when it starts in an interactive mode:
|
||||||
|
|
||||||
|
<program> Copyright (C) <year> <name of author>
|
||||||
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, your program's commands
|
||||||
|
might be different; for a GUI interface, you would use an "about box".
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or school,
|
||||||
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||||
|
For more information on this, and how to apply and follow the GNU GPL, see
|
||||||
|
<http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
The GNU General Public License does not permit incorporating your program
|
||||||
|
into proprietary programs. If your program is a subroutine library, you
|
||||||
|
may consider it more useful to permit linking proprietary applications with
|
||||||
|
the library. If this is what you want to do, use the GNU Lesser General
|
||||||
|
Public License instead of this License. But first, please read
|
||||||
|
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||||
|
|||||||
@@ -1,9 +1,103 @@
|
|||||||
# FZ datapack 3.0 版
|
# FZ-sDataPack
|
||||||
|
A Minecraft Datapack
|
||||||
啊哈! 欢迎来到FZ数据包的3.0区域
|
#### @Author: Harvey_Husky
|
||||||
|
|
||||||
不过很抱歉,这里还在装修,得等一段时间,谢谢!
|
#### This project is licensed under the terms of the GNU General Public License v3.0.
|
||||||
|
#### Copyright (C)2019-2021 Harvey_Husky
|
||||||
目前已有的东西:
|
### 总览
|
||||||
|
- v2.1.x支持Minecraft1.17+
|
||||||
- `scripts`
|
- v2.0.x支持Minecraft1.16.3-1.16.5
|
||||||
|
- 抬头并按一下shift来打开设置界面
|
||||||
|
- 提供一些地毯脚本:*请在升级数据包的同时替换这些工具!!*
|
||||||
|
- 安装方法:
|
||||||
|
- 需要carpet mod 1.4.24+:https://github.com/gnembon/fabric-carpet/releases
|
||||||
|
- 将其放入“world/scripts”中(在客户端位于“.minecraft/saves/存档名/scripts”或“.minecraft/config/carpet/scripts”)
|
||||||
|
- here.sc:
|
||||||
|
- “/here”向所有人发送自己的位置和所在维度
|
||||||
|
- 发送的消息使用voxelmap可识别的数组格式
|
||||||
|
- 安装voxelmap mod后,左键高亮该坐标,ctrl+左键新建坐标点
|
||||||
|
- c.sc
|
||||||
|
- “/c”修改玩家模式为旁观模式
|
||||||
|
- s.sc
|
||||||
|
- “/s”修改玩家模式为生存模式
|
||||||
|
- tagplayer.sc:
|
||||||
|
- 这个工具可以防止将地毯mod生成的假人计入记分板
|
||||||
|
- 可以通过自定义文件名来自定义游戏内命令
|
||||||
|
- 配置文件:
|
||||||
|
- “allow_bot_tp”:用于控制是否允许tp假人
|
||||||
|
- “allow_spawning_whitelist_players”:用于控制是否允许生成白名单内的玩家
|
||||||
|
- 使用方法:
|
||||||
|
- 输入“/script load tagplayer”加载工具
|
||||||
|
- 包含全部地毯假人自带的功能,以及新功能,如:
|
||||||
|
- “/tagplayer check xxx”:检查玩家的状态
|
||||||
|
- “/tagplayer checkall”:检查所有玩家的状态
|
||||||
|
- “/tagplayer killall”:清除所有假人
|
||||||
|
- 其他用法可以在游戏内输入“/tagplayer”查看
|
||||||
|
- restore_scores.sc:
|
||||||
|
- 从数据包1.4升级时也需要使用这个工具
|
||||||
|
- 这个工具可以从白名单读取玩家列表,逐一召唤假人,读取统计信息并赋值给记分板
|
||||||
|
- 悄悄说一句没白名单的服把usercache.json复制一份改成whitelist.json就可以啦
|
||||||
|
- *注意:原有的记分板会被删除*
|
||||||
|
- 使用方法:
|
||||||
|
- 输入“/script load restore_scores”加载工具
|
||||||
|
- 输入“/restore_scores by_whitelist”开始恢复
|
||||||
|
- 输入“/script unload restore_scores”卸载工具
|
||||||
|
- 记得用完就删掉它!
|
||||||
|
- 无需配置即可支持该铁头功破基岩榜Mod:https://gitee.com/harvey-husky/FZ-BBL/releases
|
||||||
|
- 破基岩榜的分数和订阅设置会在铁头功记分板的总分大于0时显示,以免未添加该mod的服务器显示破基岩榜
|
||||||
|
##### v2.1.0
|
||||||
|
- 仅支持1.17+
|
||||||
|
- 修复使用部分工具和方块交互时挖掘榜会减分的bug
|
||||||
|
- 为榜单恢复插件新增新版本的新方块
|
||||||
|
##### v2.0.8
|
||||||
|
- 修复在末地使用/here时,世界名称显示为世界id的bug
|
||||||
|
- 修复tagplayer可以随意传送玩家的bug
|
||||||
|
- 修复记分板轮播时不显示击杀榜的bug
|
||||||
|
- 修复没有破基岩榜时依然会轮播破基岩榜的bug
|
||||||
|
- 为/tagplayer tp指令添加了配置文件
|
||||||
|
##### v2.0.3
|
||||||
|
- 修复在不添加tagplayer工具时记分板不加分的bug
|
||||||
|
##### v2.0.2
|
||||||
|
- 修复在使用carpet-1.4.22或以上版本时,tagplayer的玩家名错乱的bug
|
||||||
|
##### v2.0.1.8
|
||||||
|
- 修复使用金斧头挖掘会导致总量+2的bug
|
||||||
|
- 修复使用金锄头挖掘不会给挖掘榜加分
|
||||||
|
- 修复主手有铲子,斧头,锄头时,副手放置方块会导致挖掘榜-1的bug(原版bug,通过toolsfix2成就修复)
|
||||||
|
##### v2.0.1.7
|
||||||
|
- 修复有时设置界面打不开的bug
|
||||||
|
- 修复交易榜只加一次分的bug..
|
||||||
|
- 修复tagplayer中的事件多次触发的bug
|
||||||
|
##### v2.0.1.6
|
||||||
|
- tagplayer现在可以通过自定义文件名来自定义游戏内命令
|
||||||
|
- 修复铁制工具依然不统计记分板的bug...
|
||||||
|
##### v2.0.1.3
|
||||||
|
- 修复部分铁质工具不统计挖掘榜的bug
|
||||||
|
##### v2.0.1.1
|
||||||
|
- 为设置界面的计分板添加悬浮文本
|
||||||
|
- 无需配置即可支持该铁头功破基岩榜Mod:https://gitee.com/harvey-husky/FZ-BBL/releases
|
||||||
|
- 破基岩榜的分数和订阅设置会在铁头功记分板的总分大于0时显示,以免未添加该mod的服务器显示破基岩榜
|
||||||
|
##### v2.0.0.11
|
||||||
|
- “/tagplayer spawn xxx”后面现在可以追加“at”、“facing”、“in”参数
|
||||||
|
##### v2.0.0.10
|
||||||
|
- 扫地机添加了位于怪物血条栏的文字提示,同时添加了各种提示的开关功能
|
||||||
|
##### v2.0.0.9
|
||||||
|
- 修复矿车白名单状态反了的bug
|
||||||
|
##### v2.0.0.8
|
||||||
|
- 添加c.sc、s.sc、here.sc工具
|
||||||
|
##### v2.0.0.7
|
||||||
|
- tagplayer添加了新版carpet新指令,可以为假人切换热键栏
|
||||||
|
- 现在tagplayer需要carpet1.4.21或以上版本运行!
|
||||||
|
- 现在tagplayer可以给自己设置动作了
|
||||||
|
- 添加“/tagplayer shadow”指令将自己变为前缀为“挂机”的假人
|
||||||
|
##### v2.0.0.6
|
||||||
|
- 修复restore_scores.sc工具不能恢复受伤害榜(抖M榜)的bug
|
||||||
|
##### v2.0.0.5
|
||||||
|
- 修复挖掘榜部分工具不起作用的bug
|
||||||
|
- 添加restore_scores.sc工具便于恢复或从1.0版本升级记分板
|
||||||
|
##### v2.0.0.4
|
||||||
|
- 添加彩色字体
|
||||||
|
##### v2.0.0.3
|
||||||
|
- tagplayer需要地毯mod1.4.18或以上版本来运行
|
||||||
|
- 优化了tagplayer体验及修复若干bug
|
||||||
|
##### v2.0.0.2
|
||||||
|
- 重写
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
__config() -> {
|
||||||
|
'stay_loaded' -> true
|
||||||
|
};
|
||||||
|
__command() -> (
|
||||||
|
run('gamemode spectator');
|
||||||
|
run('execute at @s run tp @s ~ ~0.2 ~')
|
||||||
|
)
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"replace": false,
|
|
||||||
"values": [
|
|
||||||
"fz:logger/level/debug"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"replace": false,
|
|
||||||
"values": [
|
|
||||||
"fz:logger/level/fine"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"replace": false,
|
|
||||||
"values": [
|
|
||||||
"fz:logger/level/info"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"replace": false,
|
|
||||||
"values": [
|
|
||||||
{
|
|
||||||
"id": "fz.admin:preset_carpet",
|
|
||||||
"required": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
+19
-27
@@ -1,28 +1,20 @@
|
|||||||
{
|
{
|
||||||
"parent": "fz:game_event",
|
"criteria": {
|
||||||
"criteria": {
|
"config_check_sneak":{
|
||||||
"on_sneak": {
|
"trigger": "minecraft:tick",
|
||||||
"trigger": "minecraft:tick",
|
"conditions": {
|
||||||
"conditions": {
|
"player": [
|
||||||
"player": [
|
{
|
||||||
{
|
"condition": "minecraft:entity_properties",
|
||||||
"condition": "minecraft:reference",
|
"entity": "this",
|
||||||
"name": "fz:is_real_player"
|
"predicate": {
|
||||||
},
|
"flags": {
|
||||||
{
|
"is_sneaking": true
|
||||||
"condition": "minecraft:entity_properties",
|
}
|
||||||
"entity": "this",
|
}
|
||||||
"predicate": {
|
}
|
||||||
"flags": {
|
]
|
||||||
"is_sneaking": true
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rewards": {
|
|
||||||
"function": "fz:game_event/advancement/on_sneak"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
+27
-33
@@ -1,34 +1,28 @@
|
|||||||
{
|
{
|
||||||
"parent": "fz:game_event/on_sneak",
|
"criteria": {
|
||||||
"criteria": {
|
"config_check_sneak":{
|
||||||
"on_unsneak": {
|
"trigger": "minecraft:tick",
|
||||||
"trigger": "minecraft:tick",
|
"conditions": {
|
||||||
"conditions": {
|
"player": [
|
||||||
"player": [
|
{
|
||||||
{
|
"condition": "minecraft:entity_properties",
|
||||||
"condition": "minecraft:reference",
|
"entity": "this",
|
||||||
"name": "fz:is_real_player"
|
"predicate": {
|
||||||
},
|
"player": {
|
||||||
{
|
"advancements": {
|
||||||
"condition": "minecraft:entity_properties",
|
"fz:config/sneak": true
|
||||||
"entity": "this",
|
}
|
||||||
"predicate": {
|
},
|
||||||
"flags": {
|
"flags": {
|
||||||
"is_sneaking": false
|
"is_sneaking": false
|
||||||
},
|
}
|
||||||
"type_specific": {
|
}
|
||||||
"type": "player",
|
}
|
||||||
"advancements": {
|
]
|
||||||
"fz:game_event/on_sneak": true
|
}
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
}
|
"rewards": {
|
||||||
}
|
"function": "fz:config/unsneak"
|
||||||
]
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rewards": {
|
|
||||||
"function": "fz:game_event/advancement/on_unsneak"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"criteria": {
|
|
||||||
"root":{
|
|
||||||
"trigger": "minecraft:impossible"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
{
|
|
||||||
"parent": "fz:game_event",
|
|
||||||
"criteria": {
|
|
||||||
"on_entered_nether_portal": {
|
|
||||||
"trigger": "minecraft:changed_dimension",
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:reference",
|
|
||||||
"name": "fz:is_real_player"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"location": {
|
|
||||||
"block": {
|
|
||||||
"blocks": [
|
|
||||||
"minecraft:nether_portal"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rewards": {
|
|
||||||
"function": "fz:game_event/advancement/on_entered_nether_portal"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
{
|
|
||||||
"parent": "fz:game_event",
|
|
||||||
"criteria": {
|
|
||||||
"on_fished": {
|
|
||||||
"trigger": "minecraft:fishing_rod_hooked",
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:reference",
|
|
||||||
"name": "fz:is_real_player"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"item": {
|
|
||||||
"tag": "fz:raw_fishes"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rewards": {
|
|
||||||
"function": "fz:game_event/advancement/on_fished"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
{
|
|
||||||
"parent": "fz:game_event",
|
|
||||||
"criteria": {
|
|
||||||
"on_hurt_entity_with_tools": {
|
|
||||||
"trigger": "minecraft:player_hurt_entity",
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:reference",
|
|
||||||
"name": "fz:is_real_player"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"equipment": {
|
|
||||||
"mainhand": {
|
|
||||||
"tag": "fz:tools"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rewards": {
|
|
||||||
"function": "fz:game_event/advancement/on_hurt_entity_with_tools"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
{
|
|
||||||
"parent": "fz:game_event",
|
|
||||||
"criteria": {
|
|
||||||
"on_killed_mob_or_player": {
|
|
||||||
"trigger": "minecraft:player_killed_entity",
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:reference",
|
|
||||||
"name": "fz:is_real_player"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:inverted",
|
|
||||||
"term": {
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "#fz:ignore_on_player_killed_entity"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"killing_blow": {
|
|
||||||
"bypasses_invulnerability": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rewards": {
|
|
||||||
"function": "fz:game_event/advancement/on_killed_mob_or_player"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
{
|
|
||||||
"parent": "fz:game_event",
|
|
||||||
"criteria": {
|
|
||||||
"on_piglin_trade": {
|
|
||||||
"trigger": "minecraft:thrown_item_picked_up_by_entity",
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:reference",
|
|
||||||
"name": "fz:is_real_player"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entity": {
|
|
||||||
"type": "minecraft:piglin",
|
|
||||||
"flags": {
|
|
||||||
"is_baby": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rewards": {
|
|
||||||
"function": "fz:game_event/advancement/on_piglin_trade"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"parent": "fz:game_event",
|
|
||||||
"criteria": {
|
|
||||||
"on_placed_block": {
|
|
||||||
"trigger": "minecraft:placed_block",
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:reference",
|
|
||||||
"name": "fz:is_real_player"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rewards": {
|
|
||||||
"function": "fz:game_event/advancement/on_placed_block"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
{
|
|
||||||
"parent": "fz:game_event",
|
|
||||||
"criteria": {
|
|
||||||
"on_shears_used_on_entity": {
|
|
||||||
"trigger": "minecraft:player_interacted_with_entity",
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:reference",
|
|
||||||
"name": "fz:is_real_player"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entity": {
|
|
||||||
"type": "#fz:shearable"
|
|
||||||
},
|
|
||||||
"item": {
|
|
||||||
"tag": "fz:tool/shears"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rewards": {
|
|
||||||
"function": "fz:game_event/advancement/on_shears_used_on_entity"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
{
|
|
||||||
"parent": "fz:game_event",
|
|
||||||
"criteria": {
|
|
||||||
"on_tools_used_on_block": {
|
|
||||||
"__comment": "斧子剥树皮会触发两次!",
|
|
||||||
"trigger": "minecraft:item_used_on_block",
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:reference",
|
|
||||||
"name": "fz:is_real_player"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"item": {
|
|
||||||
"tag": "fz:tools"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rewards": {
|
|
||||||
"function": "fz:game_event/advancement/on_tools_used_on_block"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
{
|
|
||||||
"parent": "fz:game_event",
|
|
||||||
"criteria": {
|
|
||||||
"on_used_tool": {
|
|
||||||
"trigger": "minecraft:tick",
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:reference",
|
|
||||||
"entity": "this",
|
|
||||||
"name": "fz:used_tool"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rewards": {
|
|
||||||
"function": "fz:game_event/advancement/on_used_tool"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"parent": "fz:game_event",
|
|
||||||
"criteria": {
|
|
||||||
"on_villager_trade": {
|
|
||||||
"trigger": "minecraft:villager_trade",
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:reference",
|
|
||||||
"name": "fz:is_real_player"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rewards": {
|
|
||||||
"function": "fz:game_event/advancement/on_villager_trade"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+26
-26
@@ -1,27 +1,27 @@
|
|||||||
{
|
{
|
||||||
"parent": "fz:game_event",
|
"criteria": {
|
||||||
"criteria": {
|
"leave_game": {
|
||||||
"on_login": {
|
"trigger": "minecraft:tick",
|
||||||
"trigger": "tick",
|
"conditions": {
|
||||||
"conditions": {
|
"player": [
|
||||||
"player": [
|
{
|
||||||
{
|
"condition": "minecraft:inverted",
|
||||||
"condition": "minecraft:inverted",
|
"term": {
|
||||||
"term": {
|
"condition": "minecraft:entity_scores",
|
||||||
"condition": "minecraft:entity_scores",
|
"entity": "this",
|
||||||
"entity": "this",
|
"scores": {
|
||||||
"scores": {
|
"leaveGame": {
|
||||||
"fz.event.leave_game": {
|
"min": -2147483648,
|
||||||
"max": 0
|
"max": 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rewards": {
|
"rewards": {
|
||||||
"function": "fz:game_event/advancement/on_login"
|
"function": "fz:login/onlogin"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"criteria": {
|
|
||||||
"interactor": {
|
|
||||||
"trigger": "minecraft:impossible"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+23
-23
@@ -1,24 +1,24 @@
|
|||||||
{
|
{
|
||||||
"parent": "fz:game_event",
|
"criteria": {
|
||||||
"criteria": {
|
"activation": {
|
||||||
"on_aviate_one_meter": {
|
"trigger": "minecraft:tick",
|
||||||
"trigger": "minecraft:tick",
|
"conditions": {
|
||||||
"conditions": {
|
"player": [
|
||||||
"player": [
|
{
|
||||||
{
|
"condition": "minecraft:entity_scores",
|
||||||
"condition": "minecraft:entity_scores",
|
"entity": "this",
|
||||||
"entity": "this",
|
"scores": {
|
||||||
"scores": {
|
"actimeCounter": {
|
||||||
"fz.event.aviating_distance": {
|
"max": 3600,
|
||||||
"min": 200
|
"min": 3600
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rewards": {
|
"rewards": {
|
||||||
"function": "fz:game_event/advancement/on_aviate_one_meter"
|
"function": "fz:scoreboards/activation/calculator"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+5
-5
@@ -1,7 +1,6 @@
|
|||||||
{
|
{
|
||||||
"parent": "fz:game_event",
|
|
||||||
"criteria": {
|
"criteria": {
|
||||||
"on_dead": {
|
"damage_taken": {
|
||||||
"trigger": "minecraft:tick",
|
"trigger": "minecraft:tick",
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"player": [
|
"player": [
|
||||||
@@ -9,8 +8,9 @@
|
|||||||
"condition": "minecraft:entity_scores",
|
"condition": "minecraft:entity_scores",
|
||||||
"entity": "this",
|
"entity": "this",
|
||||||
"scores": {
|
"scores": {
|
||||||
"fz.event.death_count": {
|
"fz.bbl": {
|
||||||
"min": 1
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -19,6 +19,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rewards": {
|
"rewards": {
|
||||||
"function": "fz:game_event/advancement/on_dead"
|
"function": "fz:scoreboards/bedrockbreaked/calculator"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+23
-23
@@ -1,24 +1,24 @@
|
|||||||
{
|
{
|
||||||
"parent": "fz:game_event",
|
"criteria": {
|
||||||
"criteria": {
|
"damage_taken": {
|
||||||
"on_play_one_hour": {
|
"trigger": "minecraft:tick",
|
||||||
"trigger": "minecraft:tick",
|
"conditions": {
|
||||||
"conditions": {
|
"player": [
|
||||||
"player": [
|
{
|
||||||
{
|
"condition": "minecraft:entity_scores",
|
||||||
"condition": "minecraft:entity_scores",
|
"entity": "this",
|
||||||
"entity": "this",
|
"scores": {
|
||||||
"scores": {
|
"10xDamageTaken": {
|
||||||
"fz.event.play_ticks": {
|
"min": 1,
|
||||||
"min": 72000
|
"max": 2147483647
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rewards": {
|
"rewards": {
|
||||||
"function": "fz:game_event/advancement/on_play_one_hour"
|
"function": "fz:scoreboards/damagetaken/calculator"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+23
-23
@@ -1,24 +1,24 @@
|
|||||||
{
|
{
|
||||||
"parent": "fz:game_event",
|
"criteria": {
|
||||||
"criteria": {
|
"death_counter": {
|
||||||
"on_took_damage": {
|
"trigger": "minecraft:tick",
|
||||||
"trigger": "minecraft:tick",
|
"conditions": {
|
||||||
"conditions": {
|
"player": [
|
||||||
"player": [
|
{
|
||||||
{
|
"condition": "minecraft:entity_scores",
|
||||||
"condition": "minecraft:entity_scores",
|
"entity": "this",
|
||||||
"entity": "this",
|
"scores": {
|
||||||
"scores": {
|
"deathTester": {
|
||||||
"fz.event.damage_taken": {
|
"min": 1,
|
||||||
"min": 10
|
"max": 2147483647
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rewards": {
|
"rewards": {
|
||||||
"function": "fz:game_event/advancement/on_took_damage"
|
"function": "fz:scoreboards/deathcounter/calculator"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,269 @@
|
|||||||
|
{
|
||||||
|
"criteria": {
|
||||||
|
"used_tools": {
|
||||||
|
"trigger": "minecraft:tick",
|
||||||
|
"conditions": {
|
||||||
|
"player": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:alternative",
|
||||||
|
"terms": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedWooShovel": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedWooPickaxe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedWooHoe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedWooAxe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedStoShovel": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedStoPickaxe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedStoHoe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedStoAxe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedNetShovel": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedNetPickaxe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedNetHoe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedNetAxe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedIroShovel": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedIroPickaxe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedIroHoe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedIroAxe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedGolShovel": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedGolPickaxe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedGolHoe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedGolAxe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedDiaShovel": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedDiaPickaxe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedDiaHoe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedDiaAxe": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"scores": {
|
||||||
|
"usedShears": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"entity": "this"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"rewards": {
|
||||||
|
"function": "fz:scoreboards/digcounter/digtrigger"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,485 @@
|
|||||||
|
{
|
||||||
|
"criteria": {
|
||||||
|
"used_axe_on_block": {
|
||||||
|
"trigger": "minecraft:item_used_on_block",
|
||||||
|
"conditions": {
|
||||||
|
"player": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:alternative",
|
||||||
|
"terms": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:diamond_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:iron_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:stone_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:wooden_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:golden_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:netherite_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"attacked_with_axe": {
|
||||||
|
"trigger": "minecraft:player_hurt_entity",
|
||||||
|
"conditions": {
|
||||||
|
"player": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:alternative",
|
||||||
|
"terms": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:diamond_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:iron_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:stone_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:wooden_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:golden_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:netherite_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"used_shovel_on_block": {
|
||||||
|
"trigger": "minecraft:item_used_on_block",
|
||||||
|
"conditions": {
|
||||||
|
"player": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:alternative",
|
||||||
|
"terms": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:diamond_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:iron_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:stone_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:wooden_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:golden_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:netherite_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"attacked_with_shovel": {
|
||||||
|
"trigger": "minecraft:player_hurt_entity",
|
||||||
|
"conditions": {
|
||||||
|
"player": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:alternative",
|
||||||
|
"terms": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:diamond_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:iron_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:stone_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:wooden_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:golden_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:netherite_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"used_hoe_on_block": {
|
||||||
|
"trigger": "minecraft:item_used_on_block",
|
||||||
|
"conditions": {
|
||||||
|
"player": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:alternative",
|
||||||
|
"terms": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:diamond_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:iron_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:stone_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:wooden_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:golden_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:netherite_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"attacked_with_hoe": {
|
||||||
|
"trigger": "minecraft:player_hurt_entity",
|
||||||
|
"conditions": {
|
||||||
|
"player": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:alternative",
|
||||||
|
"terms": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:diamond_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:iron_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:stone_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:wooden_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:golden_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:netherite_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"used_axe_on_block",
|
||||||
|
"attacked_with_axe",
|
||||||
|
"used_shovel_on_block",
|
||||||
|
"attacked_with_shovel",
|
||||||
|
"used_hoe_on_block",
|
||||||
|
"attacked_with_hoe"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"rewards": {
|
||||||
|
"function": "fz:scoreboards/digcounter/toolsfix"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,217 @@
|
|||||||
|
{
|
||||||
|
"criteria": {
|
||||||
|
"offhand_placed_fix": {
|
||||||
|
"trigger": "minecraft:placed_block",
|
||||||
|
"conditions": {
|
||||||
|
"player": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:alternative",
|
||||||
|
"terms": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:iron_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:golden_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:wooden_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:stone_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:diamond_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:netherite_shovel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:iron_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:golden_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:wooden_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:stone_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:diamond_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:netherite_hoe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:iron_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:golden_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:wooden_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:stone_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:diamond_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"item": "minecraft:netherite_axe"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"rewards": {
|
||||||
|
"function": "fz:scoreboards/digcounter/toolsfix2"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"criteria": {
|
||||||
|
"fishing_counter": {
|
||||||
|
"trigger": "minecraft:tick",
|
||||||
|
"conditions": {
|
||||||
|
"player": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"entity": "this",
|
||||||
|
"scores": {
|
||||||
|
"fishingTester": {
|
||||||
|
"min": 1,
|
||||||
|
"max": 2147483647
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"rewards": {
|
||||||
|
"function": "fz:scoreboards/fishingcounter/calculator"
|
||||||
|
}
|
||||||
|
}
|
||||||
+26
-28
@@ -1,29 +1,27 @@
|
|||||||
{
|
{
|
||||||
"parent": "fz:module/interactor",
|
"criteria": {
|
||||||
"criteria": {
|
"kill_counter": {
|
||||||
"on_click": {
|
"trigger": "minecraft:player_killed_entity",
|
||||||
"trigger": "minecraft:tick",
|
"conditions": {
|
||||||
"conditions": {
|
"player": [
|
||||||
"player": [
|
{
|
||||||
{
|
"condition": "minecraft:inverted",
|
||||||
"condition": "minecraft:reference",
|
"term": {
|
||||||
"name": "fz:is_real_player"
|
"condition": "minecraft:entity_scores",
|
||||||
},
|
"entity": "this",
|
||||||
{
|
"scores": {
|
||||||
"condition": "minecraft:inverted",
|
"carpetBot": {
|
||||||
"term": {
|
"max": 1,
|
||||||
"condition": "minecraft:entity_scores",
|
"min": 1
|
||||||
"entity": "this",
|
}
|
||||||
"scores": {
|
}
|
||||||
"fz.module.interactor.trigger": 0
|
}
|
||||||
}
|
}
|
||||||
}
|
]
|
||||||
}
|
}
|
||||||
]
|
}
|
||||||
}
|
},
|
||||||
}
|
"rewards": {
|
||||||
},
|
"function": "fz:scoreboards/killcounter/calculator"
|
||||||
"rewards": {
|
}
|
||||||
"function": "fz:module/interactor/event/on_click"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"criteria": {
|
||||||
|
"trading_counter": {
|
||||||
|
"trigger": "minecraft:villager_trade",
|
||||||
|
"conditions": {
|
||||||
|
"player": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:inverted",
|
||||||
|
"term": {
|
||||||
|
"condition": "minecraft:entity_scores",
|
||||||
|
"entity": "this",
|
||||||
|
"scores": {
|
||||||
|
"carpetBot": {
|
||||||
|
"max": 1,
|
||||||
|
"min": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"rewards": {
|
||||||
|
"function": "fz:scoreboards/tradingcounter/calculator"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1 +0,0 @@
|
|||||||
data modify storage fz:global fz.api.dimension.name set value '{"nbt": "fz.cache.dimension.id", "storage": "fz:global"}'
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
execute if data storage fz:global fz.api.dimension{id:'minecraft:overworld'} run data modify storage fz:global fz.api.dimension.name set value '{"text": "主世界", "color": "dark_green"}'
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
execute if data storage fz:global fz.api.dimension{id:'minecraft:the_end'} run data modify storage fz:global fz.api.dimension.name set value '{"text": "末地", "color": "dark_gray"}'
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
execute if data storage fz:global fz.api.dimension{id:'minecraft:the_nether'} run data modify storage fz:global fz.api.dimension.name set value '{"text": "下界", "color": "dark_red"}'
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
data modify storage fz:global fz.api.dimension.id set from entity @s Dimension
|
|
||||||
data remove storage fz:global fz.api.dimension.name
|
|
||||||
+18
-17
@@ -1,17 +1,18 @@
|
|||||||
carpet setDefault language zh_cn
|
#给萌新辅助自动配置地毯优化和功能的函数
|
||||||
carpet setDefault stackableShulkerBoxes 16
|
carpet setDefault language zh_cn
|
||||||
carpet setDefault leadFix true
|
carpet setDefault antiCheatDisabled true
|
||||||
carpet setDefault ctrlQCraftingFix true
|
carpet setDefault combineXPOrbs true
|
||||||
carpet setDefault smoothClientAnimations true
|
carpet setDefault persistentParrots true
|
||||||
carpet setDefault fastRedstoneDust true
|
carpet setDefault stackableShulkerBoxes true
|
||||||
carpet setDefault reloadSuffocationFix true
|
carpet setDefault lagFreeSpawning true
|
||||||
carpet setDefault persistentParrots true
|
carpet setDefault ctrlQCraftingFix true
|
||||||
carpet setDefault missingTools true
|
carpet setDefault flippinCactus true
|
||||||
carpet setDefault optimizedTNT true
|
carpet setDefault missingTools true
|
||||||
carpet setDefault placementRotationFix true
|
carpet setDefault smoothClientAnimations true
|
||||||
carpet setDefault cleanLogs true
|
carpet setDefault optimizedTNT true
|
||||||
carpet setDefault lightningKillsDropsFix true
|
carpet setDefault leadFix true
|
||||||
carpet setDefault lagFreeSpawning true
|
carpet setDefault placementRotationFix true
|
||||||
carpet setDefault accurateBlockPlacement true
|
carpet setDefault xpNoCooldown true
|
||||||
carpet setDefault flippinCactus true
|
carpet setDefault defaultLoggers mobcaps,tps
|
||||||
carpet setDefault defaultLoggers mobcaps,tps
|
carpet setDefault commandTick true
|
||||||
|
carpet setDefault commandTrackAI true
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
#初始化tagplayer
|
||||||
|
carpet setDefault commandScript true
|
||||||
|
carpet setDefault commandScriptACE ops
|
||||||
|
script run carpet_rules = system_info('world_carpet_rules'); if(carpet_rules:'scriptsAutoload' != 'true', run('carpet setDefault scriptsAutoload true'); run('tellraw @a {"text":"[错误]假人插件未正确加载,已自动将“scriptsAutoload”设为true。正在重载,如仍未加载,请手动加载...", "color":"#ff6100"}'); run('reload'))
|
||||||
|
script unload player
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
#设置或重设超时时间为300s,超时后运行timeout函数
|
||||||
|
schedule function fz:config/timeout 300s
|
||||||
|
#输出玩家可见的设置页面
|
||||||
|
##扫地机
|
||||||
|
execute if data storage fz.installed {sweeper: 1b} run tellraw @s {"text": "扫地机:","color": "#ccff00"}
|
||||||
|
##扫地机时间,对应分数1478966210-1478966215
|
||||||
|
execute if data storage fz.installed {sweeper: 1b} run tellraw @s [{"text": "- "},{"text": "[关]","color": "#00ff00","clickEvent": {"action": "run_command","value": "/trigger config set 1478966210"}},{"text": "[30秒]","color": "#5fff00","clickEvent": {"action": "run_command","value": "/trigger config set 1478966211"}},{"text": "[1分钟]","color": "#d7ff00","clickEvent": {"action": "run_command","value": "/trigger config set 1478966212"}},{"text": "[2分钟]","color": "#ffd900","clickEvent": {"action": "run_command","value": "/trigger config set 1478966213"}},{"text": "[3分钟]","color": "#ff6100","clickEvent": {"action": "run_command","value": "/trigger config set 1478966214"}},{"text": "[4分钟]","color": "#ff0000","clickEvent": {"action": "run_command","value": "/trigger config set 1478966215"}}]
|
||||||
|
##开启矿车白名单1478966216
|
||||||
|
execute if data storage fz.installed {sweeper: 1b} unless score keepMinecart parameter matches 1 run tellraw @s [{"text": "- "},{"text": "矿车白名单:","color": "#8c8f91"},{"text": "[已关闭]","color": "#ff0000","clickEvent": {"action": "run_command","value": "/trigger config set 1478966216"}}]
|
||||||
|
##关闭矿车白名单1478966217
|
||||||
|
execute if data storage fz.installed {sweeper: 1b} if score keepMinecart parameter matches 1 run tellraw @s [{"text": "- "},{"text": "矿车白名单:","color": "#8c8f91"},{"text": "[已开启]","color": "#00ff00","clickEvent": {"action": "run_command","value": "/trigger config set 1478966217"}}]
|
||||||
|
##声音提示
|
||||||
|
execute if data storage fz.installed {sweeper: 1b} run tellraw @s[tag=!fz.sweeperSoundOff] [{"text": "- "},{"text": "声音:","color": "#8c8f91"},{"text": "[已开启]","color": "#00ff00","clickEvent": {"action": "run_command","value": "/trigger config set 1478966209"}}]
|
||||||
|
execute if data storage fz.installed {sweeper: 1b} run tellraw @s[tag=fz.sweeperSoundOff] [{"text": "- "},{"text": "声音:","color": "#8c8f91"},{"text": "[已关闭]","color": "#ff0000","clickEvent": {"action": "run_command","value": "/trigger config set 1478966208"}}]
|
||||||
|
##消息提示
|
||||||
|
execute if data storage fz.installed {sweeper: 1b} run tellraw @s[tag=!fz.sweeperMessageOff] [{"text": "- "},{"text": "消息:","color": "#8c8f91"},{"text": "[已开启]","color": "#00ff00","clickEvent": {"action": "run_command","value": "/trigger config set 1478966205"}}]
|
||||||
|
execute if data storage fz.installed {sweeper: 1b} run tellraw @s[tag=fz.sweeperMessageOff] [{"text": "- "},{"text": "消息:","color": "#8c8f91"},{"text": "[已关闭]","color": "#ff0000","clickEvent": {"action": "run_command","value": "/trigger config set 1478966204"}}]
|
||||||
|
##血条栏提示
|
||||||
|
execute if data storage fz.installed {sweeper: 1b} run tellraw @s[tag=!fz.sweeperBossbarOff] [{"text": "- "},{"text": "血条栏:","color": "#8c8f91"},{"text": "[已开启]","color": "#00ff00","clickEvent": {"action": "run_command","value": "/trigger config set 1478966207"}}]
|
||||||
|
execute if data storage fz.installed {sweeper: 1b} run tellraw @s[tag=fz.sweeperBossbarOff] [{"text": "- "},{"text": "血条栏:","color": "#8c8f91"},{"text": "[已关闭]","color": "#ff0000","clickEvent": {"action": "run_command","value": "/trigger config set 1478966206"}}]
|
||||||
|
##记分板
|
||||||
|
execute if data storage fz.installed {scoreboards: 1b} run tellraw @s {"text": "记分板:","color": "#ccff00"}
|
||||||
|
##计分板显示,对应分数1838019370-1838019379
|
||||||
|
execute if data storage fz.installed {scoreboards: 1b} unless score 全员头铁 bedrockBreaked matches 1.. run tellraw @s [{"text": "- "},{"text": "[关]","color": "#ff0000","hoverEvent": {"action": "show_text","contents": {"text": "关", "color": "#ff0000"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019370"}},{"text": "[轮播]","color": "gold","hoverEvent": {"action": "show_text","contents": {"text": "轮播", "color": "gold"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019371"}},{"text": "[总量]","color": "dark_aqua","hoverEvent": {"action": "show_text","contents": {"text": "总量","color": "dark_aqua"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019379"}},{"text": "[在线时间(h)]","color": "aqua","hoverEvent": {"action": "show_text","contents": {"text": "在线时间(h)","color": "aqua"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019372"}},{"text": "[抖M名单]","color": "yellow","hoverEvent": {"action": "show_text","contents": {"text": "受伤害量","color": "yellow"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019373"}},{"text": "[死亡榜]","color": "dark_red","hoverEvent": {"action": "show_text","contents": {"text": "死亡榜","color": "dark_red"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019374"}},{"text": "[挖掘榜]","color": "gray","hoverEvent": {"action": "show_text","contents": {"text": "挖掘榜","color": "gray"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019375"}},{"text": "[钩直饵咸]","color": "blue","hoverEvent": {"action": "show_text","contents": {"text": "钓鱼榜","color": "blue"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019376"}},{"text": "[击杀榜]","color": "red","hoverEvent": {"action": "show_text","contents": {"text": "击杀榜","color": "red"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019377"}},{"text": "[交♂易榜]","color": "green","hoverEvent": {"action": "show_text","contents": {"text": "交易榜","color": "green"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019378"}}]
|
||||||
|
##计分板显示,对应分数1838019369-1838019379(有破基岩榜)
|
||||||
|
execute if data storage fz.installed {scoreboards: 1b} if score 全员头铁 bedrockBreaked matches 1.. run tellraw @s [{"text": "- "},{"text": "[关]","color": "#ff0000","hoverEvent": {"action": "show_text","contents": {"text": "关", "color": "#ff0000"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019370"}},{"text": "[轮播]","color": "gold","hoverEvent": {"action": "show_text","contents": {"text": "轮播", "color": "gold"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019371"}},{"text": "[总量]","color": "dark_aqua","hoverEvent": {"action": "show_text","contents": {"text": "总量","color": "dark_aqua"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019379"}},{"text": "[在线时间(h)]","color": "aqua","hoverEvent": {"action": "show_text","contents": {"text": "在线时间(h)","color": "aqua"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019372"}},{"text": "[抖M名单]","color": "yellow","hoverEvent": {"action": "show_text","contents": {"text": "受伤害量","color": "yellow"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019373"}},{"text": "[死亡榜]","color": "dark_red","hoverEvent": {"action": "show_text","contents": {"text": "死亡榜","color": "dark_red"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019374"}},{"text": "[挖掘榜]","color": "gray","hoverEvent": {"action": "show_text","contents": {"text": "挖掘榜","color": "gray"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019375"}},{"text": "[钩直饵咸]","color": "blue","hoverEvent": {"action": "show_text","contents": {"text": "钓鱼榜","color": "blue"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019376"}},{"text": "[击杀榜]","color": "red","hoverEvent": {"action": "show_text","contents": {"text": "击杀榜","color": "red"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019377"}},{"text": "[交♂易榜]","color": "green","hoverEvent": {"action": "show_text","contents": {"text": "交易榜","color": "green"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019378"}}]
|
||||||
|
execute if data storage fz.installed {scoreboards: 1b} if score 全员头铁 bedrockBreaked matches 1.. run tellraw @s [{"text": "- "},{"text": "[铁头功]","color": "dark_green","hoverEvent": {"action": "show_text","contents": {"text": "破基岩榜","color": "dark_green"}},"clickEvent": {"action": "run_command","value": "/trigger config set 1838019369"}}]
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
#安装设置功能
|
||||||
|
#初始化触发器记分板
|
||||||
|
scoreboard objectives add config trigger
|
||||||
|
#存入已安装信息
|
||||||
|
data merge storage fz.installed {config: 1b}
|
||||||
|
#提示已安装
|
||||||
|
tellraw @a {"text": "[信息]设置功能已安装","color": "#5fff00"}
|
||||||
|
#开始运行
|
||||||
|
function fz:config/start
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
#主函数
|
||||||
|
#允许玩家操作config记分板
|
||||||
|
scoreboard players enable @a config
|
||||||
|
#每条子函数都要reset config分数和function fz:config/display
|
||||||
|
execute if data storage fz.installed {sweeper: 1b} as @a if score @s config matches 1478966200..1478966217 run function fz:sweeper/config/trigger
|
||||||
|
execute if data storage fz.installed {scoreboards: 1b} as @a if score @s config matches 1838019369..1838019379 run function fz:scoreboards/config
|
||||||
|
#循环执行本函数
|
||||||
|
schedule function fz:config/main 1t
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
#删除进程残留
|
||||||
|
schedule clear fz:config/main
|
||||||
|
schedule clear fz:config/timeout
|
||||||
|
data remove storage fz.config is_open
|
||||||
|
scoreboard players enable @a config
|
||||||
|
advancement revoke @a only fz:config/sneak
|
||||||
|
advancement revoke @a only fz:config/unsneak
|
||||||
|
#测试用的输出
|
||||||
|
tellraw @a {"text": "[信息]设置功能已启用","color": "#5fff00"}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
#关闭主进程
|
||||||
|
schedule clear fz:config/main
|
||||||
|
#输出给打开过设置界面的玩家的消息
|
||||||
|
tellraw @a[scores={openingConfig=1}] {"text": "[提醒]5分钟无任何人回应,为节省性能,已关闭设置功能,请重新唤起","color": "#66ffff"}
|
||||||
|
#重置打开过设置界面的玩家的列表
|
||||||
|
scoreboard objectives remove openingConfig
|
||||||
|
#移除设置界面被打开的信息
|
||||||
|
data remove storage fz.config is_open
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
#触发函数,由成就和unsneak函数控制
|
||||||
|
#重置玩家的config分数,避免开启设置功能后,由于该玩家先前的分数而直接运行某些功能
|
||||||
|
scoreboard players reset @s config
|
||||||
|
#判断设置功能是否已经开启,如果未开启则运行主函数
|
||||||
|
execute unless data storage fz.config {is_open: 1b} run function fz:config/main
|
||||||
|
execute unless data storage fz.config {is_open: 1b} run scoreboard objectives add openingConfig dummy
|
||||||
|
execute unless data storage fz.config {is_open: 1b} run data merge storage fz.config {is_open: 1b}
|
||||||
|
#将该玩家加入打开设置页面的玩家的列表
|
||||||
|
scoreboard players set @s openingConfig 1
|
||||||
|
#将设置内容输出给玩家
|
||||||
|
function fz:config/display
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
#卸载设置功能
|
||||||
|
#移除进程残留
|
||||||
|
schedule clear fz:config/main
|
||||||
|
schedule clear fz:config/timeout
|
||||||
|
data remove storage fz.config is_open
|
||||||
|
#写入已卸载的信息
|
||||||
|
data merge storage fz.installed {config: 0b}
|
||||||
|
#提示已卸载
|
||||||
|
tellraw @a {"text": "[信息]设置功能已卸载","color": "#5fff00"}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
#由config/sneak和config/unsneak成就触发
|
||||||
|
#判断玩家视角是否指向正上方,是则运行turnon函数
|
||||||
|
execute if data storage fz.installed {config: 1b} if entity @s[x_rotation=-90] run function fz:config/turnon
|
||||||
|
#重置该玩家的两个成就
|
||||||
|
advancement revoke @s only fz:config/sneak
|
||||||
|
advancement revoke @s only fz:config/unsneak
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
# 调用者:advancements/fz:~
|
|
||||||
|
|
||||||
execute if predicate fz:is_real_player run function fz:game_event/player/on_aviate_one_meter
|
|
||||||
|
|
||||||
## 重置事件
|
|
||||||
scoreboard players operation @s fz.event.aviating_distance %= 200 fz.variable.integer
|
|
||||||
advancement revoke @s only fz:game_event/on_aviate_one_meter
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
# 调用者:advancements/fz:~
|
|
||||||
|
|
||||||
execute if predicate fz:is_real_player run function fz:game_event/player/on_dead
|
|
||||||
|
|
||||||
## 重置事件
|
|
||||||
scoreboard players set @s fz.event.death_count 0
|
|
||||||
advancement revoke @s only fz:game_event/on_dead
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "进入了下届传送门"}]
|
|
||||||
|
|
||||||
function #fz:game_event/player/on_entered_nether_portal
|
|
||||||
|
|
||||||
## 重置事件进度
|
|
||||||
advancement revoke @s only fz:game_event/on_entered_nether_portal
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
# 调用者:advancements/fz:~
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "钓鱼上钩"}]
|
|
||||||
|
|
||||||
## 运行事件
|
|
||||||
function #fz:game_event/player/on_fished
|
|
||||||
|
|
||||||
## 重置事件进度
|
|
||||||
advancement revoke @s only fz:game_event/on_fished
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
# 调用者:advancements/fz:~
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "使用了挖掘工具攻击实体"}]
|
|
||||||
|
|
||||||
## 计算挖掘数据偏移量
|
|
||||||
scoreboard players remove @s fz.event.used_tool.dig_offset 1
|
|
||||||
|
|
||||||
## 运行事件
|
|
||||||
function #fz:game_event/player/on_hurt_entity_with_tools
|
|
||||||
|
|
||||||
## 重置事件进度
|
|
||||||
advancement revoke @s only fz:game_event/on_hurt_entity_with_tools
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
# 调用者:advancements/fz:~
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "击杀了生物"}]
|
|
||||||
|
|
||||||
## 运行事件
|
|
||||||
function #fz:game_event/player/on_killed_mob_or_player
|
|
||||||
|
|
||||||
## 重置事件进度
|
|
||||||
advancement revoke @s only fz:game_event/on_killed_mob_or_player
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
# 调用者:advancements/fz:~
|
|
||||||
|
|
||||||
execute if predicate fz:is_real_player run function fz:game_event/player/on_login
|
|
||||||
|
|
||||||
## 重制所有触发器、事件进度
|
|
||||||
scoreboard players set @s fz.event.leave_game 0
|
|
||||||
function #fz:game_event/reset_all
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
# 调用者:advancements/fz:~
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "与猪灵交易"}]
|
|
||||||
|
|
||||||
## 运行事件
|
|
||||||
function #fz:game_event/player/on_piglin_trade
|
|
||||||
|
|
||||||
## 重置事件进度
|
|
||||||
advancement revoke @s only fz:game_event/on_piglin_trade
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
# 调用者:advancements/fz:~
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "放置了方块"}]
|
|
||||||
|
|
||||||
## 运行事件
|
|
||||||
function #fz:game_event/player/on_placed_block
|
|
||||||
|
|
||||||
## 重置事件进度
|
|
||||||
advancement revoke @s only fz:game_event/on_placed_block
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
# 调用者:advancements/fz:~
|
|
||||||
|
|
||||||
execute if predicate fz:is_real_player run function fz:game_event/player/on_play_one_hour
|
|
||||||
|
|
||||||
## 重置事件
|
|
||||||
scoreboard players operation @s fz.event.play_ticks %= 72000 fz.variable.integer
|
|
||||||
advancement revoke @s only fz:game_event/on_play_one_hour
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
# 调用者:advancements/fz:~
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "对实体使用剪刀"}]
|
|
||||||
|
|
||||||
## 计算挖掘数据偏移量
|
|
||||||
scoreboard players remove @s fz.event.used_tool.dig_offset 1
|
|
||||||
|
|
||||||
## 运行事件
|
|
||||||
function #fz:game_event/player/on_shears_used_on_entity
|
|
||||||
|
|
||||||
## 重置事件进度
|
|
||||||
advancement revoke @s only fz:game_event/on_shears_used_on_entity
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
# 调用者:advancements/fz:~
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "蹲下"}]
|
|
||||||
|
|
||||||
## 运行事件
|
|
||||||
function #fz:game_event/player/on_sneak
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
# 调用者:advancements/fz:~
|
|
||||||
|
|
||||||
execute if predicate fz:is_real_player run function fz:game_event/player/on_took_damage
|
|
||||||
|
|
||||||
## 重置事件
|
|
||||||
scoreboard players operation @s fz.event.damage_taken %= 10 fz.variable.integer
|
|
||||||
advancement revoke @s only fz:game_event/on_took_damage
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
# 调用者:advancements/fz:~
|
|
||||||
## 斧子剥树皮会触发两次!!
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "在方块上使用了工具"}]
|
|
||||||
|
|
||||||
## 计算挖掘数据偏移量
|
|
||||||
scoreboard players remove @s fz.event.used_tool.dig_offset 1
|
|
||||||
|
|
||||||
## 运行事件
|
|
||||||
function #fz:game_event/player/on_tools_used_on_block
|
|
||||||
|
|
||||||
## 重置事件进度
|
|
||||||
advancement revoke @s only fz:game_event/on_tools_used_on_block
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
# 调用者:advancements/fz:~
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "从蹲下状态站起"}]
|
|
||||||
|
|
||||||
# 调用者:advancement/fz:unskeak
|
|
||||||
##### 当玩家蹲起后触发此事件
|
|
||||||
|
|
||||||
## 运行事件
|
|
||||||
function #fz:game_event/player/on_unsneak
|
|
||||||
|
|
||||||
## 重置事件进度
|
|
||||||
advancement revoke @s until fz:game_event/on_unsneak
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
# 调用者:advancements/fz:~
|
|
||||||
|
|
||||||
execute if predicate fz:is_real_player run function fz:game_event/player/on_used_tool
|
|
||||||
|
|
||||||
## 重置事件计分板
|
|
||||||
function #fz:game_event/player/on_used_tool/reset_used_tool
|
|
||||||
|
|
||||||
## 重置事件进度
|
|
||||||
advancement revoke @s only fz:game_event/on_used_tool
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
# 调用者:advancements/fz:~
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "与村民交易"}]
|
|
||||||
|
|
||||||
## 运行事件
|
|
||||||
function #fz:game_event/player/on_villager_trade
|
|
||||||
|
|
||||||
## 重置事件进度
|
|
||||||
advancement revoke @s only fz:game_event/on_villager_trade
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
## 复位所有事件进度
|
|
||||||
### 所有事件进度都继承了fz:game_event进度,因此只需要一行指令:
|
|
||||||
advancement revoke @s from fz:game_event
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "已重置玩家"}, {"selector": "@s"}, {"text": "的游戏事件进度"}]
|
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
## 事件触发
|
|
||||||
scoreboard objectives add fz.event.aviating_distance minecraft.custom:aviate_one_cm
|
|
||||||
scoreboard objectives add fz.event.damage_taken minecraft.custom:damage_taken
|
|
||||||
scoreboard objectives add fz.event.death_count deathCount
|
|
||||||
scoreboard objectives add fz.event.leave_game minecraft.custom:leave_game
|
|
||||||
### 由 #fz:game_event/on_tick 赋值
|
|
||||||
scoreboard objectives add fz.event.play_ticks dummy
|
|
||||||
scoreboard objectives add fz.event.villager_trade minecraft.custom:traded_with_villager
|
|
||||||
|
|
||||||
## 使用工具
|
|
||||||
scoreboard objectives add fz.event.used_tool.dig_offset dummy
|
|
||||||
scoreboard objectives add fz.event.used_tool.iron_axe minecraft.used:iron_axe
|
|
||||||
scoreboard objectives add fz.event.used_tool.stone_axe minecraft.used:stone_axe
|
|
||||||
scoreboard objectives add fz.event.used_tool.golden_axe minecraft.used:golden_axe
|
|
||||||
scoreboard objectives add fz.event.used_tool.wooden_axe minecraft.used:wooden_axe
|
|
||||||
scoreboard objectives add fz.event.used_tool.diamond_axe minecraft.used:diamond_axe
|
|
||||||
scoreboard objectives add fz.event.used_tool.netherite_axe minecraft.used:netherite_axe
|
|
||||||
scoreboard objectives add fz.event.used_tool.iron_hoe minecraft.used:iron_hoe
|
|
||||||
scoreboard objectives add fz.event.used_tool.stone_hoe minecraft.used:stone_hoe
|
|
||||||
scoreboard objectives add fz.event.used_tool.golden_hoe minecraft.used:golden_hoe
|
|
||||||
scoreboard objectives add fz.event.used_tool.wooden_hoe minecraft.used:wooden_hoe
|
|
||||||
scoreboard objectives add fz.event.used_tool.diamond_hoe minecraft.used:diamond_hoe
|
|
||||||
scoreboard objectives add fz.event.used_tool.netherite_hoe minecraft.used:netherite_hoe
|
|
||||||
scoreboard objectives add fz.event.used_tool.iron_pickaxe minecraft.used:iron_pickaxe
|
|
||||||
scoreboard objectives add fz.event.used_tool.stone_pickaxe minecraft.used:stone_pickaxe
|
|
||||||
scoreboard objectives add fz.event.used_tool.golden_pickaxe minecraft.used:golden_pickaxe
|
|
||||||
scoreboard objectives add fz.event.used_tool.wooden_pickaxe minecraft.used:wooden_pickaxe
|
|
||||||
scoreboard objectives add fz.event.used_tool.diamond_pickaxe minecraft.used:diamond_pickaxe
|
|
||||||
scoreboard objectives add fz.event.used_tool.netherite_pickaxe minecraft.used:netherite_pickaxe
|
|
||||||
scoreboard objectives add fz.event.used_tool.shears minecraft.used:shears
|
|
||||||
scoreboard objectives add fz.event.used_tool.iron_shovel minecraft.used:iron_shovel
|
|
||||||
scoreboard objectives add fz.event.used_tool.stone_shovel minecraft.used:stone_shovel
|
|
||||||
scoreboard objectives add fz.event.used_tool.golden_shovel minecraft.used:golden_shovel
|
|
||||||
scoreboard objectives add fz.event.used_tool.wooden_shovel minecraft.used:wooden_shovel
|
|
||||||
scoreboard objectives add fz.event.used_tool.diamond_shovel minecraft.used:diamond_shovel
|
|
||||||
scoreboard objectives add fz.event.used_tool.netherite_shovel minecraft.used:netherite_shovel
|
|
||||||
scoreboard objectives add fz.event.used_tool.iron_sword minecraft.used:iron_sword
|
|
||||||
scoreboard objectives add fz.event.used_tool.stone_sword minecraft.used:stone_sword
|
|
||||||
scoreboard objectives add fz.event.used_tool.golden_sword minecraft.used:golden_sword
|
|
||||||
scoreboard objectives add fz.event.used_tool.wooden_sword minecraft.used:wooden_sword
|
|
||||||
scoreboard objectives add fz.event.used_tool.diamond_sword minecraft.used:diamond_sword
|
|
||||||
scoreboard objectives add fz.event.used_tool.netherite_sword minecraft.used:netherite_sword
|
|
||||||
|
|
||||||
## 标记为已安装
|
|
||||||
data modify storage fz:installed fz.event set value 1b
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
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,4 +0,0 @@
|
|||||||
execute as @a[predicate=fz:is_real_player] run function #fz:game_event/player/on_login
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
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 +0,0 @@
|
|||||||
scoreboard players add @a[predicate=fz:is_real_player] fz.event.play_ticks 1
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
## 详细
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "飞行了1m"}]
|
|
||||||
|
|
||||||
## 将事件数据缓存
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer = @s fz.event.aviating_distance
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer /= 200 fz.variable.integer
|
|
||||||
|
|
||||||
## 运行事件
|
|
||||||
function #fz:game_event/player/on_aviate_one_meter
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
# 调用者:fz:game_event/player/on_used_tool
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "挖掘了方块"}]
|
|
||||||
|
|
||||||
## 运行事件
|
|
||||||
function #fz:game_event/player/on_broke_block_with_tool
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
## 收集挖掘数据
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer = @s fz.event.used_tool.diamond_axe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.diamond_hoe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.diamond_pickaxe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.diamond_shovel
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.diamond_sword
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.golden_axe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.golden_hoe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.golden_pickaxe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.golden_shovel
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.golden_sword
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.iron_axe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.iron_hoe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.iron_pickaxe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.iron_shovel
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.iron_sword
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.netherite_axe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.netherite_hoe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.netherite_pickaxe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.netherite_shovel
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.netherite_sword
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.shears
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.stone_axe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.stone_hoe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.stone_pickaxe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.stone_shovel
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.stone_sword
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.wooden_axe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.wooden_hoe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.wooden_pickaxe
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.wooden_shovel
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.wooden_sword
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer += @s fz.event.used_tool.offset
|
|
||||||
|
|
||||||
## 判断分数
|
|
||||||
execute unless score fz.var.score fz.variable.integer matches ..0 run function fz:game_event/player/on_broke_block_with_tool
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "死亡"}]
|
|
||||||
|
|
||||||
## 将事件数据缓存
|
|
||||||
# scoreboard players operation fz.var.score fz.variable.integer = @s fz.event.death_count
|
|
||||||
|
|
||||||
## 运行事件
|
|
||||||
function #fz:game_event/player/on_dead
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "登录游戏"}]
|
|
||||||
|
|
||||||
## 运行事件
|
|
||||||
function #fz:game_event/player/on_login
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "游玩了1h"}]
|
|
||||||
|
|
||||||
## 将事件数据缓存
|
|
||||||
# scoreboard players operation fz.var.score fz.variable.integer = @s fz.event.play_ticks
|
|
||||||
# scoreboard players operation fz.var.score fz.variable.integer /= 3600 fz.variable.integer
|
|
||||||
|
|
||||||
## 运行事件
|
|
||||||
function #fz:game_event/player/on_play_one_hour
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "受到了伤害"}]
|
|
||||||
|
|
||||||
## 将事件数据缓存
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer = @s fz.event.damage_taken
|
|
||||||
scoreboard players operation fz.var.score fz.variable.integer /= 10 fz.variable.integer
|
|
||||||
|
|
||||||
## 运行事件
|
|
||||||
function #fz:game_event/player/on_took_damage
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
## 详细
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..300 run tellraw @a [{"nbt": "fz.level.fine", "interpret": true, "storage": "fz:logger"}, {"text": "事件已触发:玩家"}, {"selector": "@s"}, {"text": "使用了工具"}]
|
|
||||||
|
|
||||||
## 运行事件
|
|
||||||
function #fz:game_event/player/on_used_tool
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
scoreboard players set @s fz.event.used_tool.offset 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.diamond_axe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.diamond_hoe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.diamond_pickaxe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.diamond_shovel 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.diamond_sword 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.golden_axe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.golden_hoe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.golden_pickaxe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.golden_shovel 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.golden_sword 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.iron_axe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.iron_hoe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.iron_pickaxe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.iron_shovel 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.iron_sword 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.netherite_axe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.netherite_hoe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.netherite_pickaxe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.netherite_shovel 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.netherite_sword 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.shears 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.stone_axe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.stone_hoe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.stone_pickaxe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.stone_shovel 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.stone_sword 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.wooden_axe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.wooden_hoe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.wooden_pickaxe 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.wooden_shovel 0
|
|
||||||
scoreboard players set @s fz.event.used_tool.wooden_sword 0
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "重置了玩家"}, {"selector": "@s"}, {"text": "的used_tool计分板"}]
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
## 事件触发
|
|
||||||
scoreboard objectives remove fz.event.aviating_distance
|
|
||||||
scoreboard objectives remove fz.event.damage_taken
|
|
||||||
scoreboard objectives remove fz.event.death_count
|
|
||||||
scoreboard objectives remove fz.event.leave_game
|
|
||||||
scoreboard objectives remove fz.event.play_ticks
|
|
||||||
scoreboard objectives remove fz.event.villager_trade
|
|
||||||
|
|
||||||
## 使用工具
|
|
||||||
scoreboard objectives remove fz.event.used_tool.dig_offset
|
|
||||||
scoreboard objectives remove fz.event.used_tool.iron_axe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.stone_axe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.golden_axe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.wooden_axe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.diamond_axe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.netherite_axe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.iron_hoe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.stone_hoe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.golden_hoe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.wooden_hoe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.diamond_hoe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.netherite_hoe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.iron_pickaxe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.stone_pickaxe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.golden_pickaxe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.wooden_pickaxe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.diamond_pickaxe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.netherite_pickaxe
|
|
||||||
scoreboard objectives remove fz.event.used_tool.shears
|
|
||||||
scoreboard objectives remove fz.event.used_tool.iron_shovel
|
|
||||||
scoreboard objectives remove fz.event.used_tool.stone_shovel
|
|
||||||
scoreboard objectives remove fz.event.used_tool.golden_shovel
|
|
||||||
scoreboard objectives remove fz.event.used_tool.wooden_shovel
|
|
||||||
scoreboard objectives remove fz.event.used_tool.diamond_shovel
|
|
||||||
scoreboard objectives remove fz.event.used_tool.netherite_shovel
|
|
||||||
scoreboard objectives remove fz.event.used_tool.iron_sword
|
|
||||||
scoreboard objectives remove fz.event.used_tool.stone_sword
|
|
||||||
scoreboard objectives remove fz.event.used_tool.golden_sword
|
|
||||||
scoreboard objectives remove fz.event.used_tool.wooden_sword
|
|
||||||
scoreboard objectives remove fz.event.used_tool.diamond_sword
|
|
||||||
scoreboard objectives remove fz.event.used_tool.netherite_sword
|
|
||||||
|
|
||||||
## 删除安装标记
|
|
||||||
data remove storage fz:installed fz.event
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "已卸载系统组件:游戏事件"}]
|
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
#安装血量显示
|
||||||
|
#初始化
|
||||||
|
scoreboard objectives add Health health {"text": "cm","color": "yellow"}
|
||||||
|
scoreboard objectives modify Health rendertype hearts
|
||||||
|
scoreboard objectives setdisplay list Health
|
||||||
|
scoreboard objectives setdisplay belowName Health
|
||||||
|
#写入已安装的信息
|
||||||
|
data merge storage fz.installed {health: 1b}
|
||||||
|
#提示已安装
|
||||||
|
tellraw @a {"text": "[信息]血量显示已安装","color": "#5fff00"}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
#卸载血量显示
|
||||||
|
#删除计分板
|
||||||
|
scoreboard objectives remove Health
|
||||||
|
#写入已卸载的信息
|
||||||
|
data merge storage fz.installed {health: 0b}
|
||||||
|
#提示已卸载
|
||||||
|
tellraw @a {"text": "[信息]血量显示已卸载","color": "#5fff00"}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
|
||||||
|
#用于储存参数的记分板
|
||||||
|
scoreboard objectives add parameter dummy
|
||||||
|
#用于数学计算的记分板
|
||||||
|
scoreboard objectives add calculator dummy
|
||||||
|
scoreboard players set 10 calculator 10
|
||||||
|
scoreboard players set 1 calculator 1
|
||||||
|
#检测玩家退出游戏的记分板
|
||||||
|
scoreboard objectives add leaveGame minecraft.custom:minecraft.leave_game
|
||||||
|
#安装各功能
|
||||||
|
function fz:config/install
|
||||||
|
function fz:sweeper/install
|
||||||
|
function fz:scoreboards/install
|
||||||
|
function fz:health/install
|
||||||
|
function fz:login/logintips/install
|
||||||
|
function fz:carpet/carpet
|
||||||
|
#版本信息
|
||||||
|
data merge storage fz.installed {installed: 1b}
|
||||||
|
data merge storage fz {version: 2.0.3}
|
||||||
|
data merge storage fz {date: 2020-1.17}
|
||||||
|
data merge storage fz {time: "18:21"}
|
||||||
|
##data merge storage fz {snapshot: -SNAPSHOT}
|
||||||
|
data remove storage fz snapshot
|
||||||
|
tellraw @a {"text": "[信息]启动完毕","color": "#5fff00"}
|
||||||
|
#提示已安装
|
||||||
|
tellraw @a {"text": "[信息]安装完成!","color": "#5fff00"}
|
||||||
|
#info: #5fff00 信息
|
||||||
|
#alert: #d7ff00 提醒
|
||||||
|
#warn: #ffd900 警告
|
||||||
|
#error: #ff6100 错误
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
#如果未安装且未卸载则安装
|
||||||
|
execute unless data storage fz.installed {installed: 1b} unless data storage fz.installed {installed: 0b} run function fz:install
|
||||||
|
#如果版本正确且已安装则开始运行
|
||||||
|
execute if data storage fz {version: 2.0.3} if data storage fz.installed {installed: 1b} run function fz:start
|
||||||
|
#如果版本不符则更新
|
||||||
|
execute unless data storage fz {version: 2.0.3} run function fz:update
|
||||||
|
#输出版本信息
|
||||||
|
tellraw @a [{"text": "[版本信息]FZ's Datapack-","color": "#ffd900"},{"nbt":"version","storage":"fz","color": "#ffd900"},{"nbt": "snapshot", "storage": "fz","color": "red"}]
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
# 调用者:fz:logger/uninstall
|
|
||||||
|
|
||||||
## 日志
|
|
||||||
tellraw @a [{"nbt": "fz.level.info", "interpret": true, "storage": "fz:logger"}, {"text": "已删除日志配置!"}]
|
|
||||||
|
|
||||||
data remove storage fz:logger fz
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
##### 使用方式,形如: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
|
|
||||||
data modify storage fz:logger fz.level.error set value '[{"text": "", "color": "red"}, {"nbt": "root", "interpret": true, "storage": "fz:logger"}, {"text": "[错误]"}]'
|
|
||||||
### 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
|
|
||||||
data modify storage fz:logger fz.level.info set value '[{"text": "", "color": "green"}, {"nbt": "fz.root", "interpret": true, "storage": "fz:logger"}, {"text": "[信息]"}]'
|
|
||||||
### 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
|
|
||||||
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
|
|
||||||
|
|
||||||
## 读取日志等级存入缓存
|
|
||||||
execute store result score fz.logger.level fz.variable.integer run data get storage fz:logger fz.levels.current
|
|
||||||
|
|
||||||
## 标记为已安装
|
|
||||||
data modify storage fz:installed fz.logger set value 1b
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
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,7 +0,0 @@
|
|||||||
|
|
||||||
## debug 400
|
|
||||||
data modify storage fz:logger fz.levels.current set value 400
|
|
||||||
execute store result score fz.logger.level fz.variable.integer run data get storage fz:logger fz.levels.current
|
|
||||||
|
|
||||||
## 日志
|
|
||||||
tellraw @a [{"nbt": "fz.level.info", "interpret": true, "storage": "fz:logger"}, {"text": "日志等级设为调试"}]
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
|
|
||||||
## fine 300
|
|
||||||
data modify storage fz:logger fz.levels.current set value 300
|
|
||||||
execute store result score fz.logger.level fz.variable.integer run data get storage fz:logger fz.levels.current
|
|
||||||
|
|
||||||
## 日志
|
|
||||||
tellraw @a [{"nbt": "fz.level.info", "interpret": true, "storage": "fz:logger"}, {"text": "日志等级设为详细"}]
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
|
|
||||||
## info 500
|
|
||||||
data modify storage fz:logger fz.levels.current set value 500
|
|
||||||
execute store result score fz.logger.level fz.variable.integer run data get storage fz:logger fz.levels.current
|
|
||||||
|
|
||||||
## 日志
|
|
||||||
tellraw @a [{"nbt": "fz.level.info", "interpret": true, "storage": "fz:logger"}, {"text": "日志等级设为一般信息"}]
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
# 调用者:#fz:logger/init
|
|
||||||
|
|
||||||
## 读取日志等级存入缓存
|
|
||||||
execute store result score fz.logger.level fz.variable.integer run data get storage fz:logger fz.levels.current
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
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,10 +0,0 @@
|
|||||||
## 调用者:#fz:logger/uninstall
|
|
||||||
|
|
||||||
## 删除安装标记
|
|
||||||
data remove storage fz:installed fz.logger
|
|
||||||
|
|
||||||
## 调试
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..400 run tellraw @a [{"nbt": "fz.level.debug", "interpret": true, "storage": "fz:logger"}, {"text": "已卸载系统组件:日志"}]
|
|
||||||
|
|
||||||
## 询问是否清除数据
|
|
||||||
execute if score fz.logger.level fz.variable.integer matches ..600 run tellraw @s [{"nbt": "fz.level.alert", "interpret": true, "storage": "fz:logger"}, {"text": "您要删除日志配置吗,它将会永久失去!(真的很久!)"}, {"text": "[确定]", "color": "dark_red", "clickEvent": {"action": "suggest_command", "value": "/function #fz:logger/clear_data"}, "hoverEvent": {"action": "show_text", "contents": {"text": "将命令填入聊天框"}}}]
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user