2020-05-18 01:13:24 +02:00
|
|
|
//Guild Settings
|
|
|
|
|
2020-06-10 16:46:42 +02:00
|
|
|
//GUILD INDEXING
|
|
|
|
|
|
|
|
[S_INDEX_DESCRIPTION]
|
|
|
|
Configure guild indexing and description for your guild.
|
|
|
|
|
|
|
|
[S_INDEX_DESCRIPTION_SET]
|
|
|
|
Successfully set the guild description to
|
|
|
|
```
|
|
|
|
{changes}
|
|
|
|
```
|
|
|
|
|
|
|
|
[S_INDEX_TOGGLE]
|
|
|
|
Successfully toggled guild indexing `{toggle}`
|
2020-05-18 01:13:24 +02:00
|
|
|
|
|
|
|
//guildPrefix Setting
|
|
|
|
|
2020-05-06 01:40:46 +02:00
|
|
|
[S_GUILDPREFIX_DESCRIPTION]
|
|
|
|
Customizes your prefix in the guild.
|
|
|
|
|
|
|
|
[S_GUILDPREFIX_SUCCESS]
|
|
|
|
Successfully set the guild prefix to `{prefix}`.
|
|
|
|
|
|
|
|
[S_GUILDPREFIX_LENGTH]
|
|
|
|
The guild prefix cannot exceed {max} characters. `[{length}/{max}]`.
|
|
|
|
|
2020-05-21 12:47:58 +02:00
|
|
|
[S_GUILDPREFIX_SPACES]
|
|
|
|
The guild prefix cannot include spaces.
|
|
|
|
|
2020-05-06 01:40:46 +02:00
|
|
|
[S_GUILDPREFIX_RESET]
|
2020-05-18 01:13:24 +02:00
|
|
|
Successfully reset the guild prefix to `{prefix}`.
|
|
|
|
|
2020-06-10 16:46:42 +02:00
|
|
|
//autorole setting
|
|
|
|
|
|
|
|
[S_AUTOROLE_DESCRIPTION]
|
|
|
|
Configure automatic role assignment in your guild.
|
|
|
|
|
|
|
|
[S_AUTOROLE_ADD]
|
|
|
|
Successfully added the following roles to autorole:
|
|
|
|
`{changes}`
|
|
|
|
|
|
|
|
[S_AUTOROLE_REMOVE]
|
|
|
|
Successfully removed the following roles from autorole:
|
|
|
|
`{changes}`
|
|
|
|
|
|
|
|
[S_AUTOROLE_LIST]
|
|
|
|
The following roles are added to users upon join.
|
|
|
|
{list}
|
|
|
|
|
2020-05-24 10:54:33 +02:00
|
|
|
//permissionType Setting
|
|
|
|
|
|
|
|
[S_PERMISSIONTYPE_DESCRIPTION]
|
|
|
|
Changes how permissions will be regarded for bot commands.
|
|
|
|
|
|
|
|
__Permission Types__
|
|
|
|
**`discord`:** Only discord-based permissions work with bot commands.
|
|
|
|
**`grant`:** Only grantable permissions from the bot work with bot commands. *(requires you to set everything up yourself)*
|
|
|
|
**`both`:** Both discord-based and grantable permissions work with bot commands. *(default)*
|
|
|
|
|
|
|
|
[S_PERMISSIONTYPE_INVALIDTYPE]
|
|
|
|
The provided value is not a valid permission type; try: `discord`, `grant`, or `both`.
|
|
|
|
Use the command `{prefix}setting permissiontype` for more information.
|
|
|
|
|
|
|
|
[S_PERMISSIONTYPE_SUCCESS]
|
|
|
|
Successfully set permission type to `{type}`.
|
|
|
|
**{description}**
|
|
|
|
|
|
|
|
[S_PERMISSIONTYPE_DESCRIPTIONS]
|
|
|
|
switch('{type}') {
|
|
|
|
case 'discord':
|
|
|
|
"Only discord-based permissions will work with bot commands."
|
|
|
|
break;
|
|
|
|
case 'grant':
|
|
|
|
"Only grantable permissions from the bot will work with bot commands."
|
|
|
|
break;
|
|
|
|
case 'both':
|
|
|
|
"Both discord-based and grantable permissions work with bot commands."
|
|
|
|
break;
|
|
|
|
}
|
2020-05-21 12:47:58 +02:00
|
|
|
|
2020-05-18 01:13:24 +02:00
|
|
|
//User Settings
|