Posted 28 December 2012 - 05:06 AM
Hello there.
Previously I had been running my program "melons" to harvest melons from my farm and then drop them off. This was running fine without errors
From this I wanted all my turtles controlled by a central computer:
Turtle Code:
Computer Code:
The turtle prints then comes up with the error in the title.
Please Help Thanks in advance
EDIT: I am using the Tekkit modpack on a server,although I am the server owner.
Previously I had been running my program "melons" to harvest melons from my farm and then drop them off. This was running fine without errors
From this I wanted all my turtles controlled by a central computer:
Turtle Code:
print("Waiting for commands...")
rednet.close()
rednet.open()
senderID, mes, dis = rednet.receive()
if senderID==32 and mes=="start" then
dofile(melons)
end
Computer Code:
rednet.close("top")
rednet.open("top")
rednet.broadcast("start")
The turtle prints then comes up with the error in the title.
Please Help Thanks in advance
EDIT: I am using the Tekkit modpack on a server,although I am the server owner.