-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor settings, py-cord local, typos
- Loading branch information
Showing
10 changed files
with
173 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,47 @@ | ||
# Discord Token | ||
# General Bot settings | ||
# BOT Login Token | ||
BOT_TOKEN = | ||
# ID of the discord guild | ||
# ID of your Discord Server/Guild | ||
GUILD_ID = | ||
# ID for the voice channel bot its category | ||
# ID of the text channel where the bot sends logs | ||
LOG_CHANNEL = | ||
|
||
|
||
# User permission settings | ||
# ID for the role required to execute slash commands (full permissions) | ||
COMMAND_PERMISSION_ROLE = | ||
|
||
|
||
# Voice Auto Scaler settings | ||
# Enable or Disable Voice Auto Scaler, true/false | ||
VOICE_SCALER_ENABLE = true | ||
# ID of the category to auto scale voice channels in | ||
VOICE_CHANNEL_CATEGORY = | ||
# Default name for channels in the voice channel bot category | ||
# Default name for auto scaling voice channels | ||
VOICE_CHANNEL_DEFAULT_NAME = 'Voice Channel' | ||
# id of the log channel | ||
LOG_CHANNEL = | ||
# ID of the rolebot channel the settings appear in | ||
|
||
|
||
# Self-Role text channel subscription settings | ||
# Enable or Disable Self-Role channel subscriptions, true/false | ||
ROLEBOT_ENABLE = true | ||
# ID of the text channel where subscription options should appear | ||
ROLEBOT_SETTINGS_CHANNEL = | ||
# ID for the role required to execute slash commands | ||
COMMAND_PERMISSION_ROLE = | ||
# Roles to add to members that join the server, comma separated | ||
|
||
|
||
# Auto-Role settings | ||
# Enable or Disable Auto-Role, true/false | ||
AUTO_ROLE_ENABLE = true | ||
# Roles to instantly add to new members joining the server, comma separated | ||
AUTO_ROLES = Role1,Role2,etc | ||
|
||
|
||
# Poll settings | ||
# Enable or Disable Polls, true/false | ||
POLL_ENABLE = false | ||
# We are not allowed to redistribute fonts, please provide your own in the data folder. (TrueType/.ttf only!) | ||
# Font Regular (default = Helvetica.ttf) | ||
POLL_FONT_REGULAR = Helvetica.ttf | ||
# Font Bold (default = Helvetica-Bold-Font.ttf) | ||
POLL_FONT_BOLD = Helvetica-Bold-Font.ttf | ||
# If fonts other than the default are used, scaling might be required. (default = 10) | ||
POLL_FONT_SCALE = 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,47 @@ | ||
# Discord Token | ||
# General Bot settings | ||
# BOT Login Token | ||
BOT_TOKEN = | ||
# ID of the discord guild | ||
# ID of your Discord Server/Guild | ||
GUILD_ID = | ||
# ID for the voice channel bot its category | ||
# ID of the text channel where the bot sends logs | ||
LOG_CHANNEL = | ||
|
||
|
||
# User permission settings | ||
# ID for the role required to execute slash commands (full permissions) | ||
COMMAND_PERMISSION_ROLE = | ||
|
||
|
||
# Voice Auto Scaler settings | ||
# Enable or Disable Voice Auto Scaler, true/false | ||
VOICE_SCALER_ENABLE = true | ||
# ID of the category to auto scale voice channels in | ||
VOICE_CHANNEL_CATEGORY = | ||
# Default name for channels in the voice channel bot category | ||
# Default name for auto scaling voice channels | ||
VOICE_CHANNEL_DEFAULT_NAME = 'Voice Channel' | ||
# id of the log channel | ||
LOG_CHANNEL = | ||
# ID of the rolebot channel the settings appear in | ||
|
||
|
||
# Self-Role text channel subscription settings | ||
# Enable or Disable Self-Role channel subscriptions, true/false | ||
ROLEBOT_ENABLE = true | ||
# ID of the text channel where subscription options should appear | ||
ROLEBOT_SETTINGS_CHANNEL = | ||
# ID for the role required to execute slash commands | ||
COMMAND_PERMISSION_ROLE = | ||
# Roles to add to members that join the server, comma separated | ||
|
||
|
||
# Auto-Role settings | ||
# Enable or Disable Auto-Role, true/false | ||
AUTO_ROLE_ENABLE = true | ||
# Roles to instantly add to new members joining the server, comma separated | ||
AUTO_ROLES = Role1,Role2,etc | ||
|
||
|
||
# Poll settings | ||
# Enable or Disable Polls, true/false | ||
POLL_ENABLE = false | ||
# We are not allowed to redistribute fonts, please provide your own in the data folder. (TrueType/.ttf only!) | ||
# Font Regular (default = Helvetica.ttf) | ||
POLL_FONT_REGULAR = Helvetica.ttf | ||
# Font Bold (default = Helvetica-Bold-Font.ttf) | ||
POLL_FONT_BOLD = Helvetica-Bold-Font.ttf | ||
# If fonts other than the default are used, scaling might be required. (default = 10) | ||
POLL_FONT_SCALE = 10 |
Oops, something went wrong.