Experimental Discord bot written in Python
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }