Experimental Discord bot written in Python
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

config.py.sample 581B

1234567891011121314151617181920212223242526
  1. # Copy this file to config.py and fill in necessary values
  2. CONFIG = {
  3. '__config_version': 1,
  4. 'client_token': 'token',
  5. 'command_prefix': '$rb_',
  6. 'kick_emoji': '👢',
  7. 'ban_emoji': '🚫',
  8. 'trash_emoji': '🗑',
  9. 'success_emoji': '✅',
  10. 'warning_emoji': '⚠️',
  11. 'info_emoji': 'ℹ️',
  12. 'config_path': 'config/',
  13. 'cog_defaults': {
  14. 'JoinRaidCog': {
  15. 'enabled': False,
  16. 'warning_count': 5,
  17. 'warning_seconds': 5,
  18. },
  19. 'CrossPostCog': {
  20. 'warn_message_count': 3,
  21. 'ban_message_count': 9999,
  22. 'time_window_seconds': 120,
  23. 'min_message_length': 0,
  24. },
  25. },
  26. }