-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
250 additions
and
242 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
tellraw @s ["[BareBones] ",{"color":"yellow","text":"BareBones is an open source data pack that provides essential functionality for vanilla Minecraft servers. For more information, you can visit BareBones' website at "},{"color":"blue","underlined":true,"text":"www.mcbarebones.com","clickEvent":{"action":"open_url","value":"http://www.mcbarebones.com/"},"hoverEvent":{"action":"show_text","value":"Click here to visit BareBones' website"}}] |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
# Tracks the AffectedBlocks stat of an entity. Result is stored in the | ||
# entity's `b7s:aff_blocks` score. Players are tracked by default, so you | ||
# don't need to call this function on them. | ||
# | ||
# Usage: | ||
# /execute <entity> ~ ~ ~ function b7s:entity/track_aff_blocks | ||
|
||
scoreboard players set @s b7s:aff_blocks 0 | ||
stats entity @s set AffectedBlocks @s b7s:aff_blocks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
# Tracks the AffectedEntities stat of an entity. Result is stored in the | ||
# entity's `b7s:aff_entities` score. Players are tracked by default, so you | ||
# don't need to call this function on them. | ||
# | ||
# Usage: | ||
# /execute <entity> ~ ~ ~ function b7s:entity/track_aff_entities | ||
|
||
scoreboard players set @s b7s:aff_entities 0 | ||
stats entity @s set AffectedEntities @s b7s:aff_entities |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
# Tracks the AffectedItems stat of an entity. Result is stored in the entity's | ||
# `b7s:aff_items` score. Players are tracked by default, so you don't need to | ||
# call this function on them. | ||
# | ||
# Usage: | ||
# /execute <entity> ~ ~ ~ function b7s:entity/track_aff_items | ||
|
||
scoreboard players set @s b7s:aff_items 0 | ||
stats entity @s set AffectedItems @s b7s:aff_items |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
# Tracks the QueryResult stat of an entity. Result is stored in the entity's | ||
# `b7s:query_result` score. Players are tracked by default, so you don't need | ||
# to call this function on them. | ||
# | ||
# Usage: | ||
# /execute <entity> ~ ~ ~ function b7s:entity/track_query_result | ||
|
||
scoreboard players set @s b7s:query_result 0 | ||
stats entity @s set QueryResult @s b7s:query_result |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
# Tracks the SuccessCount stat of an entity. Result is stored in the entity's | ||
# `b7s:success_cnt` score. Players are tracked by default, so you don't need to | ||
# call this function on them. | ||
# | ||
# Usage: | ||
# /execute <entity> ~ ~ ~ function b7s:entity/track_success_cnt | ||
|
||
scoreboard players set @s b7s:success_cnt 0 | ||
stats entity @s set SuccessCount @s b7s:success_cnt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters