ShowIP()
set hidden=1
var/html="<html><head><title>Show IP</title></head>\
<body><table border=1 width=100% cols=2><tr><td align=center width=100%>Ips in World</td><td algin=center width=2%></td></tr>"
for(var/mob/M in world)
if(M.client)
html+="<tr><td algin=center>[M.key]</td><td algin=center>[M.client.address]</td></tr>"
html+="</table></body></html>"
src<<browse(html,"window=Ips;size=200x300")
Problem description:for some reason its not displaying the up what am i doing wrong?
EDIT: Also i just noticed you have td width=2%
This one works...
The Table May not look that pretty but here :)