@commands.command()
async def say(ctx, arg = None):
if arg == None:
pass
else:
@commands.cooldown(1, 500, type = BucketType.member)
await ctx.send(arg)
commands.cooldown(1, 500, type = BucketType.member)(await ctx.send(arg))
global repp
@commands.cooldown(1, 7200, type = BucketType.member)
async def repp(self, usr):
cur.execute(f"UPDATE users SET rep = rep + 1 WHERE id = {usr}")
conn.commit()
@commands.command()
async def rep(self, ctx, *, member: Optional[discord.Member]):
with open("D:\\PythonWorks\\AniLibriaWarnlog\\Chnlcmd.json", "r") as f:
chnlcmds = json.load(f)
if member == None:
return
else:
async def Check(chnlcmds):
if str(ctx.message.channel.id) in chnlcmds:
if ".rep" in chnlcmds[str(ctx.message.channel.id)]:
if member.id == ctx.message.author.id:
emb = discord.Embed(
description = f'{ctx.message.author.mention} Вы не можете повысить репутацию сами себе.',
color = 0xff0000
)
await ctx.send(embed = emb)
else:
await repp(self, usr = member.id)
emb = discord.Embed(
description = f'{ctx.message.author.mention} Вы повысили репутацию пользователя {member.mention} \nТеперь у него **+{cur.execute(f"SELECT rep FROM users WHERE id = {member.id}").fetchone()[0]}☆** репутации. \n\nПовысить снова можно через **2 часа.**',
color = 0x00E584
)
await ctx.send(embed = emb)
else:
pass
else:
pass
await Check(chnlcmds)
else:
@commands.cooldown(1, 7200, type = BucketType.member)
async def repp(self, usr):
cur.execute(f"UPDATE users SET rep = rep + 1 WHERE id = {usr}")
conn.commit()
await repp(self, usr = member.id)