summaryrefslogtreecommitdiff
path: root/website/src/en/docs/features/direct-message.md
diff options
context:
space:
mode:
authorSho Sakuma <me@m1sk9.dev>2026-04-05 01:45:01 +0900
committerGitHub <noreply@github.com>2026-04-05 01:45:01 +0900
commit579ca7f5bf01187e1f758cadfb4eda652fd5a4c3 (patch)
treec008f240e02aa828ad47728e671232e687f4b911 /website/src/en/docs/features/direct-message.md
parentbd92ba60d39b4956a580cc56b83ecf55dd348aea (diff)
parent9146547efae71efa1d67a48e20ae4271785847e9 (diff)
downloadLunaticChat-1.0.0.tar.gz
LunaticChat-1.0.0.tar.bz2
LunaticChat-1.0.0.zip
Merge pull request #167 from m1sk9/docs/Update-v1-docsv1.0.0
docs: Update v1 Document
Diffstat (limited to 'website/src/en/docs/features/direct-message.md')
-rw-r--r--website/src/en/docs/features/direct-message.md52
1 files changed, 52 insertions, 0 deletions
diff --git a/website/src/en/docs/features/direct-message.md b/website/src/en/docs/features/direct-message.md
new file mode 100644
index 0000000..7a88ecd
--- /dev/null
+++ b/website/src/en/docs/features/direct-message.md
@@ -0,0 +1,52 @@
+---
+layout: doc
+---
+
+# Direct Message
+
+Send and receive private 1-on-1 messages between players.
+
+## Basic Usage
+
+### Sending a Message
+
+```
+/tell <player> <message>
+```
+
+Aliases: `/t`, `/msg`, `/m`, `/w`, `/whisper`
+
+Sends a direct message to the specified player. Clicking on a received message will auto-fill the reply command to the sender.
+
+### Quick Reply
+
+```
+/reply <message>
+```
+
+Alias: `/r`
+
+Replies to the last player who sent you a message. If there is no such player, the message is sent to the last player you messaged.
+
+To use quick reply, `features.quickReplies.enabled` must be `true` (default) in `config.yml`.
+
+## Notification Settings
+
+Players can individually control the sound notification when receiving direct messages.
+
+```
+/lc settings notice on # Enable notifications
+/lc settings notice off # Disable notifications
+```
+
+## Integration with Japanese Conversion
+
+When [Japanese Conversion](/en/docs/features/japanese-conversion) is enabled, direct message content is also automatically converted to Japanese. Conversion follows each player's `japanese` setting.
+
+## Spy Feature
+
+Players with the `lunaticchat.spy` permission (default: op) can view all direct messages on the server. Spy players see the original message before conversion.
+
+## Message Format
+
+The display format for direct messages can be customized via `messageFormat.directMessageFormat` in `config.yml`. See [Message Format](/en/docs/reference/message-format) for details.