Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --@Author: Zach Combs aka TehNoiseBomb
- --@Version: 1.1
- crop = "magicalcrops:MinicioCrop" --Change to the unlocalized name of the crop you want to farm with the turtle
- seed = "magicalcrops:MinicioSeeds" --Change to the unlocalized name of the seed for the crop you want to farm with the turtle
- fullyGrown = 7 --This is the metadata of the crop block when it is fully grown
- sleepTime = 300 --time to wait between cycles in seconds (default: 300 -> 5 minutes)
- --Starts the main file for the farming turtle
- --Variables: blank table, string file name of the main farming file, crop, seed, fullyGrown, sleepTime
- os.run({}, "farm9x9", crop, seed, fullyGrown, sleepTime)
- --------------------------------------------------------------
- --ReadMe.txt
- --This startup file along with the other eight files on my pastebin page
- --(http://pastebin.com/u/TehNoiseBomb_) titled "ComputerCraft 1.75 - 9x9 Farming - (insert file name here)"
- --need to be installed onto the turtle for this program to fully work.
- --Each file should be named with the last word in the title of the file, as seed above by the "(insert file name here)."
- --On bootup, the turtle may error out, this will be because you need to put the seeds in the turtles inventory.
- --Also to start the turtle off with fuel the first time, I would suggest using the following code:
- --lua > turtle.select(slot of your fuel) > turtle.refuel() > exit() > reboot().
- --After you know the turtle has fuel and seeds, type "reboot" to get your turtle working.
- -- 'C' is a crop
- -- 'W' is the water block
- -- 'S' is the starting position of the turtle, ABOVE the crop
- -- 'D' is the dump chest
- -- 'F' is the fuel chest
- -- --
- -- C C C C C C C C C --
- -- C C C C C C C C C --
- -- C C C C C C C C C --
- -- C C C C C C C C C --
- -- C C C C W C C C C --
- -- C C C C C C C C C --
- -- C C C C C C C C C --
- -- C C C C C C C C C --
- --D C C C C C C C C C --
- --F --
- --------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment