roxie 6 лет назад
Родитель
Сommit
ebd300c1fb
3 измененных файлов: 21 добавлений и 3 удалений
  1. +0
    -3
      cogs/main.py
  2. +4
    -0
      config/preferences.ini
  3. +17
    -0
      main.py

+ 0
- 3
cogs/main.py Просмотреть файл

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

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

+ 4
- 0
config/preferences.ini Просмотреть файл

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

+ 17
- 0
main.py Просмотреть файл

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

Загрузка…
Отмена
Сохранить