In response to dbz73
Not really.
In response to Nadrew
it is to me, ive never used for() before
In response to dbz73
for(var/obj/O in list)
usr << O

Translation:

for every /obj in this list
output to usr the O
In response to Spuzzum
Wow it makes sense now!
In response to dbz73
Ok i did what i thought would work, but it doesnt... what did i do wrong, this is my code

/proc/ChatShow()
if(usr.Chating==1)
for(var/obj/O in Q)
usr << browse(
{"
<table background="black" border width="100%"><TR>
<td bgcolor="Black" width="95%"><p align="center"><font color="white">dbz73's Browser Chat! V1.1.09</font></p></td></tr></table>

<table background="black" border WIDTH="100%">
<tr>
<td bgcolor="Black" width="80%">
[O]</td><td bgcolor="black"><font color="white">Who's Online!<br>[WO]</font></td></tr></table>
"}
)
sleep(5)
ChatShow()


Now it doesnt bring the user to a browser
Page: 1 2