Skip to content
/ chembot Public

Chembot is a discord.py bot "backend" that runs different discord "bots" off of the same code, depending on configuration. All these bots will have the same base commands though, which can be found in the cogs/ directory.``

License

Notifications You must be signed in to change notification settings

max-49/chembot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

chembot

If you're running this bot for some reason, add a profiles.json into the root directory and put [] in it. Also, make a file called config.py and put the following code into it:

import os

def get_bot(cwd, debug=True):
  # returns bot token, NP game, currency, and prefix
  if(debug):
    return [os.getenv('TOKEN'), "developing!", "coins", "c!"]
  elif(cwd == 'chembot'):
    return [os.getenv('CHEM_TOKEN'), "with TeamlessCTF!", "coins", "c!"]
  else:
    # if your cwd's name is something other than chembot

also your first command when running the bot for the first time should be c!profile otherwise things might break

have fun

About

Chembot is a discord.py bot "backend" that runs different discord "bots" off of the same code, depending on configuration. All these bots will have the same base commands though, which can be found in the cogs/ directory.``

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages