diff --git a/docs/guide/configuration.md b/docs/guide/configuration.md index a21c40e3..aa04e050 100644 --- a/docs/guide/configuration.md +++ b/docs/guide/configuration.md @@ -1132,6 +1132,18 @@ Coordinate = { x = 145, y = 64, z = 2045 } - **Default:** `true` +#### `Display_Chat` + +- **Description:** + + Set this to `false` if you want MCC to keep receiving chat without printing it in the console. + + This only affects console output. It does not stop bots from receiving chat, and it does not turn off chat file logging. + +- **Type:** `boolean` + +- **Default:** `true` + #### `History_Input_Records` - **Description:** diff --git a/docs/guide/usage.md b/docs/guide/usage.md index f72062f9..b165ccd5 100644 --- a/docs/guide/usage.md +++ b/docs/guide/usage.md @@ -882,6 +882,24 @@ In scripts and remote control, no slash is needed to perform the command, eg. `q +
+clear-console + +- **Description:** + + Clear the visible console output. + + In TUI mode this clears the log panel. In the classic console it clears the terminal screen. + +- **Usage:** + + ``` + /clear-console + /cc + ``` + +
+
connect @@ -1584,6 +1602,39 @@ In scripts and remote control, no slash is needed to perform the command, eg. `q
+
+console-chat + +- **Description:** + + Temporarily show or hide chat in the console. + + This changes the current session only. If you want the same behavior every time MCC starts, use [`Console.General.Display_Chat`](configuration.md#display_chat). + +- **Usage:** + + ``` + /console-chat + /console-chat on + /console-chat off + ``` + +- **Examples:** + + Hide chat until you turn it back on: + + ``` + /console-chat off + ``` + + Show chat again: + + ``` + /console-chat on + ``` + +
+
debug