Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- TurtleRemote by AngelMalus
- controllerID = "YOURCODEHERE"
- signMsg = "ENABLE THE END PLEASE" -- Not working now
- function RCS()
- while true do
- local scrap, message = rednet.receive()
- if message == controllerID.."FD" then
- print("Forward")
- if turtle.detect() == true then
- turtle.dig()
- end
- turtle.forward()
- elseif message == controllerID.."BK" then
- print("Backward")
- turtle.back()
- elseif message == controllerID.."TL" then
- print("Turn Left")
- turtle.turnLeft()
- elseif message == controllerID.."TR" then
- print("Turn Right")
- turtle.turnRight()
- elseif message == controllerID.."UP" then
- print("Go Up")
- if turtle.detectUp() == true then
- turtle.digUp()
- end
- turtle.up()
- elseif message == controllerID.."DN" then
- print("Go Down")
- if turtle.detectDown() == true then
- turtle.digDown()
- end
- turtle.down()
- elseif message == controllerID.."PL" then
- if turtle.detect() == true then
- print("Block Present")
- else
- print("Dropping Bombs")
- turtle.placeDown()
- rs.setOutput("bottom", true)
- sleep(0.4)
- rs.setOutput("bottom", false)
- end
- elseif message == controllerID.."PU" then
- if turtle.detect() == true then
- print("Block Present")
- else
- print("Place Block Up")
- turtle.placeUp()
- end
- elseif message == controllerID.."PF" then
- if turtle.detect() == true then
- print("Block Present")
- else
- print("Place Block Front")
- turtle.place()
- end
- elseif message == controllerID.."PD" then
- if turtle.detect() == true then
- print("Block Present")
- else
- print("Place Block Down")
- turtle.placeDown()
- end
- elseif message == controllerID.."S1" then
- turtle.select(1)
- elseif message == controllerID.."S2" then
- turtle.select(2)
- elseif message == controllerID.."S3" then
- turtle.select(3)
- elseif message == controllerID.."S4" then
- turtle.select(4)
- elseif message == controllerID.."S5" then
- turtle.select(5)
- elseif message == controllerID.."S6" then
- turtle.select(6)
- elseif message == controllerID.."S7" then
- turtle.select(7)
- elseif message == controllerID.."S8" then
- turtle.select(8)
- elseif message == controllerID.."S9" then
- turtle.select(9)
- elseif message == controllerID.."S10" then
- turtle.select(10)
- elseif message == controllerID.."S11" then
- turtle.select(11)
- elseif message == controllerID.."S12" then
- turtle.select(12)
- elseif message == controllerID.."S13" then
- turtle.select(13)
- elseif message == controllerID.."S14" then
- turtle.select(14)
- elseif message == controllerID.."S15" then
- turtle.select(15)
- elseif message == controllerID.."S16" then
- turtle.select(16)
- end
- end
- end
- rednet.open("right")
- textutils.slowPrint("Turtle Remote Initiated.")
- RCS()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement