Advertisement
ascobol

Asco Farming Api

Feb 26th, 2014
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.75 KB | None | 0 0
  1. -- Farming Turtle Helper Api "ascoFarmingApi"
  2.  
  3. --Load Turtle Api for better handling
  4. --APIs are loaded in the downloader
  5.  
  6. seedSlot = 1
  7.  
  8. -- Getter and Setter for variables
  9.  
  10. function setSeedSlot(slot)
  11.     seedSlot = slot
  12. end
  13.  
  14. function getSeedSlot()
  15.     return seedSlot
  16. end
  17.  
  18. function plant()
  19.     turtle.digDown()
  20.     turtle.select(getSeedSlot())
  21.     turtle.placeDown()
  22. end
  23.  
  24. function harvestDown()
  25.     turtle.digDown()
  26.     turtle.suckDown()
  27. end
  28.  
  29. function harvestFront()
  30.     turtle.dig()
  31.     turtle.suckDown()
  32.     turtle.suck()
  33. end
  34.  
  35. function checkSeeds()
  36.     turtle.select(getSeedSlot())
  37.     while (turtle.getItemCount(getSeedSlot()) < 1) do      
  38.         print("Please put atleast one seed in slot " .. getSeedSlot() .. ". Thank you.")
  39.         ascoTurtleApi.waitForInput()                       
  40.     end
  41. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement