This is the only thing I can think of and I'm pretty darn sure it will only output to the players currently online. I was having difficulties with removing some overlays but I know images are just amazing these days and so I am trying to make some particular overlays handled through the image system.
Thanks in advance guys =)
var/whatever = image(icon='whatever.dmi',src)
players << whatever
Basically, you can operate on a list using <<. However, this is engine shorthand for looping through every object on the list and showing it to them all at once. It'll be slightly faster than doing it yourself.