Sign in to follow this  
hakiraki

how to make spam bot

Recommended Posts

1 step open notedpad

2 step copy code

3 step save as spammer.vbs

 

 

 

 

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 ("Spambot activated" & "{enter}")

for i=0 to strtimes

shell.sendkeys (strtext & "{enter}")

wscript.sleep strspeed

Next

shell.sendkeys ("Spambot deactivated" & "{enter}")

wscript.sleep strspeed * strtimes / 10

returnvalue=MsgBox ("Want to spam again with the same info?",36)

If returnvalue=6 Then

Msgbox "Ok Spambot will activate again"

End If

If returnvalue=7 Then

msgbox "Spambox is shutting down"

wscript.quit

End IF

loop

Share this post


Link to post
Share on other sites

my eyes

 

 

jesus

Share this post


Link to post
Share on other sites

:fuck: :fuck: :fuck: :fuck: :fuck: :fuck: :fuck:

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this