63 lines
No EOL
2.2 KiB
Python
63 lines
No EOL
2.2 KiB
Python
import nextcord
|
|
from nextcord.ext import commands, application_checks
|
|
from nextcord import TextInputStyle
|
|
import random
|
|
import aiosqlite as sqlite3
|
|
import aiohttp
|
|
from urllib.parse import urlparse
|
|
import os
|
|
|
|
|
|
class GameView(nextcord.ui.View):
|
|
def __init__(self):
|
|
super().__init__(timeout=None)
|
|
|
|
@nextcord.ui.button(
|
|
label="Next Turn", style=nextcord.ButtonStyle.green, custom_id="gameutils:nextturn"
|
|
)
|
|
async def approve(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
|
|
ogmsg = nextcord.utils.escape_markdown(interaction.message.content).split("\n")
|
|
ogmsg.pop(0)
|
|
message = "It has been decreed..\n"
|
|
found = False
|
|
for i in ogmsg:
|
|
if i.startswith("~"):
|
|
message = message + i + "\n"
|
|
continue
|
|
if not found:
|
|
i = "~~" + i + "~~"
|
|
turnping = i.split("<")[1].split(">")[0]
|
|
found = True
|
|
message = message + i + "\n"
|
|
continue
|
|
else:
|
|
message = message + i + "\n"
|
|
print(interaction.user.guild_permissions)
|
|
await interaction.response.edit_message(content=message)
|
|
await interaction.followup.send(f"<{turnping}> it is now your turn!")
|
|
return
|
|
|
|
class gameutils(commands.Cog):
|
|
|
|
def __init__(self, bot: commands.Bot):
|
|
self.bot = bot
|
|
bot.add_view(GameView())
|
|
|
|
@nextcord.slash_command(
|
|
name="turngen",
|
|
description="Roll the next turn for a certian role",
|
|
guild_ids=[699285282276507708],
|
|
)
|
|
@nextcord.ext.application_checks.has_permissions(manage_roles=True)
|
|
async def turngen(self, interaction: nextcord.Interaction, role: nextcord.Role):
|
|
message = "It has been decreed..\n"
|
|
users = role.members
|
|
random.shuffle(users)
|
|
for i in range(len(users)):
|
|
message = message + f"{str(i+1)}. <@{users[i]}>\n"
|
|
await interaction.response.send_message(nextcord.utils.escape_markdown(message), view=GameView(), allowed_mentions=nextcord.AllowedMentions.none())
|
|
await interaction.followup.send(f"<@{users[0].id}> it is now your turn!")
|
|
|
|
|
|
def setup(bot: commands.Bot):
|
|
bot.add_cog(gameutils(bot)) |