ID:268836
 
I can't figure out a way to show someone else!
I've tried this...
mob/verb/alertmob(mob/M in world)
M << alert("asdf")


It alerts me. :(
Please help(I know this is easy). =/
Alert() default is usr. With that you can figure it out. If not:

mob/verb/alertmob(mob/M in world)   
alert(M,"asf")


That should work.
In response to N1ghtW1ng
Thanks Night, I knew it was easy. >_>