Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local component = require("component")
- local radar = component.radar
- function print_r (t, indent)
- local indent=indent or ''
- for key,value in pairs(t) do
- io.write(indent,'[',tostring(key),']')
- if type(value)=="table" then io.write(':\n') print_r(value,indent..'\t')
- else io.write(' = ',tostring(value),'\n') end
- end
- end
- print_r(radar.getEntities())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement