Advertisement
jBlume

Botania Flower Crafting

Jul 13th, 2023 (edited)
882
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. --Slot 1: empty Bucket (2x2. water source under)
  2. --Slot 2-?: craft items split in to drop one of each
  3. --Final Slot: Seeds (to complete the flower)
  4.  
  5. while true do
  6.  
  7. --refill Petal appothecary
  8.  turtle.select(1)
  9.  turtle. placeDown()
  10.  turtle. place()
  11.  
  12. --cycle drop for recipe
  13.  for i=2,15 do
  14.   turtle.select(i)
  15.   turtle.drop(1)
  16.  end
  17.  sleep(5)
  18. --pick up flower creation
  19.  turtle.suck()
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement