Posted 26 February 2012 - 06:09 PM
hello and welcome to a few robots that can send messages to other bases they range from above ground under ground tunnelers and completely hidden ones that cover there tracks. due to the limitations of this mod and my ability they can only go in straight lines.
first one: the message rover very similar to my rover on found here: http://www.computercraft.info/forums2/index.php?/topic/259-a-few-simple-programs/
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.
challenge make one that covers its tracks.
first one: the message rover very similar to my rover on found here: http://www.computercraft.info/forums2/index.php?/topic/259-a-few-simple-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.