Posted 26 October 2012 - 01:07 AM
I need to know how to get a program from a floppy disk onto a turtle. Please HALP! D:
copy disk/file file
in the terminal, or
fs.copy("disk/file", file)
from a program or the lua interpreter-- this will copy the file startup onto the turtle
if not fs.exists("startup") then
fs.copy("disk/startup","startup")
end
-- this works the same as above but for the file receive.
if not fs.exists("receive") then
fs.copy("disk/receive","receive")
end
-- this will open the rednet on your turtle automatically
rednet.open("left")
-- this will make the shell run the program receive
shell.run("receive")