Advertisement
LMN101

PC

Jun 5th, 2020
1,412
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.25 KB | None | 0 0
  1. local modem = peripheral.wrap("left")
  2. while true do
  3. if not redstone.getInput("right") then
  4. print("transmitting to placer turtles")
  5. modem.transmit(2551, 420, "tide")
  6. sleep(0.1)
  7. print("turning on flower")
  8. modem.transmit(2550, 420, "tidy")
  9. sleep(25.6)
  10. print("turning off flower")
  11. modem.transmit(2550, 420, "tidy")
  12. else
  13. sleep(0.1)
  14. end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement