Browse Source

bot core innit

tags/v1.0.0
roxie 6 years ago
parent
commit
ebd300c1fb
3 changed files with 21 additions and 3 deletions
  1. +0
    -3
      cogs/main.py
  2. +4
    -0
      config/preferences.ini
  3. +17
    -0
      main.py

+ 0
- 3
cogs/main.py View File

@@ -1,3 +0,0 @@
from discord.ext import commands

bot = commands.Bot(command_prefix=".")

+ 4
- 0
config/preferences.ini View File

@@ -0,0 +1,4 @@
[Roxbot]
OwnerID=
Token=
Command_Prefix=

+ 17
- 0
main.py View File

@@ -0,0 +1,17 @@
#!/usr/env python

import configparser
from discord.ext import commands

settings = configparser.ConfigParser()
settings.read("config/preferences.ini")
command_prefix = settings["Roxbot"]["Command_Prefix"]
token = settings["Roxbot"]["Token"]

bot = commands.Bot(command_prefix=command_prefix)

@bot.event
async def on_ready():
print("Client Logged In")

bot.run()

Loading…
Cancel
Save