Guild Prefix
Guild prefixes are used for users to customize your bot.
// GET
await client.dispatcher.getGuildPrefix("Guild ID");
await guild.getCommandPrefix();
// SET
await client.dispatcher.setGuildPrefix("Guild ID", "prefix");
await guild.setCommandPrefix("prefix");
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9