| 12345678910111213141516171819202122232425262728293031 |
- # Copy this file to config.py and fill in necessary values
- CONFIG = {
- '__config_version': 1,
- 'client_token': 'token',
- 'command_prefix': '$rb_',
- 'kick_emoji': '👢',
- 'ban_emoji': '🚫',
- 'trash_emoji': '🗑',
- 'success_emoji': '✅',
- 'failure_emoji': '❌',
- 'warning_emoji': '⚠️',
- 'info_emoji': 'ℹ️',
- 'config_path': 'config/',
- 'cog_defaults': {
- 'JoinRaidCog': {
- 'enabled': False,
- 'warning_count': 5,
- 'warning_seconds': 5,
- },
- 'CrossPostCog': {
- 'warn_message_count': 3,
- 'ban_message_count': 9999,
- 'time_window_seconds': 120,
- 'min_message_length': 0,
- },
- 'URLSpamCog': {
- 'early_url_timeout': 900, # Should be > 10m due to Discord-imposed waiting period
- 'early_url_action': 'modwarn', # "nothing" | "modwarn" | "delete" | "kick" | "ban"
- },
- },
- }
|