ID:263708
 
Code:
mob/verb/Who()

var/tmp/C = 0
for(var/mob/M in world)
if(M.client)
C += 1
usr << "<font size=1><b><font color=silver>[M.name]: <font color=green>(Key: [M.key]) Rank:[M.rank] Clan: [M.Clan] Village: [M.Village]"
if(M.GM)
usr << "<font size=1><b><font color=yellow>[M.name] (Key: [M.key]) (GM)"
if(M.Iconer)
usr << "<font size=1><b><font color=yellow>[M.name] (Key: [M.key]) (Game Iconer)"
if(M.Tester)
usr << "<font size=1><b><font color=yellow>[M.name] (Key: [M.key]) (Game Tester)"
if(M.Host)
usr << "<font size=1><b><font color=yellow>[M.name] (Key: [M.key]) (Host)"
usr << "<font size=1>[C] Players Online!"


Problem description:How do i cause this to appear to the usr in a Popup window?please help cause i have no idea thanks ahead

Look up browse(). All you have to do is define "window=___" (___ can be whatever you want) in the 'Options' to make it popup.
In response to GhostAnime (#1)
how?
i told you i have no idea about this thing
In response to Gi Money (#2)
Ref << browse(html,"window=[insert popup ID here]")

It helps looking up in the DM Reference, y'know (F1 in DM)