> For the complete documentation index, see [llms.txt](https://neiizun.gitbook.io/lightdrop/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://neiizun.gitbook.io/lightdrop/usage/set-the-prefix.md).

# Set the prefix

You can also set a prefix that will be used for commands, by default, it's "!".

```java
JDA jda = JDABuilder.createDefault("your token").build();
        
new LightDrop().hook(jda)
    .setPrefix("&");  //Change the prefix to &
```
