Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- count = 0
- while true do
- turtle.back()
- turtle.forward()
- for i = 1, 16, 1 do
- turtle.select(i)
- turtle.refuel(64)
- end
- print("How many times:", count)
- percentFuelLevel = (turtle.getFuelLevel() / turtle.getFuelLimit()) * 100
- print("Fuel level: ", math.ceil(percentFuelLevel), "%")
- count = count + 1
- -- pastebin bA6zcARg afk
- end
Advertisement
Add Comment
Please, Sign In to add comment