2017-12-06 16:36:31 +01:00
|
|
|
import json
|
2017-12-02 11:27:16 +01:00
|
|
|
import discord
|
|
|
|
from discord.ext import commands
|
|
|
|
|
2017-12-06 16:36:31 +01:00
|
|
|
with open('config.json') as json_data_file:
|
|
|
|
parameter = json.load(json_data_file)
|
|
|
|
|
|
|
|
bot = commands.Bot(command_prefix=parameter['Bot']['prefix'], description=parameter['Bot']['description'])
|
2017-12-02 11:27:16 +01:00
|
|
|
|
|
|
|
owner = ["177393521051959306"]
|
|
|
|
|
|
|
|
def is_owner(id):
|
|
|
|
for i in range(len(owner)):
|
|
|
|
if id == owner[i]:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
#Démarrage
|
|
|
|
@bot.event
|
|
|
|
async def on_ready():
|
|
|
|
print("Démarrage de DefaultCMD")
|
|
|
|
bot.load_extension("DefaultCMD")
|
2017-12-05 18:56:30 +01:00
|
|
|
|
2017-12-02 11:27:16 +01:00
|
|
|
print("Démarrage de ExampleRepl")
|
|
|
|
bot.load_extension("ExampleRepl")
|
2017-12-05 18:56:30 +01:00
|
|
|
|
2017-12-02 11:27:16 +01:00
|
|
|
print("Démarrage de Benne_a_ordure")
|
|
|
|
bot.load_extension("Benne_a_ordure")
|
2017-12-05 18:56:30 +01:00
|
|
|
|
2017-12-02 11:27:16 +01:00
|
|
|
print("Démarrage de Reactionner")
|
|
|
|
bot.load_extension("Reactionner")
|
2017-12-05 18:56:30 +01:00
|
|
|
|
2017-12-03 12:31:15 +01:00
|
|
|
print("Démarrage de Garou")
|
|
|
|
bot.load_extension("Garou")
|
2017-12-05 18:56:30 +01:00
|
|
|
|
2017-12-02 11:27:16 +01:00
|
|
|
print("FTW's Bot operationelle")
|
|
|
|
|
|
|
|
@bot.command(pass_context = True)
|
|
|
|
async def load(ctx, ext):
|
|
|
|
""": Charge une extension"""
|
|
|
|
if is_owner(ctx.message.author.id) == True:
|
|
|
|
bot.load_extension(ext)
|
|
|
|
print("Extention "+str(ext)+" charger par: "+str(ctx.message.author))
|
|
|
|
await bot.say("Extension "+str(ext)+" charger")
|
|
|
|
else:
|
|
|
|
await bot.say("Désoler <@"+str(ctx.message.author.id)+"> mais vous n'avez pas le droit de faire ca !")
|
|
|
|
print("Refue de charger: "+str(ext)+" car "+str(ctx.message.author)+" n'a pas le droit !")
|
|
|
|
|
|
|
|
@bot.command(pass_context = True)
|
|
|
|
async def unload(ctx,ext):
|
|
|
|
""": Décharge une extension"""
|
|
|
|
if is_owner(ctx.message.author.id) == True:
|
|
|
|
bot.unload_extension(ext)
|
|
|
|
print("extention "+str(ext)+" décharger")
|
|
|
|
await bot.say("Extension "+str(ext)+" décharger")
|
|
|
|
else:
|
|
|
|
await bot.say("Désoler <@"+str(ctx.message.author.id)+"> mais vous n'avez pas le droit de faire ca !")
|
|
|
|
print("Refue de décharger: "+str(ext)+" car "+str(ctx.message.author)+" n'a pas le droit !")
|
|
|
|
|
|
|
|
@bot.command(pass_context = True)
|
|
|
|
async def reload(ctx,ext):
|
|
|
|
""": Recharge une extension avec ses modifications"""
|
|
|
|
if is_owner(ctx.message.author.id) == True:
|
|
|
|
bot.unload_extension(ext)
|
|
|
|
bot.load_extension(ext)
|
|
|
|
print("Extention "+str(ext)+" mis à jour par: "+str(ctx.message.author))
|
|
|
|
await bot.say("Extension "+str(ext)+" mis à jour")
|
|
|
|
else:
|
|
|
|
await bot.say("Désoler <@"+str(ctx.message.author.id)+"> mais vous n'avez pas le droit de faire ca !")
|
|
|
|
print("Refue de mettre à jour: "+str(ext)+" car "+str(ctx.message.author)+" n'a pas le droit !")
|
|
|
|
|
|
|
|
"""
|
|
|
|
@bot.event
|
|
|
|
async def on_message(msg):
|
|
|
|
print(msg.content)
|
|
|
|
"""
|
|
|
|
|
2017-12-05 18:56:30 +01:00
|
|
|
bot.run("bot")
|