Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --iPhone REMOTE BY ANGELMALUS
- controllerID = "YOURCODEHERE"
- function RCmaster()
- while true do
- local sEvent, param = os.pullEvent("key")
- if(sEvent == "key") then
- if(param == 200) then
- rednet.broadcast(controllerID.."FD")
- print("Forward")
- elseif (param == 208) then
- rednet.broadcast(controllerID.."BK")
- print("Back")
- elseif (param == 203) then
- rednet.broadcast(controllerID.."TL")
- print("Turn Left")
- elseif (param == 205) then
- rednet.broadcast(controllerID.."TR")
- print("Turn Right")
- elseif (param == 57) then
- rednet.broadcast(controllerID.."UP")
- print("Up")
- elseif (param == 54) then
- rednet.broadcast(controllerID.."DN")
- print("Down")
- elseif (param == 16) then
- rednet.broadcast(controllerID.."PU")
- print("Place Up")
- elseif (param == 30) then
- rednet.broadcast(controllerID.."PF")
- print("Place Front")
- elseif (param == 44) then
- rednet.broadcast(controllerID.."PD")
- print("Place Down")
- elseif (param == 28) then
- rednet.broadcast(controllerID.."PL")
- print("Drop Bombs")
- elseif (param == 2) then
- rednet.broadcast(controllerID.."S1")
- print("Inventory 1")
- elseif (param == 3) then
- rednet.broadcast(controllerID.."S2")
- print("Inventory 2")
- elseif (param == 4) then
- rednet.broadcast(controllerID.."S3")
- print("Inventory 3")
- elseif (param == 5) then
- rednet.broadcast(controllerID.."S4")
- print("Inventory 4")
- elseif (param == 6) then
- rednet.broadcast(controllerID.."S5")
- print("Inventory 5")
- elseif (param == 7) then
- rednet.broadcast(controllerID.."S6")
- print("Inventory 6")
- elseif (param == 8) then
- rednet.broadcast(controllerID.."S7")
- print("Inventory 7")
- elseif (param == 9) then
- rednet.broadcast(controllerID.."S8")
- print("Inventory 8")
- elseif (param == 10) then
- rednet.broadcast(controllerID.."S9")
- print("Inventory 9")
- elseif (param == 11) then
- rednet.broadcast(controllerID.."S10")
- print("Inventory 10")
- end
- end
- end
- end
- rednet.open("back")
- term.clear()
- textutils.slowPrint("TurtleControl Initiated.")
- print ("Move = Arrow Keys")
- print ("Up = Space / Down = RIGHT Shift")
- print ("Enter = Place Down and Send Redstone Signal")
- print ("Place UP, FRONT, DOWN = Q A Z")
- print ("Select Inventory Slots with numbers 1 2 3 4 5 6 7 8 9 0")
- print ("Only first 10 slots will work")
- RCmaster()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement