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.

36 lines
1016B

  1. import configparser
  2. settings = configparser.ConfigParser()
  3. settings.read("settings/preferences.ini")
  4. command_prefix = settings["Roxbot"]["Command_Prefix"]
  5. token = settings["Roxbot"]["Token"]
  6. owner = int(settings["Roxbot"]["OwnerID"])
  7. tat_token = settings["Roxbot"]["Tatsumaki_Token"]
  8. __description__ = """RoxBot, A Discord Bot made by a filthy Mercy Main. Built with love (and discord.py) by Roxxers#7443.
  9. [Github link](https://github.com/RainbowDinoaur/roxbot)
  10. [Changelog](https://github.com/RainbowDinoaur/roxbot#v100)
  11. [Found a bug or need to report an issue? Report it here](https://github.com/RainbowRoxxers/roxbot/issues/new)
  12. [Say Thanks](https://saythanks.io/to/Roxxers)"""
  13. __author__ = "Roxanne Gibson"
  14. __version__ = "1.4.0"
  15. embedcolour = 0xDEADBF
  16. # IF YOU ARE TESTING OR NOT IN THE GSS DISCORD, REMOVE "cogs.gss" FROM THE LIST
  17. cogs = [
  18. "cogs.admin",
  19. "cogs.fun",
  20. "cogs.customcommands",
  21. "cogs.joinleave",
  22. "cogs.nsfw",
  23. "cogs.reddit",
  24. "cogs.selfassign",
  25. "cogs.twitch",
  26. "cogs.util",
  27. "cogs.gss"
  28. ]