mud/lib/doc/sefun/say
2020-09-06 05:43:07 -07:00

36 lines
1010 B
Plaintext

SAY(1) SAY(1)
NAME
say() - sends a message to objects in the same room as
command giver
SYNOPSIS
varargs void say(mixed str, object ob)
DESCRIPTION
This function sends a message, the first argument, to all
users in the same room as the command giver other than the
command giver (this_player()). The message is sent as
message class "other_action". If a second argument is
given, that object is excluded from hearing the message.
NOTES
This is an override of the MudOS efun by the same name.
In order to be AMCP compliant, all messages need to go
through receive_message(). This function allows creators
to continuing using the oldstyle messaging while remaining
compliant.
LOCATION
/secure/sefun/communications.c
SEE ALSO
message(), write()
Author
Descartes of Borg
1