Posted 10 October 2013 - 06:48 PM
Whenever I rumn my script the computer dosn't activate any redstone, I have a line to verify a valid signal:
Lua:
print("Comp#: " ..id .. "> " .. text)
It recieved the signal perfectly, but it still won't work.Lua:
print("Terminal Application")
rednet.open("bottom")
while true do
event, id, text = os.pullEvent()
if event == "rednet_message" then
print("Comp#: " ..id .. "> " .. text)
if text == "N" then
if rs.getOutput("top") then
rs.setOutput("back", false)
rs.setOutput("left", false)
print("NORTH")
elseif text == "W" then
rs.setOutput("back", true)
rs.setOutput("left", false)
print("WEST")
elseif text == "E" then
rs.setOutput("back", false)
rs.setOutput("left", true)
print("EAST")
else
print("Invalid Signal")
end
end
end
end