Parcourir la source

bot core innit

tags/v1.0.0
roxie il y a 6 ans
Parent
révision
ebd300c1fb
3 fichiers modifiés avec 21 ajouts et 3 suppressions
  1. +0
    -3
      cogs/main.py
  2. +4
    -0
      config/preferences.ini
  3. +17
    -0
      main.py

+ 0
- 3
cogs/main.py Voir le fichier

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

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

+ 4
- 0
config/preferences.ini Voir le fichier

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

+ 17
- 0
main.py Voir le fichier

@@ -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()

Chargement…
Annuler
Enregistrer