Exemplo n.º 1
0
    async def counting(self, ctx):

        embed = self.bot.embed(ctx.author, "FBot counting")

        last_number = db.getnumber(ctx.guild.id)
        embed.add_field(name="Last number", value=last_number)

        user_id = db.getuser(ctx.guild.id)
        try:
            last_counter = (await self.bot.fetch_user(user_id)).mention
        except:
            last_counter = "Nobody"
        embed.add_field(name="Last counter", value=last_counter)

        embed.add_field(name="Anti-sabotage detects...",
                        value=cares,
                        inline=False)

        channel_id = db.getcountingchannel(ctx.guild.id)
        try:
            channel = f"<#{(await self.bot.fetch_channel(channel_id)).id}>"
        except:
            channel = "None"
        embed.add_field(name="Channel", value=channel)

        highscore = db.gethighscore(ctx.guild.id)
        embed.add_field(name="Highscore", value=highscore)

        await ctx.send(embed=embed)
Exemplo n.º 2
0
    async def on_raw_reaction_add(self, payload):

        if not self.bot.ready():
            return

        if not payload.guild_id:
            return
        if payload.channel_id != db.getcountingchannel(payload.guild_id):
            return
        if payload.user_id == self.bot.user.id:
            return
        if not payload.emoji.is_unicode_emoji():
            return
        if payload.emoji.name not in ["✅", "☑️", "✔️"]:
            return

        channel = await self.bot.fetch_channel(payload.channel_id)
        message = await channel.fetch_message(payload.message_id)

        count = 0
        for reaction in message.reactions:
            if reaction.emoji in ["✅", "☑️", "✔️"]:
                count += reaction.count

        if count == 1:
            last_number = db.getnumber(payload.guild_id)
            await channel.send(
                f"A message was given a fake check. The next number is `{last_number+1}`"
            )
Exemplo n.º 3
0
    async def on_message(self, message):

        if not self.bot.ready():
            return

        try:
            guild_id = message.guild.id

            if message.channel.id != db.getcountingchannel(guild_id):
                return
            elif not message.content[0].isdigit():
                return
            elif message.content == "":
                return

            guilds_number = db.getnumber(guild_id)

            if message.author.bot:
                await message.channel.send(
                    f"Numbers from bot accounts are not counted. The next number is `{guilds_number+1}`"
                )
            elif message.author.id == db.getuser(guild_id):
                db.resetnumber(guild_id)
                await message.add_reaction("❌")
                await message.channel.send(
                    f"{message.author.mention} ruined it! You can't do two numbers in a row"
                )
            else:
                users_number = clean(message.content)

                if users_number != guilds_number + 1:
                    db.resetnumber(guild_id)
                    await message.add_reaction("❌")
                    await message.channel.send(
                        f"{message.author.mention} ruined it!")
                else:
                    db.updatenumber(users_number, message.author.id, guild_id)
                    await message.add_reaction("✅")
                    if str(users_number).endswith("69"):
                        await message.add_reaction("👌")
                    elif users_number == 100:
                        await message.add_reaction("💯")
        except:
            pass
Exemplo n.º 4
0
    async def on_raw_message_edit(self, payload):

        if not self.bot.ready():
            return

        if not payload.guild_id:
            return
        if payload.channel_id != db.getcountingchannel(payload.guild_id):
            return

        message = payload.cached_message
        if not message: return
        if not message.content: return

        if message.content[0].isdigit():
            number = clean(message.content)
            last_number = db.getnumber(message.guild.id)
            if number == last_number:
                await message.channel.send(
                    f"The last number was edited. The next number is `{last_number+1}`"
                )