Advertisement
Susceptance

init_node

May 7th, 2022 (edited)
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. protectedChunks = {}
  2.  
  3. function ServeProtectedChunks()
  4. rednet.open("top")
  5. while true do
  6. sender,message,distance = rednet.receive("V_RPC")
  7. rednet.send(sender, textutils.serialise(protectedChunks), "V_PC")
  8. print("Served PChunk request")
  9. end
  10. end
  11.  
  12. ServeProtectedChunks()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement