filmov
tv
How To Create Your Own Spam Bot Using A Script - Tutorial

Показать описание
Hello everyone and welcome to a brand new video. This one will be a bit different than usual.
I just wanted to show you a cool way to create your own spam bot using a script :P
Script I used :
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 victims input box?")
If not isnumeric (strtimes & strspeed & strtimeneed) then
msgbox "You entered something not numerical. Please Try Again"
End If
strtimeneed2 = strtimeneed * 1000
do
msgbox "You have " & strtimeneed & " seconds to get to your input area where you are going to spam."
for i=0 to strtimes
Next
returnvalue=MsgBox ("Want to spam again with the same info?",36)
If returnvalue=6 Then
Msgbox "Ok Spambot Will Start Again"
End If
If returnvalue=7 Then
msgbox "Spambot Going To Sleep"
End IF
loop
I just wanted to show you a cool way to create your own spam bot using a script :P
Script I used :
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 victims input box?")
If not isnumeric (strtimes & strspeed & strtimeneed) then
msgbox "You entered something not numerical. Please Try Again"
End If
strtimeneed2 = strtimeneed * 1000
do
msgbox "You have " & strtimeneed & " seconds to get to your input area where you are going to spam."
for i=0 to strtimes
Next
returnvalue=MsgBox ("Want to spam again with the same info?",36)
If returnvalue=6 Then
Msgbox "Ok Spambot Will Start Again"
End If
If returnvalue=7 Then
msgbox "Spambot Going To Sleep"
End IF
loop
Комментарии