Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Farming Turtle Helper Api "ascoFarmingApi"
- --Load Turtle Api for better handling
- --APIs are loaded in the downloader
- seedSlot = 1
- -- Getter and Setter for variables
- function setSeedSlot(slot)
- seedSlot = slot
- end
- function getSeedSlot()
- return seedSlot
- end
- function plant()
- turtle.digDown()
- turtle.select(getSeedSlot())
- turtle.placeDown()
- end
- function harvestDown()
- turtle.digDown()
- turtle.suckDown()
- end
- function harvestFront()
- turtle.dig()
- turtle.suckDown()
- turtle.suck()
- end
- function checkSeeds()
- turtle.select(getSeedSlot())
- while (turtle.getItemCount(getSeedSlot()) < 1) do
- print("Please put atleast one seed in slot " .. getSeedSlot() .. ". Thank you.")
- ascoTurtleApi.waitForInput()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement