/client/show_map = 0
var/server = null
/client/verb/send_message()
usr.Export()
mob/proc/Export(Addr,T as text)
Addr = server
if(!T)T = input(src,"What message do you want to send?")
Addr<<"<B><font color = blue>\[Announcement\]</B> [T]</font>"
world.Export("[Addr]?[T]")
How come this is sending to world.log and not TO the server?