N0RA__

Untitled

Jun 7th, 2021 (edited)
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. py -m pip install discord_webhook
  2.  
  3.  
  4.  
  5. from discord_webhook import DiscordWebhook, DiscordEmbed
  6. from time import sleep
  7. webhook = DiscordWebhook(url='https://media.discordapp.net/attachments/700875338074292316/851506703056896030/Adel.png?width=476&height=635')
  8. embed = DiscordEmbed(title='MABROUK', description='AVALEZ !', color='03b2f8')
  9. embed.set_author(name='MABROUK', url='https://media.discordapp.net/attachments/700875338074292316/851506703056896030/Adel.png?width=476&height=635', icon_url='author icon url')
  10. embed.set_image(url='https://media.discordapp.net/attachments/700875338074292316/851506703056896030/Adel.png?width=476&height=635')
  11. embed.set_thumbnail(url='https://media.discordapp.net/attachments/700875338074292316/851506703056896030/Adel.png?width=476&height=635')
  12. embed.set_footer(text='JETTEZ VOTRE ORDINATEUR PAR LA FENETRE', icon_url='https://media.discordapp.net/attachments/700875338074292316/851506703056896030/Adel.png?width=476&height=635')
  13. embed.set_timestamp()
  14. embed.add_embed_field(name='WINTOZ IS LEGION', value='WINTOZ IS LEGION')
  15. embed.add_embed_field(name='WINTOZ IS LEGION', value='WINTOZ IS LEGION')
  16. webhook.add_embed(embed)
  17.  
  18. while True:
  19. response = webhook.execute()
  20. sleep(1)
Add Comment
Please, Sign In to add comment