ID:162269
 
I need a "who" panel instead of a stat panel. How would I go about doing that?

Basically I just want the names of clients who are playing the game to come up under the panel.
var/list/clients = list()

client/New()
if(..())
clients += src

client/Del()
clients -= src

client/Stat()
..()
statpanel("Who", clients)