Posted 04 May 2013 - 05:45 PM
So I am making a remote turtle program and I want to make it so on the computer at the beginning I can type in the id of the turtle and it will always use that id until I restart the program
here is my pogram
here is my pogram
term.setBackgroundColor(colors.cyan)
print(" ")
term.clear()
rednet.open("top")
while true do
event, e = os.pullEvent("key")
if e == 203 then
rednet.send(75,"left")
and so forth how would I make it so the 75 would be an input that I enter and stay there so I can do multiple turtle's