-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtempCodeRunnerFile.py
More file actions
31 lines (21 loc) · 1.18 KB
/
tempCodeRunnerFile.py
File metadata and controls
31 lines (21 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@bot.tree.command(name="truth")
async def truthh(interaction: discord.Interaction):
random_truth = random.choice(truths)
embed = discord.Embed(title=f"{interaction.user.name}", description=random_truth, color=0xeb4034)
await interaction.response.send_message(embed=embed)
@bot.tree.command(name="dare")
async def daree(interaction: discord.Interaction):
random_dare = random.choice(dares)
embed = discord.Embed(title=f"{interaction.user.name}", description=random_dare, color=0xeb4034)
await interaction.response.send_message(embed=embed)
@bot.tree.command(name="truth-bedwars")
async def truth_bedwarss(interaction: discord.Interaction):
random_truth_bw = random.choice(truth_bedwars)
embed = discord.Embed(title=f"{interaction.user.name}", description=random_truth_bw, color=0xeb4034)
await interaction.response.send_message(embed=embed)
@bot.tree.command(name="dare-bedwars")
async def dare_bedwarss(interaction: discord.Interaction):
random_dare_bw = random.choice(dare_bedwars)
embed = discord.Embed(title=f"{interaction.user.name}", description=random_dare_bw, color=0xeb4034)
await interaction.response.send_message(embed=embed)
bot.run(TOKEN)