Greetings,
I am having problems trying to get my turtles to terminate their programs. I do ctrl+T and get the line 'Terminated' but I am unable to input any commands.
The turtle is a mining turtle with a wireless modem.
I am running Direwolf20's 'awaitCommand' prog on my turtles and a 'startup' prog. The STARTUP prog is the prog that is running because I noticed the 'awaitCommand' prog stopped everytime I left the chunk and I didn't want to have to keep running the prog on the 16turtles that I have.
Thanks for helping me to completely stop the programs so I can get back in to edit the programs.
Zerro0713
I am having problems trying to get my turtles to terminate their programs. I do ctrl+T and get the line 'Terminated' but I am unable to input any commands.
The turtle is a mining turtle with a wireless modem.
I am running Direwolf20's 'awaitCommand' prog on my turtles and a 'startup' prog. The STARTUP prog is the prog that is running because I noticed the 'awaitCommand' prog stopped everytime I left the chunk and I didn't want to have to keep running the prog on the 16turtles that I have.
Code:
startup
while true do
shell.run("awaitCommand")
end
awaitCommand
rednet.open("right")
while true do
senderID, message, distance = rednet.receive()
print(message)
shell.run(message)
end
Thanks for helping me to completely stop the programs so I can get back in to edit the programs.
Zerro0713