summaryrefslogtreecommitdiff
path: root/docs/src/en/player-guide/commands
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src/en/player-guide/commands')
-rw-r--r--docs/src/en/player-guide/commands/jp.md17
-rw-r--r--docs/src/en/player-guide/commands/lc/channel.md77
-rw-r--r--docs/src/en/player-guide/commands/lc/chatmode.md17
-rw-r--r--docs/src/en/player-guide/commands/lc/settings.md19
-rw-r--r--docs/src/en/player-guide/commands/lc/status.md9
-rw-r--r--docs/src/en/player-guide/commands/lcv/status.md9
-rw-r--r--docs/src/en/player-guide/commands/notice.md17
-rw-r--r--docs/src/en/player-guide/commands/reply.md17
-rw-r--r--docs/src/en/player-guide/commands/tell.md11
9 files changed, 193 insertions, 0 deletions
diff --git a/docs/src/en/player-guide/commands/jp.md b/docs/src/en/player-guide/commands/jp.md
new file mode 100644
index 0000000..839e6e1
--- /dev/null
+++ b/docs/src/en/player-guide/commands/jp.md
@@ -0,0 +1,17 @@
+# /jp <Badge type="tip" text="v0.1.0" /> <Badge type="tip" text="Paper" />
+
+### `/jp [on | off]` <Badge type="danger" text="Deprecated: Will be removed in v1.0.0" />
+
+::: danger Deprecated
+
+This command was deprecated in v0.5.0. Please use the [`/lc settings`](lc/settings.md) command instead.
+
+:::
+
+| Permission |
+|--------------------------|
+| `lunaticchat.command.jp` |
+
+Toggles the romanization conversion setting.
+
+This setting is saved by UUID, so the setting will not be lost even if you change your MCID.
diff --git a/docs/src/en/player-guide/commands/lc/channel.md b/docs/src/en/player-guide/commands/lc/channel.md
new file mode 100644
index 0000000..31941ca
--- /dev/null
+++ b/docs/src/en/player-guide/commands/lc/channel.md
@@ -0,0 +1,77 @@
+# /lc channel <Badge type="tip" text="v0.6.0" /> <Badge type="tip" text="Paper" />
+
+### `/lc channel create <channel-id> <channel-name> [channel-description] [private-setting]`
+
+| Permission |
+|------------------------------|
+| `lunaticchat.command.lc.channel.create` |
+
+Creates a channel.
+
+- `<channel-id>` specifies the channel ID.
+- `<channel-name>` specifies the channel name.
+- `[channel-description]` specifies the channel description (optional).
+ - The description will be displayed when viewing the channel list with the `/lc channel list` command.
+- `[private-setting]` specifies the channel's privacy setting.
+ - If `true` is specified, it will be created as a private channel, and only invited players can join.
+ - If `false` is specified or omitted, it will be created as a public channel, and anyone can join.
+
+::: warning Notes on Entering Channel Names and Descriptions
+
+When entering channel names and descriptions, arguments must be enclosed in `"` (double quotes).
+
+Example:
+
+```
+/lc channel create pvp_channel "PvP Enthusiasts Club" "A gathering of people who love PvP" false
+```
+
+:::
+
+### `/lc channel list`
+
+| Permission |
+|---------------------------------------|
+| `lunaticchat.command.lc.channel.list` |
+
+Displays the list of channels.
+
+### `/lc channel join <channel-id>`
+
+| Permission |
+|---------------------------------------|
+| `lunaticchat.command.lc.channel.join` |
+
+Joins the specified channel.
+
+### `/lc channel leave`
+
+| Permission |
+|----------------------------------------|
+| `lunaticchat.command.lc.channel.leave` |
+
+Leaves the currently active channel.
+
+### `/lc channel switch <channel-id>`
+
+| Permission |
+|-----------------------------------------|
+| `lunaticchat.command.lc.channel.switch` |
+
+Switches to the specified channel. Use this when you want to switch to another channel while in channel chat mode.
+
+### `/lc channel status`
+
+| Permission |
+|-----------------------------------------|
+| `lunaticchat.command.lc.channel.status` |
+
+Displays information about the currently joined and active channels.
+
+### `/lc channel delete <channel-id>`
+
+| Permission |
+|-----------------------------------------|
+| `lunaticchat.command.lc.channel.delete` |
+
+Deletes the specified channel. You must be the channel creator (owner).
diff --git a/docs/src/en/player-guide/commands/lc/chatmode.md b/docs/src/en/player-guide/commands/lc/chatmode.md
new file mode 100644
index 0000000..e3f335f
--- /dev/null
+++ b/docs/src/en/player-guide/commands/lc/chatmode.md
@@ -0,0 +1,17 @@
+# /lc chatmode <Badge type="tip" text="v0.6.0" /> <Badge type="tip" text="Paper" />
+
+### `/lc chatmode`
+
+| Permission |
+|-----------------------------------|
+| `lunaticchat.command.lc.chatmode` |
+
+Displays the current chat mode.
+
+### `/lc chatmode toggle`
+
+| Permission |
+|------------------------------------|
+| `lunaticchat.command.lc.chatmode.toggle` |
+
+Toggles the chat mode.
diff --git a/docs/src/en/player-guide/commands/lc/settings.md b/docs/src/en/player-guide/commands/lc/settings.md
new file mode 100644
index 0000000..8b88066
--- /dev/null
+++ b/docs/src/en/player-guide/commands/lc/settings.md
@@ -0,0 +1,19 @@
+# /lc settings <Badge type="tip" text="v0.5.0" /> <Badge type="tip" text="Paper" />
+
+### `/lc settings <key> [value]`
+
+| Permission |
+|-----------------------------------|
+| `lunaticchat.command.lc.settings` |
+
+Manages player settings for LunaticChat. If no value is specified, the current setting value will be displayed.
+
+This setting is saved by UUID, so the setting will not be lost even if you change your MCID.
+
+#### Available Keys
+
+| Key | Description | Default Value |
+|----------|----------------------------------------------------------|--------|
+| `japanese` | Toggles romanization conversion on or off. | `true` |
+| `notice` | Toggles whether to receive notifications when receiving direct messages via `/tell` or `/reply`. | `true` |
+| `chNotice` | Toggles whether to receive notifications when receiving channel chat messages. | `true` |
diff --git a/docs/src/en/player-guide/commands/lc/status.md b/docs/src/en/player-guide/commands/lc/status.md
new file mode 100644
index 0000000..1fa6a39
--- /dev/null
+++ b/docs/src/en/player-guide/commands/lc/status.md
@@ -0,0 +1,9 @@
+# /lc status <Badge type="tip" text="v0.5.0" /> <Badge type="tip" text="Paper" />
+
+### `/lc status`
+
+| Permission |
+|---------------------------------|
+| `lunaticchat.command.lc.status` |
+
+Displays the status of LunaticChat.
diff --git a/docs/src/en/player-guide/commands/lcv/status.md b/docs/src/en/player-guide/commands/lcv/status.md
new file mode 100644
index 0000000..2b85283
--- /dev/null
+++ b/docs/src/en/player-guide/commands/lcv/status.md
@@ -0,0 +1,9 @@
+# /lcv status <Badge type="tip" text="v0.8.0" /> <Badge type="tip" text="Velocity" />
+
+### `/lcv status`
+
+| Permission |
+|------------------------------|
+| `lunaticchat.command.lcv.status` |
+
+Displays the current LunaticChat Velocity integration status.
diff --git a/docs/src/en/player-guide/commands/notice.md b/docs/src/en/player-guide/commands/notice.md
new file mode 100644
index 0000000..4e7f41f
--- /dev/null
+++ b/docs/src/en/player-guide/commands/notice.md
@@ -0,0 +1,17 @@
+# /notice <Badge type="tip" text="v0.4.0" /> <Badge type="tip" text="Paper" />
+
+### `/notice [on | off]` <Badge type="danger" text="Deprecated: Will be removed in v1.0.0" />
+
+::: danger Deprecated
+
+This command was deprecated in v0.5.0. Please use the [`/lc settings`](lc/settings.md) command instead.
+
+:::
+
+| Permission | Aliases |
+|-----------------------------|-------------|
+| `lunaticchat.command.notice` | `/dmnotice` |
+
+Toggles notifications for direct messages sent via [`/tell`](tell.md) or [`/reply`](reply.md) commands on or off.
+
+This setting is saved by UUID, so the setting will not be lost even if you change your MCID.
diff --git a/docs/src/en/player-guide/commands/reply.md b/docs/src/en/player-guide/commands/reply.md
new file mode 100644
index 0000000..1b26be2
--- /dev/null
+++ b/docs/src/en/player-guide/commands/reply.md
@@ -0,0 +1,17 @@
+# /reply <Badge type="tip" text="v0.1.0" /> <Badge type="tip" text="Paper/Velocity" />
+
+### `/reply <message>`
+
+| Permission | Aliases |
+|-----------------------------|-------|
+| `lunaticchat.command.reply` | `/r` |
+
+Replies to the player with whom you most recently communicated using [`/tell`](tell.md).
+
+::: info If This Command Cannot Be Used
+
+This command may be disabled (this feature can be toggled ON/OFF in the configuration).
+
+Please contact your server administrator.
+
+:::
diff --git a/docs/src/en/player-guide/commands/tell.md b/docs/src/en/player-guide/commands/tell.md
new file mode 100644
index 0000000..fb2b8e1
--- /dev/null
+++ b/docs/src/en/player-guide/commands/tell.md
@@ -0,0 +1,11 @@
+# /tell <Badge type="tip" text="v0.1.0" /> <Badge type="tip" text="Paper/Velocity" />
+
+### `/tell <player ID> <message>`
+
+| Permission | Aliases |
+| ---- | ---- |
+| `lunaticchat.command.tell` | `/t`, `/msg`, `/m`, `/w`, `/whisper` |
+
+Sends a message to the specified player.
+
+Clicking on a sent message will automatically input this command into the chat bar.