wv1106

turtle remote control computercraft

Jan 8th, 2021 (edited)
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.22 KB | None | 0 0
  1. rednet.open("back")
  2. print("remote controller")
  3. print("by wv1106 on reddit and pastebin")
  4. print("change keybinds in turtle script")
  5. while 1 do
  6.     local event, button = os.pullEvent("char")
  7.     rednet.send(16,button)
  8. end
Add Comment
Please, Sign In to add comment