Advertisement
RyuuzakiJulio

TurtleRemote

Feb 16th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.82 KB | None | 0 0
  1. -- TurtleRemote by AngelMalus
  2.  
  3. controllerID = "YOURCODEHERE"
  4.  
  5. signMsg = "ENABLE THE END PLEASE" -- Not working now
  6.  
  7. function RCS()
  8.     while true do
  9.         local scrap, message = rednet.receive()
  10.         if message == controllerID.."FD" then
  11.             print("Forward")
  12.             if turtle.detect() == true then
  13.                 turtle.dig()
  14.             end
  15.             turtle.forward()
  16.         elseif message == controllerID.."BK" then
  17.             print("Backward")
  18.             turtle.back()
  19.         elseif message == controllerID.."TL" then
  20.             print("Turn Left")
  21.             turtle.turnLeft()
  22.         elseif message == controllerID.."TR" then
  23.             print("Turn Right")
  24.             turtle.turnRight()
  25.         elseif message == controllerID.."UP" then
  26.             print("Go Up")
  27.             if turtle.detectUp() == true then
  28.                 turtle.digUp()
  29.             end
  30.             turtle.up()
  31.         elseif message == controllerID.."DN" then
  32.             print("Go Down")
  33.             if turtle.detectDown() == true then
  34.                 turtle.digDown()
  35.             end
  36.             turtle.down()
  37.         elseif message == controllerID.."PL" then
  38.             if turtle.detect() == true then
  39.             print("Block Present")
  40.             else
  41.              print("Dropping Bombs")
  42.              turtle.placeDown()
  43.              rs.setOutput("bottom", true)
  44.             sleep(0.4)
  45.              rs.setOutput("bottom", false)
  46.             end
  47.  
  48.         elseif message == controllerID.."PU" then
  49.             if turtle.detect() == true then
  50.             print("Block Present")
  51.             else
  52.             print("Place Block Up")
  53.             turtle.placeUp()
  54.             end
  55.         elseif message == controllerID.."PF" then
  56.             if turtle.detect() == true then
  57.             print("Block Present")
  58.             else
  59.             print("Place Block Front")
  60.             turtle.place()
  61.             end
  62.         elseif message == controllerID.."PD" then
  63.             if turtle.detect() == true then
  64.             print("Block Present")
  65.             else
  66.             print("Place Block Down")
  67.             turtle.placeDown()
  68.             end
  69.  
  70.         elseif message == controllerID.."S1" then
  71.             turtle.select(1)
  72.         elseif message == controllerID.."S2" then
  73.             turtle.select(2)
  74.         elseif message == controllerID.."S3" then
  75.             turtle.select(3)
  76.         elseif message == controllerID.."S4" then
  77.             turtle.select(4)
  78.         elseif message == controllerID.."S5" then
  79.             turtle.select(5)
  80.         elseif message == controllerID.."S6" then
  81.             turtle.select(6)
  82.         elseif message == controllerID.."S7" then
  83.             turtle.select(7)
  84.         elseif message == controllerID.."S8" then
  85.             turtle.select(8)
  86.         elseif message == controllerID.."S9" then
  87.             turtle.select(9)
  88.         elseif message == controllerID.."S10" then
  89.             turtle.select(10)
  90.         elseif message == controllerID.."S11" then
  91.             turtle.select(11)
  92.         elseif message == controllerID.."S12" then
  93.             turtle.select(12)
  94.         elseif message == controllerID.."S13" then
  95.             turtle.select(13)
  96.         elseif message == controllerID.."S14" then
  97.             turtle.select(14)
  98.         elseif message == controllerID.."S15" then
  99.             turtle.select(15)
  100.         elseif message == controllerID.."S16" then
  101.             turtle.select(16)
  102.         end
  103.  
  104.     end
  105. end
  106.  
  107. rednet.open("right")
  108. textutils.slowPrint("Turtle Remote Initiated.")
  109. RCS()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement