-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import discord_webhook | ||
from discord_webhook import DiscordEmbed, DiscordWebhook | ||
import string | ||
import random | ||
import discord | ||
import os | ||
import colorama | ||
from colorama import Fore, Style | ||
import requests | ||
import time | ||
from colorama import Fore | ||
import time, datetime | ||
import json | ||
def sbammah(): | ||
webhook = input(f"[>]Enter The Webhook Link:") | ||
message = input(f"[>]Enter The Message: ") | ||
delay = float(input(f"[>]Enter The Delay:")) | ||
print(Fore.RESET + '') | ||
|
||
while True: | ||
|
||
print(Fore.CYAN + "Sending.. " + message) | ||
print(Fore.RESET + " ") | ||
try: | ||
time.sleep(delay) | ||
_data = requests.post(webhook, json={'content': message}) | ||
|
||
if _data.status_code == 204: | ||
print(Fore.CYAN + "Sent -> " + message) | ||
except: | ||
print("Something Happend! | Probably Broken Webhook -> " + webhook) | ||
time.sleep(5) | ||
exit() | ||
|
||
x = 5 | ||
while x == 5: | ||
sbammah() |