bobmarley12345

strangedarkmattergenerator

Sep 29th, 2020 (edited)
576
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.73 KB | None | 0 0
  1. while true do
  2.     term.clear()
  3.     term.setCursorPos(0,0)
  4.  
  5.     if (redstone.getInput("top")) then
  6.         print("Dark Matter generator ONLINE")
  7.         print("Turning on Main Particle Accelerator...")
  8.         redstone.setOutput("right", true)
  9.         print("Waiting for particle to reach 65% velocity")
  10.  
  11.         sleep(53)
  12.         print("Activating collision particle accelerator")
  13.         redstone.setOutput("left", true)
  14.         sleep(12)
  15.         print("Particles collided")
  16.  
  17.         print("Deactivating both particle accelerators")
  18.         redstone.setOutput("right", false)
  19.         redstone.setOutput("left", false)
  20.  
  21.         sleep(2)
  22.  
  23.     else
  24.         print("Dark Matter generator offline.")
  25.     end
  26.  
  27.     sleep(1)
  28. end
Add Comment
Please, Sign In to add comment