Advertisement
CompCrafter

Untitled

Feb 11th, 2025
7
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. while true do
  2. if redstone.getInput("left") then
  3. sleep(0.1) -- Kurze Wartezeit, um CPU-Last zu reduzieren
  4. else
  5. redstone.setOutput("right", true)
  6. sleep(0.5) -- Dauer des Pulses (0.5 Sekunden)
  7. redstone.setOutput("right", false)
  8. end
  9. end
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement