so this is my first release but not sure on where else to post this but this program is used to spam your friends steam chat, quite funny actually.
Code:
set shell = createobject ("wscript.shell")
strtext = inputbox ("Write down your message you like to spam")
strtimes = inputbox ("How many times do you like to spam?")
strspeed = inputbox ("How fast do you like to spam? (1000 = one per sec, 100 = 10 per sec etc)")
strtimeneed = inputbox ("How many SECONDS do you need to get to your victems input box?")
If not isnumeric (strtimes & strspeed & strtimeneed) then
msgbox "You entered something else then a number on Times, Speed and/or Time need. shutting down"
wscript.quit
End If
strtimeneed2 = strtimeneed * 1000
do
msgbox "You have " & strtimeneed & " seconds to get to your input area where you are going to spam."
wscript.sleep strtimeneed2
shell.sendkeys ("" & "{enter}")
for i=0 to strtimes
shell.sendkeys (strtext & "{enter}")
wscript.sleep strspeed
Next
shell.sendkeys ("" & "{enter}")
wscript.sleep strspeed * strtimes / 10
returnvalue=MsgBox ("Want to spam again with the same sentence?",36)
If returnvalue=6 Then
Msgbox "Ok Spambot will spam your target!"
End If
If returnvalue=7 Then
msgbox "Spambox is fucking closing down!"
wscript.quit
End IF
loop
how to save code:
open notepad
paste code
save the .txt document to allfiles (insertnamehere).vbs
done!
how to use:
open the program
insert desired work or sentence of your shoice
how many times you want to spam it
how many seconds per spam
enter amount of seconds it will take or you to click the steam chat box (where you type)
done enjoy spamming your friends
PLEASE NOTE:
I DID NOT MAKE THIS I TAKE NO CREDIT NOT SURE WHO MADE BUT A FRIEND OF MINE GAVE ME THE CODE SO I THOUGHT I WOULD SHARE IT
P.S. IF I POSTED THIS IN THE WRONG SECTION PLEASE DIRECT ME TO THE SECTION WHERE I CAN POST THIS THANKS
