Geoffrey Discord Bot
Go to file
Joey Hines a346cb3eb9 Added find_farm command 2019-05-14 17:38:39 -05:00
GeoffreyBot Added find_farm command 2019-05-14 17:38:39 -05:00
.gitignore All v1.0 Geoffrey bot commands re-implemented 2019-01-14 14:20:16 -06:00
LICENSE Moved the Geoffrey Discord bot to its own repo 2019-01-04 10:54:38 -06:00
README Upgraded to discord.py v1.0 2019-04-10 14:08:39 -05:00
README.md Updated readme 2019-05-10 16:34:37 -05:00
setup.py Updated readme 2019-05-10 16:34:37 -05:00

README.md

Geoffrey-DiscordBot

The Geoffrey Discord Bot is designed to work with the Goeffrey Command API, implementing all its commands for discord

Getting Started

  1. Setup Geoffrey
  2. Clone this repo
  3. Go to the directory you cloned the repo into and run pip install .
  4. Now that the bot is installed as a package, you can create a startup script to run it. Bellow is an example:
from GeoffreyBot import bot
# Discord token for the bot to use
discord_token = ""

# Base link to the Geoffrey API 
geoffrey_api_link = ""

# Geoffrey API token
geoffrey_token = ""

# Start Bot
if __name__ == '__main__':
    print("Starting bot and connecting to {}".format(geoffrey_api_link))
    bot.start_bot(discord_token=discord_token,
                  geoffrey_base_url=geoffrey_api_link,
                  geoffrey_api_token=geoffrey_token)