TimDV91

MineCartWait

Jan 16th, 2022 (edited)
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. timeout = 30
  2.  
  3. while true do
  4.     print("Waiting for cart")
  5.     os.pullEvent("redstone")
  6.    
  7.     print("cart detected, counting down")
  8.     sleep(timeout)
  9.    
  10.     print("Countdown done, launching cart")
  11.     redstone.setOutput("back", true)
  12.     sleep(3)
  13.    
  14.     redstone.setOutput("back", false)
  15.     sleep(3)
  16. end
  17.  
Add Comment
Please, Sign In to add comment