Advertisement
77wisher77

exhaust

Dec 1st, 2020
640
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.20 KB | None | 0 0
  1.  
  2. local exhaust = math.floor(turtle.getFuelLevel() / 2)
  3. print("need to jump "..exhaust.." times")
  4. for i=1,exhaust,1 do
  5.     turtle.up()
  6.     turtle.down()
  7.     print((exhaust - i).." jumps remaining!")
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement