Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion content/docs/eternalcore/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,25 @@ import { AlertBox } from "../../components/ui/alert-box";
## Disabling commands

If a command from EternalCore conflicts with a command from another plugin, you can disable it in `commands.yml`.
Example usage to disable `/rtp` command in EternalCore.

1. Open file: `/plugins/EternalCore/commands.yml`

2. Add in commands structure:

```yaml
rtp:
name: []
enabled: false
aliases: []
permissions: []
subCommands: []
subCommands: {}
```
<AlertBox type="warning" title="Note">
Remember to use the full original command name, **not** an alias.
</AlertBox>

3. Restart the server for the changes to take effect.

## Formatting text in chat

Expand Down
Loading