Experimental Discord bot written in Python
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.py.sample 302B

123456789101112
  1. # Copy this file to config.py and fill in necessary values
  2. CONFIG = {
  3. 'clientToken': 'token',
  4. 'joinWarningCount': 5,
  5. 'joinWarningSeconds': 5,
  6. 'commandPrefix': '$rb_',
  7. 'kickEmojiName': 'boot',
  8. 'kickEmoji': '👢',
  9. 'banEmojiName': 'no_entry_sign',
  10. 'banEmoji': '🚫',
  11. 'configPath': 'config/',
  12. }