Advertisement
Guest User

Untitled

a guest
Jun 8th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.54 KB | None | 0 0
  1. local rs = component.proxy(component.list("redstone"))
  2. local sides = component.proxy(component.list("sides"))
  3.  
  4. while true do
  5.     left = rs.getInput(sides.left)
  6.     right = rs.getInput(sides.right)   
  7.     if left > 0 and right < 1 then rs.setOutput(sides.front, 15)
  8.     elseif left < 1 and right > 0 then rs.setOutput(sides.front, 0)
  9.     elseif left and right > 0 then rs.setOutput(sides.front, 15)
  10.     elseif left and right < 1 then rs.setOutput(sides.front, 0)
  11.     else rs.setOutput(sides.front, 0)
  12.     end
  13. end
  14.  
  15.  
  16. [ERROR]
  17. bad argument #1 (string expected, got table)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement