-
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.
there we go
- Loading branch information
Showing
28 changed files
with
243 additions
and
0 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 @@ | ||
{ | ||
"values": [ | ||
"#ridablepearls:load" | ||
] | ||
} |
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 @@ | ||
{ | ||
"values": [ | ||
"#ridablepearls:tick" | ||
] | ||
} |
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 @@ | ||
{ | ||
"values": [ | ||
"#ridablepearls:uninstall" | ||
] | ||
} |
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 @@ | ||
{ | ||
"values": [ | ||
"ridablepearls:load" | ||
] | ||
} |
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 @@ | ||
{ | ||
"values": [ | ||
"ridablepearls:tick" | ||
] | ||
} |
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 @@ | ||
{ | ||
"values": [ | ||
"ridablepearls:uninstall" | ||
] | ||
} |
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,16 @@ | ||
#generate configs | ||
scoreboard objectives add PearlConfig dummy | ||
scoreboard players set AllowStasisChambers PearlConfig 1 | ||
scoreboard players set BreakInWater PearlConfig 0 | ||
|
||
#generate list of initialized players | ||
scoreboard objectives add Initialized dummy | ||
|
||
#generate list of players who are riding pearls | ||
scoreboard objectives add RidingPearls dummy | ||
|
||
#generate triggers | ||
scoreboard objectives add RidePearls trigger | ||
scoreboard objectives add StopRidingPearls trigger | ||
scoreboard objectives add PearlHelp trigger | ||
scoreboard objectives add ConfigurePearls trigger |
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,50 @@ | ||
#ride all ridable pearls | ||
execute as @e[type=minecraft:ender_pearl,tag=notriding] at @s if score @p RidingPearls matches 1 run ride @p mount @s | ||
#dismount stasis chambers | ||
execute if score AllowStasisChambers PearlConfig matches 1 PearlConfig as @e[type=minecraft:ender_pearl,tag=riding] at @s if block ~ ~ ~ minecraft:bubble_column run ride @p dismount | ||
#option to ban stasis chambers | ||
execute if score AllowStasisChambers PearlConfig matches 0 PearlConfig as @e[type=minecraft:ender_pearl] at @s if block ~ ~-1 ~ minecraft:bubble_column run kill @s | ||
#option to break pearls in water | ||
execute if score BreakInWater PearlConfig matches 1 PearlConfig as @e[type=minecraft:ender_pearl,tag=riding] at @s if block ~ ~ ~ minecraft:water run kill @s | ||
#generate tags for a pearl to be ridden | ||
execute as @e[type=minecraft:ender_pearl,tag=notriding] run data merge entity @s {Tags:["riding"]} | ||
execute as @e[type=minecraft:ender_pearl] at @s unless data entity @s {Tags:["riding"]} unless data entity @s {Tags:["notriding"]} align xyz unless block ~ ~-1 ~ minecraft:bubble_column run data merge entity @s {Tags:["notriding"]} | ||
|
||
#display config for creative mode players (trigger) | ||
execute as @a[gamemode=creative] if score @s ConfigurePearls matches 1 if score @s Initialized matches 1 run tellraw @s ["",{"text":"#############################################","bold":true,"color":"gold"},"\n",{"text":"# ","bold":true,"color":"gold"},{"text":"Allow Pearl Stasis Chambers","underlined":true,"color":"dark_green","clickEvent":{"action":"run_command","value":"/execute as @s run scoreboard players set AllowStasisChambers PearlConfig 3"}},{"text":" # ","bold":true,"color":"gold"},{"text":"Ban Pearl Stasis Chambers","underlined":true,"color":"dark_red","clickEvent":{"action":"run_command","value":"/execute as @s run scoreboard players set AllowStasisChambers PearlConfig 2"}},{"text":" #","bold":true,"color":"gold"},"\n",{"text":"#############################################","bold":true,"color":"gold"},"\n",{"text":"# ","bold":true,"color":"gold"},{"text":"Break Ender Pearls In Water","underlined":true,"color":"dark_green","clickEvent":{"action":"run_command","value":"/execute as @s run scoreboard players set BreakInWater PearlConfig 3"}},{"text":" # ","bold":true,"color":"gold"},{"text":"Keep Ender Pearls In Water","underlined":true,"color":"dark_red","clickEvent":{"action":"run_command","value":"/execute as @s run scoreboard players set BreakInWater PearlConfig 2"}},{"text":" #","bold":true,"color":"gold"},"\n",{"text":"#############################################","bold":true,"color":"gold"}] | ||
execute as @a[gamemode=creative] if score @s ConfigurePearls matches 1 if score AllowStasisChambers PearlConfig matches 2 run tellraw @s ["",{"text":"Pearl Stasis Chambers Are Banned!","color":"dark_red"}] | ||
execute if score @s ConfigurePearls matches 1 if score AllowStasisChambers PearlConfig matches 2 run scoreboard players set AllowStasisChambers PearlConfig 0 | ||
execute as @a[gamemode=creative] if score @s ConfigurePearls matches 1 if score AllowStasisChambers PearlConfig matches 3 run tellraw @s ["",{"text":"Pearl Stasis Chambers Are Allowed!","color":"dark_green"}] | ||
execute if score @s ConfigurePearls matches 1 if score AllowStasisChambers PearlConfig matches 3 run scoreboard players set AllowStasisChambers PearlConfig 1 | ||
execute as @a[gamemode=creative] if score @s ConfigurePearls matches 1 if score BreakInWater PearlConfig matches 2 run tellraw @s ["",{"text":"Ender Pearls Will Not Break In Water!","color":"dark_red"}] | ||
execute if score @s ConfigurePearls matches 1 if score BreakInWater PearlConfig matches 2 run scoreboard players set BreakInWater PearlConfig 0 | ||
execute as @a[gamemode=creative] if score @s ConfigurePearls matches 1 if score BreakInWater PearlConfig matches 3 run tellraw @s ["",{"text":"Ender Pearls Will Break In Water!","color":"dark_green"}] | ||
execute if score @s ConfigurePearls matches 1 if score BreakInWater PearlConfig matches 3 run scoreboard players set BreakInWater PearlConfig 1 | ||
#if not in creative mode | ||
execute as @a[gamemode=!creative] if score @s ConfigurePearls matches 1 ConfigurePearls run tellraw @s ["",{"text":"You must be in creative mode to configure ender pearls!","color":"dark_red"}] | ||
execute as @a if score @s ConfigurePearls matches 1 ConfigurePearls run scoreboard players set @s ConfigurePearls 0 | ||
|
||
#ride pearls (trigger) | ||
execute as @a if score @s RidePearls matches 1 if score @s RidingPearls matches 1 run tellraw @s ["",{"text":"You can already ride ender pearls!","color":"dark_red"}] | ||
execute as @a if score @s RidePearls matches 1 if score @s RidingPearls matches 0 run tellraw @s ["",{"text":"You can now ride ender pearls!","color":"dark_green"}] | ||
execute as @a if score @s RidePearls matches 1 run scoreboard players set @s RidingPearls 1 | ||
execute as @a if score @s RidePearls matches 1 run scoreboard players set @s RidePearls 0 | ||
|
||
#stop riding pearls (trigger) | ||
execute as @a if score @s StopRidingPearls matches 1 if score @s RidingPearls matches 1 run tellraw @s ["",{"text":"You are not riding ender pearls currently!","color":"dark_red"}] | ||
execute as @a if score @s StopRidingPearls matches 1 if score @s RidingPearls matches 0 run tellraw @s ["",{"text":"You can now ride ender pearls!","color":"dark_green"}] | ||
execute as @a if score @s StopRidingPearls matches 1 run scoreboard players set @s RidingPearls 0 | ||
execute as @a if score @s StopRidingPearls matches 1 run scoreboard players set @s StopRidingPearls 0 | ||
|
||
#display help menu (trigger) | ||
execute as @a if score @s PearlHelp matches 1 if score @s Initialized matches 1 PearlConfig run tellraw @p ["",{"text":"############################","bold":true,"color":"gold"},"\n",{"text":"# ","bold":true,"color":"gold"},{"text":"Ride Pearls!","underlined":true,"color":"dark_green","clickEvent":{"action":"run_command","value":"/scoreboard players set @s RidePearls 1"}},{"text":" # ","bold":true,"color":"gold"},{"text":"Stop Riding Pearls","underlined":true,"color":"dark_red","clickEvent":{"action":"run_command","value":"/scoreboard players set @s StopRidingPearls 1"}},{"text":" #","bold":true,"color":"gold"},"\n",{"text":"############################","bold":true,"color":"gold"},"\n",{"text":"# ","bold":true,"color":"gold"},{"text":"Edit Configuration","underlined":true,"color":"dark_aqua","clickEvent":{"action":"run_command","value":"/scoreboard players set @s ConfigurePearls 1"}}," ",{"text":" #","bold":true,"color":"gold"},"\n",{"text":"############################","bold":true,"color":"gold"}] | ||
execute as @a if score @s PearlHelp matches 1 run scoreboard players set @s PearlHelp 0 | ||
|
||
#resets all triggers | ||
execute as @a run scoreboard players enable @s ConfigurePearls | ||
execute as @a run scoreboard players enable @s RidePearls | ||
execute as @a run scoreboard players enable @s StopRidingPearls | ||
execute as @a run scoreboard players enable @s PearlHelp | ||
|
||
#this stops config text from apprearing when you first join | ||
execute as @a run scoreboard players set @s Initialized 1 |
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,8 @@ | ||
#remove scoreboards and triggers | ||
scoreboard objectives remove PearlConfig | ||
scoreboard objectives remove RidePearls | ||
scoreboard objectives remove RidingPearls | ||
scoreboard objectives remove StopRidingPearls | ||
scoreboard objectives remove PearlHelp | ||
scoreboard objectives remove ConfigurePearls | ||
scoreboard objectives remove Initialized |
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 @@ | ||
{ | ||
"values": [ | ||
"ridablepearls:load" | ||
] | ||
} |
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 @@ | ||
{ | ||
"values": [ | ||
"ridablepearls:tick" | ||
] | ||
} |
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 @@ | ||
{ | ||
"values": [ | ||
"ridablepearls:uninstall" | ||
] | ||
} |
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,6 @@ | ||
{ | ||
"pack": { | ||
"pack_format": 12, | ||
"description": "Allows riding of ender pearls. Use /trigger RidePearls to toggle. §lFOR <=1.19.3!" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 @@ | ||
{ | ||
"values": [ | ||
"#ridablepearls:load" | ||
] | ||
} |
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 @@ | ||
{ | ||
"values": [ | ||
"#ridablepearls:tick" | ||
] | ||
} |
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 @@ | ||
{ | ||
"values": [ | ||
"#ridablepearls:uninstall" | ||
] | ||
} |
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 @@ | ||
{ | ||
"values": [ | ||
"ridablepearls:load" | ||
] | ||
} |
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 @@ | ||
{ | ||
"values": [ | ||
"ridablepearls:tick" | ||
] | ||
} |
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 @@ | ||
{ | ||
"values": [ | ||
"ridablepearls:uninstall" | ||
] | ||
} |
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,16 @@ | ||
#generate configs | ||
scoreboard objectives add PearlConfig dummy | ||
scoreboard players set AllowStasisChambers PearlConfig 1 | ||
scoreboard players set BreakInWater PearlConfig 0 | ||
|
||
#generate list of initialized players | ||
scoreboard objectives add Initialized dummy | ||
|
||
#generate list of players who are riding pearls | ||
scoreboard objectives add RidingPearls dummy | ||
|
||
#generate triggers | ||
scoreboard objectives add RidePearls trigger | ||
scoreboard objectives add StopRidingPearls trigger | ||
scoreboard objectives add PearlHelp trigger | ||
scoreboard objectives add ConfigurePearls trigger |
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,45 @@ | ||
#teleport to pearl unless its in a bubble column | ||
execute as @e[type=minecraft:ender_pearl] at @s if score @p RidingPearls matches 1 unless block ~ ~-1 ~ minecraft:bubble_column run tp @p[distance=1..2] ~ ~ ~ ~180 ~ | ||
#break pearls in water if config is set | ||
execute as @e[type=minecraft:ender_pearl] at @s if score BreakInWater PearlConfig matches 1 if block ~ ~ ~ minecraft:water run kill @s | ||
#break preals in bubble columns if config is set | ||
execute as @e[type=minecraft:ender_pearl] at @s unless score AllowStasisChambers PearlConfig matches 1 if block ~ ~-1 ~ minecraft:bubble_column run kill @s | ||
|
||
#display config for creative mode players (trigger) | ||
execute as @a[gamemode=creative] if score @s ConfigurePearls matches 1 if score @s Initialized matches 1 run tellraw @s ["",{"text":"#############################################","bold":true,"color":"gold"},"\n",{"text":"# ","bold":true,"color":"gold"},{"text":"Allow Pearl Stasis Chambers","underlined":true,"color":"dark_green","clickEvent":{"action":"run_command","value":"/execute as @s run scoreboard players set AllowStasisChambers PearlConfig 3"}},{"text":" # ","bold":true,"color":"gold"},{"text":"Ban Pearl Stasis Chambers","underlined":true,"color":"dark_red","clickEvent":{"action":"run_command","value":"/execute as @s run scoreboard players set AllowStasisChambers PearlConfig 2"}},{"text":" #","bold":true,"color":"gold"},"\n",{"text":"#############################################","bold":true,"color":"gold"},"\n",{"text":"# ","bold":true,"color":"gold"},{"text":"Break Ender Pearls In Water","underlined":true,"color":"dark_green","clickEvent":{"action":"run_command","value":"/execute as @s run scoreboard players set BreakInWater PearlConfig 3"}},{"text":" # ","bold":true,"color":"gold"},{"text":"Keep Ender Pearls In Water","underlined":true,"color":"dark_red","clickEvent":{"action":"run_command","value":"/execute as @s run scoreboard players set BreakInWater PearlConfig 2"}},{"text":" #","bold":true,"color":"gold"},"\n",{"text":"#############################################","bold":true,"color":"gold"}] | ||
execute as @a[gamemode=creative] if score @s ConfigurePearls matches 1 if score AllowStasisChambers PearlConfig matches 2 run tellraw @s ["",{"text":"Pearl Stasis Chambers Are Banned!","color":"dark_red"}] | ||
execute if score @s ConfigurePearls matches 1 if score AllowStasisChambers PearlConfig matches 2 run scoreboard players set AllowStasisChambers PearlConfig 0 | ||
execute as @a[gamemode=creative] if score @s ConfigurePearls matches 1 if score AllowStasisChambers PearlConfig matches 3 run tellraw @s ["",{"text":"Pearl Stasis Chambers Are Allowed!","color":"dark_green"}] | ||
execute if score @s ConfigurePearls matches 1 if score AllowStasisChambers PearlConfig matches 3 run scoreboard players set AllowStasisChambers PearlConfig 1 | ||
execute as @a[gamemode=creative] if score @s ConfigurePearls matches 1 if score BreakInWater PearlConfig matches 2 run tellraw @s ["",{"text":"Ender Pearls Will Not Break In Water!","color":"dark_red"}] | ||
execute if score @s ConfigurePearls matches 1 if score BreakInWater PearlConfig matches 2 run scoreboard players set BreakInWater PearlConfig 0 | ||
execute as @a[gamemode=creative] if score @s ConfigurePearls matches 1 if score BreakInWater PearlConfig matches 3 run tellraw @s ["",{"text":"Ender Pearls Will Break In Water!","color":"dark_green"}] | ||
execute if score @s ConfigurePearls matches 1 if score BreakInWater PearlConfig matches 3 run scoreboard players set BreakInWater PearlConfig 1 | ||
#if not in creative mode | ||
execute as @a[gamemode=!creative] if score @s ConfigurePearls matches 1 ConfigurePearls run tellraw @s ["",{"text":"You must be in creative mode to configure ender pearls!","color":"dark_red"}] | ||
execute as @a if score @s ConfigurePearls matches 1 ConfigurePearls run scoreboard players set @s ConfigurePearls 0 | ||
|
||
#ride pearls (trigger) | ||
execute as @a if score @s RidePearls matches 1 if score @s RidingPearls matches 1 run tellraw @s ["",{"text":"You can already ride ender pearls!","color":"dark_red"}] | ||
execute as @a if score @s RidePearls matches 1 if score @s RidingPearls matches 0 run tellraw @s ["",{"text":"You can now ride ender pearls!","color":"dark_green"}] | ||
execute as @a if score @s RidePearls matches 1 run scoreboard players set @s RidingPearls 1 | ||
execute as @a if score @s RidePearls matches 1 run scoreboard players set @s RidePearls 0 | ||
|
||
#stop riding pearls (trigger) | ||
execute as @a if score @s StopRidingPearls matches 1 if score @s RidingPearls matches 1 run tellraw @s ["",{"text":"You are not riding ender pearls currently!","color":"dark_red"}] | ||
execute as @a if score @s StopRidingPearls matches 1 if score @s RidingPearls matches 0 run tellraw @s ["",{"text":"You can now ride ender pearls!","color":"dark_green"}] | ||
execute as @a if score @s StopRidingPearls matches 1 run scoreboard players set @s RidingPearls 0 | ||
execute as @a if score @s StopRidingPearls matches 1 run scoreboard players set @s StopRidingPearls 0 | ||
|
||
#display help menu (trigger) | ||
execute as @a if score @s PearlHelp matches 1 if score @s Initialized matches 1 PearlConfig run tellraw @p ["",{"text":"############################","bold":true,"color":"gold"},"\n",{"text":"# ","bold":true,"color":"gold"},{"text":"Ride Pearls!","underlined":true,"color":"dark_green","clickEvent":{"action":"run_command","value":"/scoreboard players set @s RidePearls 1"}},{"text":" # ","bold":true,"color":"gold"},{"text":"Stop Riding Pearls","underlined":true,"color":"dark_red","clickEvent":{"action":"run_command","value":"/scoreboard players set @s StopRidingPearls 1"}},{"text":" #","bold":true,"color":"gold"},"\n",{"text":"############################","bold":true,"color":"gold"},"\n",{"text":"# ","bold":true,"color":"gold"},{"text":"Edit Configuration","underlined":true,"color":"dark_aqua","clickEvent":{"action":"run_command","value":"/scoreboard players set @s ConfigurePearls 1"}}," ",{"text":" #","bold":true,"color":"gold"},"\n",{"text":"############################","bold":true,"color":"gold"}] | ||
execute as @a if score @s PearlHelp matches 1 run scoreboard players set @s PearlHelp 0 | ||
|
||
#resets all triggers | ||
execute as @a run scoreboard players enable @s ConfigurePearls | ||
execute as @a run scoreboard players enable @s RidePearls | ||
execute as @a run scoreboard players enable @s StopRidingPearls | ||
execute as @a run scoreboard players enable @s PearlHelp | ||
|
||
#this stops config text from apprearing when you first join | ||
execute as @a run scoreboard players set @s Initialized 1 |
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,6 @@ | ||
scoreboard objectives remove PearlConfig | ||
scoreboard objectives remove RidePearls | ||
scoreboard objectives remove RidingPearls | ||
scoreboard objectives remove StopRidingPearls | ||
scoreboard objectives remove PearlHelp | ||
scoreboard objectives remove ConfigurePearls |
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 @@ | ||
{ | ||
"values": [ | ||
"ridablepearls:load" | ||
] | ||
} |
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 @@ | ||
{ | ||
"values": [ | ||
"ridablepearls:tick" | ||
] | ||
} |
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 @@ | ||
{ | ||
"values": [ | ||
"ridablepearls:uninstall" | ||
] | ||
} |
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,6 @@ | ||
{ | ||
"pack": { | ||
"pack_format": 12, | ||
"description": "Allows riding of ender pearls. Use /trigger ride to toggle. §lFOR >=1.19.4!" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.