first one: the message rover very similar to my rover on found here: http://www.computerc...imple-programs/
print("--welcome to super secret message sender")
print("--point in the direction of friendly base and away you go--")
write "Password: "
input = read()
if input == password then
print"---access granted---"
print"what is your message sir?"
input = read()
write (input)
while turtle.forward() do
if turtle.detectDown() == false then
turtle.down()
end
if turtle.detect() == true then
turtle.up()
end
end
end
next is the borer this wont stop unless a player gets in front of it . so here is your challenge:make it stop and make it so the message cant be intercepted. i mean obviously you could send this there and it will dig a tunnel then you could send the oter one down there with the message post your challenge responses in the comments section.
password="password" print"--welcome to secret tunnel borer--" print"--point in the direction of friend--" print"--and send underground or above ground--" write "Password: " input = read() if input == password then print"---access granted---" print"what is your message sir?" input = read() write (input) end while turtle.forward() do turtle.dig() end end
challenge make one that covers its tracks.












