-
Notifications
You must be signed in to change notification settings - Fork 3
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
3 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,55 @@ | ||
import pyautogui as madbhai | ||
import time | ||
import random | ||
|
||
red = '\033[31m' | ||
yellow = '\033[93m' | ||
lgreen = '\033[92m' | ||
clear = '\033[0m' | ||
bold = '\033[01m' | ||
cyan = '\033[96m' | ||
|
||
# LOGO FOR MAD SPAM | ||
|
||
print(red+bold+"<-. (`-') (`-') _ _(`-') (`-').->_ (`-') (`-') _ <-. (`-') ") | ||
print(red+bold+" \(OO )_ (OO ).-/( (OO ).-> ( OO)_ \-.(OO ) (OO ).-/ \(OO )_ ") | ||
print(red+bold+",--./ ,-.)/ ,---. \ .'_ (_)--\_) _.' \ / ,---. ,--./ ,-.)") | ||
print(lgreen+"| `.' || \ /`.\ '`'-..__)/ _ /(_...--'' | \ /`.\ | `.' |") | ||
print(lgreen+"| |'.'| |'-'|_.' || | ' |\_..`--.| |_.' | '-'|_.' || |'.'| |") | ||
print(lgreen+"| | | (| .-. || | / :.-._) \ .___.'(| .-. || | | |") | ||
print(cyan+"| | | || | | || '-' /\ / | | | | || | | |") | ||
print(cyan+"`--' `--'`--' `--'`------' `-----'`--' `--' `--'`--' `--'") | ||
print(lgreen+" V1.0 \n"+clear) | ||
|
||
|
||
print (lgreen+bold+" <===[[ coded by Mr. Mad Bhai ]]===> "+clear) | ||
print (yellow+bold+" <===(( search on youtube Mr. Mad Bhai ))===> "+clear) | ||
print (lgreen+bold+" <==={{ This Tool is made for Spamming... }}===> "+clear) | ||
print (red+bold+"<===[( This Tool is Made For Educational Purpose Only. )]===> \n"+clear) | ||
|
||
# wait to start | ||
startingtime = input(yellow+"After How many Second You Wana to start: "+clear) | ||
print(red+"Your Spammer send msg after", startingtime, "Second.\n"+clear) | ||
|
||
# Spammer Range Input | ||
spam_range = input (cyan+"Put Spam Range: "+clear) | ||
time.sleep (int(startingtime)) | ||
|
||
# Taking File For Spam | ||
mad_spam = open('madspam.txt', 'r').read() | ||
mad_spam = mad_spam.splitlines() | ||
|
||
# Please Don't Copy code | ||
# Its Mad Bhai Here | ||
|
||
# spam Number range | ||
for _ in range (int(spam_range)): | ||
madbhai.typewrite(random.choice(mad_spam)) | ||
madbhai.press('enter') | ||
|
||
# Taking User Name for Thanking | ||
print("Your Spammer sended msg", spam_range, "times.\n") | ||
|
||
user = input(lgreen+bold+"Put your name: "+clear) | ||
print(yellow+"Hello", user, "Thanks For Using Mad Spam..."+clear) | ||
|
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,17 @@ | ||
Hello Brother.... | ||
How can i know about you?? | ||
Just Kidding | ||
How are You | ||
hello World | ||
How Your GF | ||
Can you Please give me your number | ||
I am Spammer | ||
Spammer Here | ||
Lets Spam | ||
Lets disturb | ||
You are getting Spammed! | ||
From Mad Spam | ||
its Mr. Mad Bhai | ||
I am Your Father | ||
thats all | ||
Just Repeating all |