Initial commit
This commit is contained in:
10
BookCraigRichardson/booleans/aboveGround.py
Normal file
10
BookCraigRichardson/booleans/aboveGround.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from mcpi.minecraft import Minecraft
|
||||
mc = Minecraft.create()
|
||||
position = mc.player.getTilePos()
|
||||
x = position.x
|
||||
y = position.y
|
||||
z = position.z
|
||||
highestBlockY = mc.getHeight(x, z)
|
||||
aboveGround = y >= highestBlockY
|
||||
print("highestBlock: " + str(highestBlockY) + " y:" + str(y))
|
||||
mc.postToChat("Igrok nad zemloy? " + str(aboveGround))
|
||||
Reference in New Issue
Block a user