Schedule Blocks
Schedule blocks allow you to quickly create and call a new function within a schedule command.
schedule <delay> [replace|append] {
<...>
}
Examples
Schedule Function
example.mcb
function a {
schedule 1t {
say Hello World!
}
}
example:a.mcfunction
schedule function example:a 1t
example:zzz/b.mcfunction
say Hello World!