2018-12-23 19:03:40 +00:00
|
|
|
import datetime
|
|
|
|
|
2018-12-23 13:13:39 +00:00
|
|
|
# Basic bot config
|
|
|
|
prefixes = [".", "!"]
|
|
|
|
token = "token-goes-here"
|
|
|
|
bot_description = "An attempt to rewrite the bot used in ReSwitched"
|
2018-12-23 17:27:51 +00:00
|
|
|
|
2018-12-23 19:03:40 +00:00
|
|
|
source_url = "https://github.com/aveao/robocop-ng"
|
|
|
|
rules_url = "https://reswitched.team/discord/"
|
|
|
|
|
2018-12-23 17:27:51 +00:00
|
|
|
# The bot description to be used in .robocop embed
|
|
|
|
embed_desc = "Robocop-NG is developed by [Ave](https://github.com/aveao)"\
|
|
|
|
" and [tomGER](https://github.com/tumGER), and is a rewrite "\
|
|
|
|
"of Robocop.\nRobocop is based on Kurisu by 916253 and ihaveamac."
|
|
|
|
|
2018-12-23 19:03:40 +00:00
|
|
|
|
|
|
|
# Minimum account age required to join the discord
|
|
|
|
min_age = datetime.timedelta(minutes=15)
|
|
|
|
|
2018-12-24 08:23:14 +00:00
|
|
|
# IMPORTANT: It's assumed that the first guild here
|
|
|
|
# is the one containing log_channel
|
2018-12-23 13:13:39 +00:00
|
|
|
guild_whitelist = [
|
|
|
|
526372255052201993, # NotSwitched discord
|
|
|
|
269333940928512010 # ReSwitched discord
|
|
|
|
]
|
|
|
|
|
2018-12-23 19:59:42 +00:00
|
|
|
# Named roles to be used with .approve and .revoke
|
|
|
|
# The defaults are for NotSwitched
|
|
|
|
named_roles = {
|
|
|
|
"community": 526378381839695872,
|
|
|
|
"hacker": 526471781184176139,
|
|
|
|
"participant": 526378358129557506
|
|
|
|
}
|
|
|
|
|
2018-12-23 13:19:33 +00:00
|
|
|
bot_manager_role_id = 526372554081042462 # Bot management role in NotSwitched
|
|
|
|
staff_role_ids = [526384077679624192, # Team role in NotSwitched
|
|
|
|
526372582455508992, # Mod role in NotSwitched
|
|
|
|
526372554081042462, # Bot management role in NotSwitched
|
2018-12-23 13:50:06 +00:00
|
|
|
526383985430102016] # Wizard role in NotSwitched
|
2018-12-23 15:44:16 +00:00
|
|
|
|
2018-12-23 19:03:40 +00:00
|
|
|
log_channel = 526377735908491284 # Log channel in NotSwitched
|
2018-12-23 16:31:12 +00:00
|
|
|
welcome_channel = 526372470752673792 # rules-info channel in NotSwitched
|
2018-12-23 19:06:32 +00:00
|
|
|
|
2018-12-23 19:12:30 +00:00
|
|
|
community_channels = [526378423468425236] # Channels requiring community role
|
|
|
|
general_channels = [526372255052201995] # Channels everyone can access
|
2018-12-23 20:50:05 +00:00
|
|
|
|
|
|
|
mute_role = 526500080879140874 # Mute role in NotSwitched
|
2018-12-23 23:53:14 +00:00
|
|
|
mute_role_name = "muted" # Mute role name in NotSwitched
|