Advertisement
jBlume

Turtle DiskDrive Row StartUp

Jun 30th, 2023 (edited)
946
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.40 KB | None | 0 0
  1. -- place Disk Drive slot 1 and Floppy Slot 2
  2. for d=1,150 do
  3.  turtle.up()
  4.  turtle.turnLeft()
  5.  
  6.  turtle.select(1)
  7.  turtle.place()
  8.  
  9.  turtle.select(2)
  10.  turtle.drop()
  11.  
  12.  turtle.down()
  13.  peripheral.wrap("front").turnOn()
  14.  peripheral.wrap("front").reboot()
  15.  
  16.  
  17.  turtle.up()
  18.  turtle.select(2)
  19.  turtle.suck()
  20.  turtle.select(1)
  21.  turtle.dig()
  22.  turtle.down()
  23.  turtle.turnRight()
  24.  turtle.forward()
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement