View difference between Paste ID: rhd5UFKw and iTyQgP9y
SHOW: | | - or go back to the newest paste.
1
function main()
2
    if #arg ~= 1 then
3
        error("Expected 1 argument(s): playerToExpose")
4
    end
5
    
6
    rednet.open("back")
7
    rednet.broadcast(arg[1], "expose")
8
end
9
10
main()