Advertisement
Untick3

saltMakerTuwtle

Jul 23rd, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.35 KB | None | 0 0
  1. --LUA programm written for a CC (ComputerCraft) Turtle
  2.  
  3. --Makes salt from Pam's Harvest Craft, stands on top of infinite ater source and infron of a chest.
  4. --Has 2 items in inventory: Slot 1 = Pot and Slot 2 = Bucket
  5.  
  6. print("Making salt")
  7. while true do
  8.     turtle.select(2)
  9.     turtle.placeDown()
  10.     turtle.craft()
  11.     turtle.select(3)
  12.     turtle.drop()
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement