Advertisement
Guest User

receiver

a guest
Feb 20th, 2024
121
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.85 KB | None | 0 1
  1. -- Function to find the side where the modem is located
  2. os.pullEvent = os.pullEventRaw
  3. local function findModemSide()
  4.     for _, side in ipairs(rs.getSides()) do
  5.         if peripheral.getType(side) == "modem" then
  6.             return side
  7.         end
  8.     end
  9.     return nil  -- No modem found
  10. end
  11.  
  12. -- Open Rednet on the side where the modem is located
  13. local modemSide = findModemSide()
  14. if modemSide then
  15.     rednet.open(modemSide)
  16.     print("Rednet opened on side:", modemSide)
  17. else
  18.     print("No modem found.")
  19. end
  20.  
  21. -- Main loop to listen for incoming commands
  22. while true do
  23.     local senderID, message = rednet.receive()
  24.  
  25.     -- Check if the message is intended for this computer
  26.     if type(message) == "string" then
  27.         print("Received command:", message)
  28.         -- Execute the received command
  29.         shell.run(message)
  30.     end
  31. end
  32.  
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement