Posted 19 November 2013 - 12:10 PM
I am on a 1.2.5 world and am making a program for a mining system. It all goes well but according to my test computer, which I run the commands
PC Program:
m = peripheral.wrap("left")
rednet.open("left")
msg = rednet.receive()
print(msg)
it spits out 0 and 1. Any Ideas?PC Program:
m = peripheral.wrap("right")
rednet.open ("right")
cycles = 0
while true do
rednet.broadcast("mine")
cycles = cycles + 1
print ("Cycles = "..cycles)
sleep(10)
end