ID:557952
 
(See the best response by Neo Rapes Everything.)
I know how to use Stat() to display a list of players online. How do I add grid lines around each name and such? I thought you had to use skin grids but I was told by someone that you use HTML.

How would I use either 1 for what I want to do?
Best response
I always used grids for displaying Online players:
mob/proc/showPlayers()
var/list/OnlinePlayers = list(src.client)
for(client/C)
if(!(C in OnlinePlayers))OnlinePlayers.Add(C)
else continue
for(var/i=1; i <= OnlinePlayers.len; i++)
var/mob/M = OnlinePlayers[i]
src << output("\icon[M.icon] - [M.name]","grid:[i]"

winshow(src, "WhoWindow")