Published Mar 15th, 2018, 3/15/18 4:55 pm
- 2,595 views, 0 today
- 6
- 5
- 3
78
Fire Mechanics: using fire is a excellent way to detect when a entity is on the ground.
when fire is setblocked it will not work until it is on the ground.
let's say you want to make Chicken bombs that explode on the ground. use these 2 commands in command blocks put them down like this.

After that put this command in the Repeating command block:
execute @e[type=chicken,name=Bomb] ~ ~ ~ /fill ~ ~ ~ ~ ~ ~ minecraft:fire 1 0
After that put this command in the Chain command block:
execute @e[type=chicken,name=Bomb] ~ ~ ~ detect ~ ~ ~ minecraft:fire -1 /summon minecraft:tnt ~ ~ ~
after that step is done, grab an anvil and name an egg Bomb (with the B in CAPS), then go high in the air and spawn a chicken named Bomb. Watch the Bomb as it slowly floats down. If you watch the the chicken hit the ground you will barely see a block of fire (appear then disappear).
how this work is the REPEATING block is always setting fire; but sense it's not on the ground is just disapears (until the chicken hit the ground. and in the CHAIN block it detect when the chicken is in the fire then it blows up.
The FIRE MECHANICS are awesome!
this works for snowballs, mobs and MORE!!
when fire is setblocked it will not work until it is on the ground.
let's say you want to make Chicken bombs that explode on the ground. use these 2 commands in command blocks put them down like this.

After that put this command in the Repeating command block:
execute @e[type=chicken,name=Bomb] ~ ~ ~ /fill ~ ~ ~ ~ ~ ~ minecraft:fire 1 0
After that put this command in the Chain command block:
execute @e[type=chicken,name=Bomb] ~ ~ ~ detect ~ ~ ~ minecraft:fire -1 /summon minecraft:tnt ~ ~ ~
after that step is done, grab an anvil and name an egg Bomb (with the B in CAPS), then go high in the air and spawn a chicken named Bomb. Watch the Bomb as it slowly floats down. If you watch the the chicken hit the ground you will barely see a block of fire (appear then disappear).
how this work is the REPEATING block is always setting fire; but sense it's not on the ground is just disapears (until the chicken hit the ground. and in the CHAIN block it detect when the chicken is in the fire then it blows up.
The FIRE MECHANICS are awesome!
this works for snowballs, mobs and MORE!!
Credit | The Red Engineer |
Tags |
4104408
6
Create an account or sign in to comment.
execute as @e[type=chicken,name=Bomb] ~ ~ ~ run fill ~ ~ ~ ~ ~ ~ minecraft:fire 1 0
I think
execute as @e[type=chicken,name=Bomb] ~ ~ ~ detect ~ ~ ~ minecraft:fire -1 run summon minecraft:tnt ~ ~ ~
I think?