msg_write

sefun
SYNOPSIS
        #include <msgclass.h>

	void msg_write( int class, mixed msg )

DESCRIPTION
        Send the message 'msg' to the current user with class 'class'.
        What excatly will be printed to the user depends on the message
        class given.

        This kernel-function is the equivalent for the efun write() using
        the message-system.

EXAMPLES
	msg_write( CMSG_GENERIC, "Hello world!\n");
	
	Just print out a string.
	
SEE ALSO
        messages(C)
        msg_write(K), msg_say(K), msg_object(K), msg_room(K),
        msg_shout(K), msg_pshout(K), msg_wshout(K)