Advertisement
Fettish

Turtle Bomber Bot

Feb 1st, 2025 (edited)
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.51 KB | None | 0 0
  1. turtle.select(3)
  2. turtle.refuel(64)
  3. turtle.select(1)
  4.  
  5. function place()
  6.     local length = 64
  7.  
  8.     for i = 1, length, 1 do
  9.         turtle.select(2)
  10.         turtle.placeDown()
  11.         turtle.forward()
  12.     end
  13. end
  14.  
  15. function turn()
  16.     turtle.turnLeft()
  17.     turtle.turnLeft()
  18.     turtle.up()
  19. end
  20.  
  21. function fire()
  22.     local length = 64
  23.  
  24.     for i = 1, length, 1 do
  25.         turtle.select(1)
  26.         turtle.placeDown()
  27.         turtle.forward()
  28.     end
  29. end
  30.  
  31. place()
  32. turn()
  33. fire()
  34. turtle.placeDown()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement