Advertisement
GeoffAlexander

place

Jan 4th, 2021 (edited)
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local tArgs = { ... }
  2. put = tArgs
  3.  
  4. print(put[1])
  5.  
  6. if put[1] == "forward" then
  7.     turtle.place()
  8.     print("Placing forward.")
  9. else
  10. end
  11.  
  12. if put[1] == "down" then
  13.     turtle.placeDown()
  14.     print("Placing down.")
  15. else
  16. end
  17.  
  18. if put[1] == "up" then
  19.     turtle.placeUp()
  20.     print("Placing up.")
  21. else
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement