Jump to content
  • Sky
  • Blueberry
  • Slate
  • Blackcurrant
  • Watermelon
  • Strawberry
  • Orange
  • Banana
  • Apple
  • Emerald
  • Chocolate
  • Charcoal

L3ar

Members
  • Content Count

    2
  • Joined

  • Last visited

Everything posted by L3ar

  1. Ooooh I didn't know that ! thanks ! I'll fix that and try again
  2. I'm trying to control 2 funky locomotion frame sliders to move a door using this program : local component = require("component") local sides = require("sides") local rs = component.redstone local doorOpen = false local delay = 15 while true do if rs.getOutput(sides.front) > 0 then if doorOpen then print("Closing door") rs.setOutput(sides.right, 15) os.sleep(delay) rs.setOuput(sides.right, 0) doorOpen = not doorOpen else print("Opening door") rs.setOutput(sides.left, 15) os.sleep(delay) rs.setOutput(sides.left, 0)
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.