> For the complete documentation index, see [llms.txt](https://changelog.matrixemulator.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://changelog.matrixemulator.com/welcome/server/muserver/data/custom/customcommanddescription.md).

# CustomCommandDescription

<mark style="color:green;">Registers the help text shown for a custom command (in 3 languages), used when the player asks for information about that command.</mark>

```
//#ID     #Command	#StringENG		#StringPOR		#StringSPN
  0	"/teste"	"Test command"		"Comando teste"		"Comando de prueba"
end
```

| **Column** | **Accepted values**                           | **What it is**                                              |
| ---------- | --------------------------------------------- | ----------------------------------------------------------- |
| ID         | Number                                        | Identifies the line.                                        |
| Command    | Text in quotation marks                       | The command (with the `/`) to which this help text belongs. |
| StringENG  | Text in quotation marks, up to 127 characters | Description in English.                                     |
| StringPOR  | Text in quotation marks, up to 127 characters | Description in Portuguese.                                  |
| StringSPN  | Text in quotation marks, up to 127 characters | Description in Spanish.                                     |

### <mark style="color:yellow;">Notes</mark>

* The `Command` registered here cannot be the same as any command already existing in `Command.txt` or `CustomMove.txt` — these are separate command lists, and a name conflict can cause unexpected behavior.
