26 lines
544 B
Python
26 lines
544 B
Python
#
|
|
# Code under the MIT license by Alexander Pruss
|
|
#
|
|
|
|
|
|
from mc import *
|
|
import time
|
|
import os
|
|
|
|
mc = Minecraft()
|
|
|
|
bridge = []
|
|
|
|
while True:
|
|
pos = mc.player.getTilePos()
|
|
pos.y = pos.y - 1
|
|
belowBlock = mc.getBlock(pos)
|
|
if belowBlock == AIR.id or belowBlock == WATER_FLOWING.id or belowBlock == WATER_STATIONARY.id:
|
|
bridge.append(pos)
|
|
mc.setBlock(pos, STAINED_GLASS_BLUE)
|
|
if len(bridge) > 10:
|
|
firstPos = bridge.pop(0)
|
|
if not firstPos in bridge:
|
|
mc.setBlock(firstPos, AIR)
|
|
time.sleep(0.05)
|