Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- options:
- p: <gray><bold>[<light green><bold>LithiumUHC<gray><bold>]
- command /tripleores <text>:
- aliases: /to
- trigger:
- if arg-1 is equal to "on" or "enable":
- command sender has permission "tripleores.op":
- set {TripleOres.Enabled} to true
- broadcast "{@p} <yellow>TripleOres <light blue>enabled by <pink>%sender%!"
- command "/playsound note.pling %sender%"
- else:
- message "{@p} <pink>You do not have the required permission to use this command!"
- command "/playsound random.break %sender%"
- else if arg-1 is equal to "off" or "disable":
- command sender has permission "tripleores.op":
- set {TripleOres.Enabled} to false
- broadcast "{@p} <yellow>TripleOres <light blue>disabled by <pink>%sender%!"
- command "/playsound note.pling %sender%"
- else:
- message "{@p} <pink>You do not have the required permission to use this command!"
- command "/playsound random.break %sender%"
- else if arg-1 is equal to "info":
- message "<light blue>=========================================================================================="
- message " {@p}"
- message "<yellow>TripleOres: <pink>All ores drop 3 of their smelted form. All food is dropped cooked."
- message "<light blue>=========================================================================================="
- else if arg-1 is equal to "help":
- command sender has permission "tripleores.op":
- message "<light blue>==================================================================================="
- message " {@p}"
- message "<pink>/tripleores on <yellow>: Turns on TripleOres."
- message "<pink>/tripleores off <yellow>: Turns off TripleOres."
- message "<pink>/tripleores info <yellow>: Info about TripleOres. <pink>All players can use this command!"
- message "<pink>/tripleores toggle <yellow>: Toggles TripleOres."
- message "<pink>/tripleores help <yellow>: Brings this up."
- message "<light blue>====================================================================================="
- else:
- message "{@p} <pink>You do not have the required permission to use this command!"
- command "/playsound random.break %sender%"
- else if arg-1 is equal to "toggle":
- command sender has permission "tripleores.op":
- if {TripleOres.Enabled} is true:
- set {TripleOres.Enabled} to false
- broadcast "{@p} <yellow>TripleOres <light blue>disabled by <pink>%sender%!"
- command "/playsound note.pling %sender%"
- else:
- set {TripleOres.Enabled} to true
- broadcast "{@p} <yellow>TripleOres <light blue>enabled by <pink>%sender%!"
- command "/playsound note.pling %sender%"
- else:
- message "{@p} <pink>You do not have the required permission to use this command!"
- command "/playsound random.break %sender%"
- on break:
- if event-block is iron ore:
- if {TripleOres.Enabled} is true:
- cancel the event
- set block to air
- drop 3 iron ingot at the event-block
- spawn 3 experience orb at the event-block
- if event-block is gold ore:
- if {TripleOres.Enabled} is true:
- cancel the event
- set block to air
- drop 3 gold ingot at the event-block
- spawn 3 experience orb at the event-block
- if event-block is diamond ore:
- if {TripleOres.Enabled} is true:
- cancel the event
- set block to air
- drop 3 diamond at the event-block
- spawn 3 experience orb at the event-block
- if event-block is coal ore:
- if {TripleOres.Enabled} is true:
- cancel the event
- set block to air
- drop 3 coal at the event-block
- spawn 3 experience orb at the event-block
- if event-block is oak leaves:
- if {TripleOres.Enabled} is true:
- set block to air
- chance of 75%:
- drop 1 apple
- cancel the event
- if event-block is gravel:
- if {TripleOres.Enabled} is true:
- set block to air
- chance of 75%:
- drop 1 flint
- cancel the event
- on death of a pig:
- if {TripleOres.Enabled} is true:
- clear drops
- drop 3 cooked porkchop at the pig
- on death of a cow:
- if {TripleOres.Enabled} is true:
- clear drops
- drop 3 steak at the cow
- on death of a spider:
- if {TripleOres.Enabled} is true:
- clear drops
- drop 2 string at the spider
- on death of a chicken:
- if {TripleOres.Enabled} is true:
- clear drops
- drop 3 cooked chicken at the chicken
- drop 2 feather at the chicken
Advertisement
Add Comment
Please, Sign In to add comment