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 405B

12345678910111213141516
  1. # Copy this file to config.py and fill in necessary values
  2. CONFIG = {
  3. 'clientToken': 'token',
  4. 'dbHost': 'localhost',
  5. 'dbUser': 'username',
  6. 'dbPassword': 'password',
  7. 'dbDatabase': 'databasename',
  8. 'joinWarningCount': 5,
  9. 'joinWarningSeconds': 5,
  10. 'commandPrefix': '$rb_',
  11. 'kickEmojiName': 'boot',
  12. 'kickEmoji': '👢',
  13. 'banEmojiName': 'no_entry_sign',
  14. 'banEmoji': '🚫',
  15. 'statePath': 'state/',
  16. }