this is a list of the top 10 most active users
if you cop[y paste this into private message you should be able to ping everyones inbox every 30 seconds. There is no way to turn this off or prevent it besides having to constantly delete your pm's as far as I know
balloon man, itybit, MuscleStud69, Cowboy2013, cryptographiccontrarian, jerryb, Who are you, John Joke (inventor of jokes)?, Xlite, AngryIVer, Pete Green, Dissociator, EllariaSand, BummyMofo, BeeReBuddy, Michael Myers, Meikai, General Butt.Naked, I Live In Your Crawlspace Secretly4, Haxxor, Kafka, Zanick, frala, Narc, Fonaplats, Rape Monster, RIPtotse, Kev, ______, NARCassist, Sudo, Lanny, mashlehash, stl1, Donald Trump, gadzooks, A College Professor, Obbe, cigareting, larrylegend8383, Technologist, DontTellEm, Bradley, POLECAT, Speedy Parker, Sophie, Grylls, Ghost, Wariat, -SpectraL, Wellhung, the man who put it in my hood, Candyrein, aldra, mmQ, vindicktive vinny, Jiggaboo_Johnson
it would be trivial to make a bot that just does that. Run this in a virtual box with the script running signed into an alt and it should send a message to everyone every 60 seconds.
import time
import requests
# List of usernames to send messages to
usernames = [
"balloon man", "itybit", "MuscleStud69", "Cowboy2013", "cryptographiccontrarian",
"jerryb", "Who are you, John Joke (inventor of jokes)?", "Xlite", "AngryIVer",
"Pete Green", "Dissociator", "EllariaSand", "BummyMofo", "BeeReBuddy", "Michael Myers",
"Meikai", "General Butt.Naked", "I Live In Your Crawlspace Secretly4", "Haxxor",
"Kafka", "Zanick", "frala", "Narc", "Fonaplats", "Rape Monster", "RIPtotse", "Kev",
"______", "NARCassist", "Sudo", "Lanny", "mashlehash", "stl1", "Donald Trump",
"gadzooks", "A College Professor", "Obbe", "cigareting", "larrylegend8383",
"Technologist", "DontTellEm", "Bradley", "POLECAT", "Speedy Parker", "Sophie",
"Grylls", "Ghost", "Wariat", "-SpectraL", "Wellhung", "the man who put it in my hood",
"Candyrein", "aldra", "mmQ", "vindicktive vinny", "Jiggaboo_Johnson"
]
message = "goodbye world! *bleats*"
base_url = "https://your-forum-website.com" # Replace with your forum URL
compose_url = f"{base_url}/pms/compose"
# Loop through usernames and send private messages
for username in usernames:
payload = {
"subject": "Test Message",
"to": username,
"content": message
}
response = requests.post(compose_url, data=payload)
if response.status_code == 200:
print(f"Message sent to {username}")
else:
print(f"Failed to send message to {username}")
time.sleep(60) # Wait for 60 seconds before sending the next message