Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Slot 1: empty Bucket (2x2. water source under)
- --Slot 2-?: craft items split in to drop one of each
- --Final Slot: Seeds (to complete the flower)
- while true do
- --refill Petal appothecary
- turtle.select(1)
- turtle. placeDown()
- turtle. place()
- --cycle drop for recipe
- for i=2,15 do
- turtle.select(i)
- turtle.drop(1)
- end
- sleep(5)
- --pick up flower creation
- turtle.suck()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement