Advertisement
toast_account_i_made

1.0

Feb 11th, 2023 (edited)
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. local radar = peripheral.wrap("left")
  2. local monitor = peripheral.wrap("right")
  3.  
  4. thisPos = {-151, -60, - 67}
  5. range = 256
  6.  
  7. local ships = radar.scan(range)
  8.  
  9. monitor.clear()
  10. monitor.setCursorPos(1, 1)
  11.  
  12. for v in ships do
  13. monitor.write(ships[v].mass)
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement