Advertisement
RyuuzakiJulio

TurtleRemoteiPhone

Feb 16th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.44 KB | None | 0 0
  1. --iPhone REMOTE BY ANGELMALUS
  2. controllerID = "YOURCODEHERE"
  3.  
  4.  
  5. function RCmaster()
  6.     while true do
  7.         local sEvent, param = os.pullEvent("key")
  8.         if(sEvent == "key") then
  9.             if(param == 200) then
  10.                 rednet.broadcast(controllerID.."FD")
  11.                 print("Forward")
  12.             elseif (param == 208) then
  13.                 rednet.broadcast(controllerID.."BK")
  14.                 print("Back")
  15.             elseif (param == 203) then
  16.                 rednet.broadcast(controllerID.."TL")
  17.                 print("Turn Left")
  18.             elseif (param == 205) then
  19.                 rednet.broadcast(controllerID.."TR")
  20.                 print("Turn Right")
  21.  
  22.             elseif (param == 57) then
  23.                 rednet.broadcast(controllerID.."UP")
  24.                 print("Up")
  25.             elseif (param == 54) then
  26.                 rednet.broadcast(controllerID.."DN")
  27.                 print("Down")
  28.  
  29.             elseif (param == 16) then
  30.                 rednet.broadcast(controllerID.."PU")
  31.                 print("Place Up")
  32.             elseif (param == 30) then
  33.                 rednet.broadcast(controllerID.."PF")
  34.                 print("Place Front")
  35.             elseif (param == 44) then
  36.                 rednet.broadcast(controllerID.."PD")
  37.                 print("Place Down")
  38.  
  39.             elseif (param == 28) then
  40.                 rednet.broadcast(controllerID.."PL")
  41.                 print("Drop Bombs")
  42.             elseif (param == 2) then
  43.                 rednet.broadcast(controllerID.."S1")
  44.                 print("Inventory 1")
  45.             elseif (param == 3) then
  46.                 rednet.broadcast(controllerID.."S2")
  47.                 print("Inventory 2")
  48.             elseif (param == 4) then
  49.                 rednet.broadcast(controllerID.."S3")
  50.                 print("Inventory 3")
  51.             elseif (param == 5) then
  52.                 rednet.broadcast(controllerID.."S4")
  53.                 print("Inventory 4")
  54.             elseif (param == 6) then
  55.                 rednet.broadcast(controllerID.."S5")
  56.                 print("Inventory 5")
  57.             elseif (param == 7) then
  58.                 rednet.broadcast(controllerID.."S6")
  59.                 print("Inventory 6")
  60.             elseif (param == 8) then
  61.                 rednet.broadcast(controllerID.."S7")
  62.                 print("Inventory 7")
  63.             elseif (param == 9) then
  64.                 rednet.broadcast(controllerID.."S8")
  65.                 print("Inventory 8")
  66.             elseif (param == 10) then
  67.                 rednet.broadcast(controllerID.."S9")
  68.                 print("Inventory 9")
  69.             elseif (param == 11) then
  70.                 rednet.broadcast(controllerID.."S10")
  71.                 print("Inventory 10")
  72.             end
  73.         end
  74.     end
  75. end
  76. rednet.open("back")
  77. term.clear()
  78. textutils.slowPrint("TurtleControl Initiated.")
  79. print ("Move = Arrow Keys")
  80. print ("Up = Space / Down = RIGHT Shift")
  81. print ("Enter = Place Down and Send Redstone Signal")
  82. print ("Place UP, FRONT, DOWN = Q A Z")
  83. print ("Select Inventory Slots with numbers 1 2 3 4 5 6 7 8 9 0")
  84. print ("Only first 10 slots will work")
  85. RCmaster()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement