ID:178985
 
I have this problem that's been plague me for quite a while now.

When you use an alert, how can you get another player to see it (other than the user). I need this to work from world, where New() is the usr. I tried ... I think I just figured out how...

would this work-

for =(var/mob/M)
usr = M
alert("every player should see this popup", "huh?")

Would every player see that, even if it was called from world as the src?

No, there is another argument..
for(var/mob/M as mob in world)
alert(M,"Everyone is seeing this.","My Box")


hope i helped

-Rcet