File tree Expand file tree Collapse file tree 4 files changed +35
-0
lines changed Expand file tree Collapse file tree 4 files changed +35
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ title : Hello, World!
3
+ description : Prints Hello, World! to chat.
4
+ author : Legopitstop
5
+ tags : chat,hello-world
6
+ ---
7
+
8
+ ``` mcscript
9
+ /say Hello, World!
10
+ ```
Original file line number Diff line number Diff line change
1
+ ---
2
+ title : Block
3
+ description : Performs a raycast for 10 blocks, checking for air and placing a stone block when it hits white wool.
4
+ author : legopitstop
5
+ tags : raycast,block
6
+ ---
7
+
8
+ ``` mcscript
9
+ raycast(10,"air",block "white_wool") {
10
+ /setblock ~ ~ ~ stone
11
+ }
12
+ ```
Original file line number Diff line number Diff line change
1
+ ---
2
+ title : Entity
3
+ description : Performs a raycast for 10 blocks, checking for air and placing a stone block when it hits an armor stand.
4
+ author : Legopitstop
5
+ tags : raycast,entity
6
+ ---
7
+
8
+ ``` mcscript
9
+ raycast(10,"air",entity @e[type=armor_stand]) {
10
+ /setblock ~ ~ ~ stone
11
+ }
12
+ ```
You can’t perform that action at this time.
0 commit comments