mob/var/list/IgnoreList = new()
client
verb
Ignore()
var/html="<html><head><title>Ignore</title></head>\
<body><table border=1 width=98% cols=2><tr><td align=center width=100%>Ignore who?</td></tr>"
for(var/mob/M in world)
html+="<tr><td align=center><a href='?src=\ref[M];action=ignore'>[M.name]\
</a></td>"
html+="</table></body></html>"
src<<browse(html,"window=join;size=200x300")
Topic(href,list[])
switch(list["action"])
if("ignore")
usr.IgnoreList += M
else ..()
Ok heres what i am trying to do i am wanting this topic/href to add the seleted mob in the ignore verb to the ignore list how would i go about doing so?
That way it actually gets called... I think.
-Doh