Basic Spam Bot for Skype 01-02-2017, 02:08 AM
#1
Not sure if still working. Was made around 2 years ago.
Just copy and paste the script below into something like notepad
Save it as whatever.vbs
Just copy and paste the script below into something like notepad
Save it as whatever.vbs
Code:
set shell = createobject ("wscript.shell")
strtext = inputbox("Message :")
strtimes = inputbox("Amount of messages to spam")
strtdelay = inputbox("Delay between messages")
if not isnumeric(strtimes) then
wscript.quit
end if
msgbox "You have 5 seconds to get to your inputbox."
wscript.sleep( 5000 )
for i=1 to strtimes
shell.sendkeys(strtext & "{enter}")
wscript.sleep(strdelay)
next
(This post was last modified: 01-02-2017, 02:16 AM by zenith.)
Who Knows?