Chat Help
CHAT
SharpMUSH has a built-in chat system which allows you to speak to other players who are on the same channel without needing to be in the same room as them. It supports a large number of channels which can be customized and restricted in various ways.
Many of the chat system commands take a
You can list, join, and configure channels using the @channel
command.
To speak on channels, use the @chat
command.
There are some aliases in place for players more familiar with the MUX comsys - see muxcomsys for more details.
See Also
@chat
@chat <channel>=<message>
+<channel> <message>
The @chat
command is used to speak on channels. Everyone on the channel will see your message, and it will be added to the channel’s recall buffer, if it has one. If
+<channel> <message>
is short-hand for the @chat
command.
Example
> @chat pub=Hello<Public> Mike says, "Hello"> +pub :waves<Public> Mike waves
See Also
@CHATFORMAT
@chatformat <object>[=<message>]
The chatformat attribute is evaluated when an object receives a channel message. If the attribute exists, its evaluated result is shown to the object instead of the default message. If the attribute exists but returns nothing, the object will not see anything.
Registers
- %0: The ‘type’ of the message. It is a single character that will always be set:
"
,;
or:
for say, semipose and pose, respectively|
for an @cemit@
for a “system” message - such as “Walker has connected.”
- %1: The channel name. e.g: “Public”, “Admin”, “Softcode”
- %2: The message as typed (post-evaluation, if necessary) by the speaker. Be warned, though - if type is ’@’, then %2 will contain the entire message, and will include the name of the speaker that caused it
- %3: The speaker name, unless channel is set NO_NAME
- %4: The speaker’s channel title, unless none is set, or the channel is NO_TITLE
- %5: The default message, as shown when no chatformat is set
- %6: The ‘say’ string for the message. This will usually be “says”, unless altered by the SPEECHTEXT mogrifier
- %7: A space-separated list of extra options. Currently can contain: “silent” if a silent @cemit caused this message, otherwise “noisy”
If the channel is NO_NAME, and the speaker either has no title or the channel is also set NO_TITLE, then %3 will be “Someone”.
See Also
@CHATFORMAT2
Examples
Walker’s preferred @chatformat, which strips all ansi out, wraps every line to your width and prefixes them with
@chatformat me=<%1> [switch(%0,@,%2,edit(wrap(speak(&[if(%4,%4%b)]%3,%0[stripansi(%2)],%6\\,),sub(width(%!),add(4,strlen(%1)))),%r,%r<%1>%b))]
If you’re on a system with chat_strip_quote set to “no”, you might want to change the ‘%0%2’ arg to speak() to ‘[switch(%0,”,%2,%0%2)]’
Suppose you want it just like the old version, but anytime somebody says your name, you want it all in red:
@chatformat me=ansi(switch(%2,*[name(%!)]*,r,n),%5)
See @chatformat3 for more examples.
@CHATFORMAT3
A popular feature in clients now available in SharpMUSH directly: Let’s suppose you want “Public” channel chatter to all be green, “Softcode” to be blue and “Admin” to be cyan.
@chatformat me=ansi(switch(%1,Public,g,Softcode,b,Admin,c,n),%5)
Maybe you dislike players who re-@name themselves a lot:
&playernames me=#6061:Walker #7:Javelin #6388:Cheetah@chatformat me=<%1> [switch(%0,@,%2,speak(&[if(%4,%4%b)][firstof(after(grab(v(playernames),%#:*),:),%3)],%2,%6\\,))]
Or you’re writing a loggerbot, and you want to convert all channel input to HTML:
@chatformat me=CHAT:%1:[edit(switch(%0,@,%2,speak(if(%4,%4%b)%3,%0%2,%6\\,)),&,&,<,<,>,>,%r,<BR>,%b%b,%b )]
or
@chatformat me=CHAT:%1:[render(switch(%0,@,%2,speak(if(%4,%4%b)%3,%0%2,%6\\,)),html)]
CHAN_USEFIRSTMATCH
Flag: CHAN_USEFIRSTMATCH (any type)
Normally, when an object attempts to speak on the channel system with @chat, using an ambiguous channel name produces an error message. With this flag set, it will instead speak on the first channel whose name is a match. Other commands in the chat system are not affected by the flag.
See Also
@cemit
@cemit[/noisy|/silent][/noeval] <channel>=<message>
@nscemit[/noisy|/silent][/noeval] <channel>=<message>
cemit(<channel>, <message>[, <noisy>])
nscemit(<channel>, <message>[, <noisy>])
@cemit emits
You must be able to speak on the channel, or have the See_All and Pemit_All @powers, to @cemit on the channel.
@nscemit is exactly the same, but does not produce nospoof information when used by players with the Can_spoof @power.
cemit() and nscemit() work the same as @cemit/silent and @nscemit/silent, respectively. If
@cemit is intended for use in writing extended chat systems.
See Also
@channel
The @channel
command is used to add, join, list and modify channels in the chat system. It takes many different switches.
Help for @channel
is split into a number of topics. Please see @channel for more, where @channel
, use @channel.
- Joining - How to find, join, and leave channels
- Other - Setting channel titles, recalling previous chat messages
- Admin - Adding, deleting and modifying channels
See Also
@CHANNEL JOINING
@channel/list[/on|/off][/quiet] [<prefix>]
@channel/what [<prefix>]
@channel/who <channel>
@channel/on <channel>[=<player>]
@channel/off <channel>[=<player>]
@channel/list
shows a list of all the channels you can see, along with some basic information such as whether you are on the channel, how it’s locked, etc. [@channel list](#@channel list) explains the output in detail. If a
@channel/what
shows the name, description, owner, priv flags, mogrifier and buffer size for all channels, or all channels whose names begin with
@channel/who
lists all the players on the given channel.
@channel/on
and @channel/off
add or remove you from the given
@CHANNEL JOINING2
@channel/gag [<channel>][=<yes|no>]
@channel/mute [<channel>][=<yes|no>]
@channel/hide [<channel>][=<yes|no>]
@channel/combine [<channel>][=<yes|no>]
@channel/gag
allows you to stay on a channel but stop receiving messages on it. Channels are automatically ungagged when you disconnect. You cannot speak on channels you’re gagging unless they have the “open” priv.
Channels without the ‘quiet’ priv broadcast messages when players connect or disconnect from the MUSH. You can use @channel/mute
to suppress these messages if you don’t want to see them.
On channels with the ‘hide_ok’ priv, @channel/hide
lets you hide from the @channel/who list if you pass the channel’s @clock/hide.
Connect and disconnect messages across all channels you have marked with @channel/combine
will be combined into a single message with a |-separated list of all channel names. Only players can use this.
For all four of these commands, you can specify a single channel to affect, or omit @channel/<switch> [<channel>]=no
or @channel/un<switch> [<channel>]
.
See Also
@CHANNEL OTHER
@channel/recall[/last] <channel>[=<count>]
@channel/title <channel>=<title>
@channel/buffer <channel>=<size>
@channel/recall
displays the last
@channel/title
sets your title on
@channel/buffer
sets the recall buffer size for
See Also
@CHANNEL ADMIN
@channel/add <channel>[=<description>]
@channel/delete <channel>
@channel/mogrifier <channel>=<object>
@channel/chown <channel>=<player>
@channel/name <channel>=<newname>
@channel/desc <channel>=<description>
@channel/privs <channel>=<privlist>
@channel/wipe <channel>
@channel/clock[/on|/off|/clear|/add|/remove|/hide|/unhide|/list] <channel>[=<lock>]
@channel/add
creates a new channel. You must be able to pay the cost of the channel. The channel’s description is optional.
@channel/delete
removes a channel. Only channel admins can do this.
@channel/mogrifier
sets an object to be the channel’s mogrifier. Only channel admins can do this. See mogrifier for details.
@channel/chown
changes the owner of a channel. Only channel admins can do this.
@channel/name
renames a channel. Only channel admins can do this.
@channel/desc
changes a channel’s description. Only channel admins can do this.
@channel/privs
changes a channel’s privileges. Only channel admins can do this. See [@channel privs](#@channel privs) for details.
@channel/wipe
removes all players from a channel. Only channel admins can do this.
@channel/clock
manages channel locks. Only channel admins can do this. See [@channel clock](#@channel clock) for details.
See Also
@CHANNEL LIST
The output of @channel/list
looks like this:
Channel Status Lock DescriptionPublic On- *UNLOCKED* Public chat channelAdmin Off =WIZARD Administrative discussion
The Status column shows whether you are on the channel (On) or not (Off), followed by any special flags:
-
: Channel is gagged!
: Channel is hidden@
: Channel is muted+
: Channel is combined
The Lock column shows:
*UNLOCKED*
if anyone can use the channel=<lock>
if there’s a lock on speakingJ=<lock>
if there’s a lock on joiningH=<lock>
if there’s a lock on hiding(DISABLED)
if the channel is disabled
See Also
@CHANNEL PRIVS
Channel privileges control what players can do with a channel. They are set with @channel/privs <channel>=<privlist>
, where no_
to remove the privilege.
Available privileges:
- join: Players must pass the join lock to join the channel
- speak: Players must pass the speak lock to speak on the channel
- hide: Players must pass the hide lock to hide on the channel
- open: Players can speak on the channel without joining it
- quiet: Don’t show connect/disconnect messages
- hide_ok: Players can hide on the channel
- loud: Show channel prefix even on @cemit/silent
- disabled: Channel cannot be used
Examples
@channel/privs Public=no_join no_speak@channel/privs Admin=join speak no_hide_ok
See Also
- @channel/who
- [@channel clock](#@channel clock)
- @clock
@CHANNEL CLOCK
@channel/clock[/switch] <channel>[=<lock>]
Channel locks control who can join, speak on, or hide on a channel. The basic switches are:
- /on
: Set the speak lock - /off: Remove the speak lock
- /clear: Remove all locks
- /add
: Set the join lock - /remove: Remove the join lock
- /hide
: Set the hide lock - /unhide: Remove the hide lock
- /list: Show all locks
Only channel admins can set locks. Players must pass:
- The join lock to join the channel (if the channel has the ‘join’ priv)
- The speak lock to speak on the channel (if the channel has the ‘speak’ priv)
- The hide lock to hide on the channel (if the channel has the ‘hide_ok’ priv)
Examples
@channel/clock/on Public=WIZARD@channel/clock/add Admin=WIZARD@channel/clock/hide Secret=WIZARD
See Also
CHANNEL FUNCTIONS
channels([<player>][,<type>])
cowner(<channel>)
cflags(<channel>[,<player>])
cstatus([<player>][,<channel>])
cemit(<channel>,<message>[,<noisy>])
nscemit(<channel>,<message>[,<noisy>])
These functions provide information about channels:
-
channels(): Lists channels visible to
(or me). If is given, only shows channels of that type: - all: All visible channels (default)
- on: Channels
is on - off: Channels
is not on - quiet: Just channel names, no extra info
-
cowner(): Returns the dbref of
‘s owner -
cflags(): Returns channel flags for
, or status flags for on : - Channel flags: DISABLED LOUD OPEN QUIET
- Status flags: COMBINE GAG HIDE MUTE
-
cstatus(): Returns information about
‘s channel status: - With no args: List of channels I’m on
- With
: List of channels they’re on - With
: My status on that channel - With both: Their status on that channel Status is one of: OFF ON GAG HIDE MUTE COMBINE
-
cemit() and nscemit(): Emit
on . See @cemit.
Examples
> think channels(#123,on)Public Admin> think cowner(Public)##1> think cflags(Public)OPEN> think cflags(Public,#123)COMBINE> think cstatus(#123,Public)ON COMBINE
See Also
MUXCOMSYS
SharpMUSH provides some aliases for players more familiar with the MUX comsys:
addcom <alias>=<channel>
>@channel/on <channel>
delcom <alias>
>@channel/off <channel>
comlist
>@channel/list
comtitle <channel>=<title>
>@channel/title <channel>=<title>
<alias> <message>
>@chat <channel>=<message>
<alias>:
>@chat <channel>=:
<alias>;
>@chat <channel>=;
Note that SharpMUSH does not actually support channel aliases - the above commands work by looking up the real channel name. You must use enough of the channel name to uniquely identify it.