Merge branch 'BlackJackIntegration'

This commit is contained in:
2022-11-23 21:37:06 +10:00
2 changed files with 27 additions and 5 deletions

View File

@@ -20,6 +20,29 @@ async def test(interaction:discord.Interaction):
except discord.app_commands.errors.CommandInvokeError:
print("Uh oh! It failed!")
class HitOrStand(discord.ui.View):
def __init__(self, *, timeout=180):
super().__init__(timeout=timeout)
self.content = None
@discord.ui.button(label="Hit", style=discord.ButtonStyle.green)
async def hit(self, interaction: discord.Interaction, button: discord.ui.Button):
self.content = "h"
for child in self.children:
child.disabled = True
await interaction.response.edit_message(content="You Hit!", view=self)
self.stop()
@discord.ui.button(label="Stand", style=discord.ButtonStyle.red)
async def stand(self, interaction: discord.Interaction, button: discord.ui.Button):
self.content = "s"
for child in self.children:
child.disabled = True
await interaction.response.edit_message(content="You stood!", view=self)
self.stop()
class Buttons(discord.ui.View):
def __init__(self, *, timeout=180):
super().__init__(timeout=timeout)
@@ -51,11 +74,10 @@ async def bj(interaction: discord.Interaction):
await blackJack.play_game(100)
async def discordInput(interaction: discord.Interaction, message:str):
await interaction.followup.send(message)
def check(m):
return m.content in ["h", "s"] and m.channel == interaction.channel
msg = await client.wait_for('message', check=check)
return msg.content
response = HitOrStand()
await interaction.followup.send(message, view=response)
await response.wait()
return response.content
async def discordOutput(interaction: discord.Interaction, message):
await interaction.followup.send(message)