Advertisement
feline-dis

client

Apr 12th, 2022 (edited)
744
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. function initRednetConnection() rednet.open("right"); end
  2.  
  3. function main()
  4.     initRednetConnection()
  5.  
  6.     while true do
  7.         local id, message = rednet.receive('MINE')
  8.  
  9.         print(message)
  10.  
  11.         os.loadAPI(message)
  12.  
  13.     end
  14. end
  15.  
  16. main()
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement