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.

37 lines
1.1KB

  1. import configparser
  2. settings = configparser.ConfigParser()
  3. settings.read("Roxbot/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.1"
  15. embedcolour = 0xDEADBF
  16. # IF YOU ARE TESTING OR NOT IN THE GSS DISCORD, REMOVE "cogs.gss" FROM THE LIST
  17. cogs = [
  18. "Roxbot.cogs.admin",
  19. "Roxbot.cogs.fun",
  20. "Roxbot.cogs.customcommands",
  21. "Roxbot.cogs.joinleave",
  22. "Roxbot.cogs.nsfw",
  23. "Roxbot.cogs.reddit",
  24. "Roxbot.cogs.selfassign",
  25. "Roxbot.cogs.trivia",
  26. "Roxbot.cogs.twitch",
  27. "Roxbot.cogs.util",
  28. #"Roxbot.cogs.gss"
  29. ]