![]() |
|
Basic Spam Bot for Skype - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Design (https://sinister.li/Forum-Design) +--- Forum: Tutorials (https://sinister.li/Forum-Tutorials--78) +--- Thread: Basic Spam Bot for Skype (/Thread-Basic-Spam-Bot-for-Skype) |
Basic Spam Bot for Skype - zenith - 01-02-2017 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 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)
nextRE: Basic Spam Bot for Skype - Blink - 01-02-2017 I don't see why it wouldn't work. For future reference, you should use [ code ] tags. Code: Like this.RE: Basic Spam Bot for Skype - zenith - 01-02-2017 (01-02-2017, 02:14 AM)Ender Wrote: I don't see why it wouldn't work. Shit I'll do that now. Just forgot lol. Skype patched some things in like late 2015 but from what I know the Skype spammers that I do have still work. Just no IP grabbers anymore. RE: Basic Spam Bot for Skype - pvnk - 01-02-2017 (01-02-2017, 02:16 AM)Zenith Wrote:(01-02-2017, 02:14 AM)Ender Wrote: I don't see why it wouldn't work. You can still use Wireshark to obtain internet protocol addresses.
RE: Basic Spam Bot for Skype - zenith - 01-02-2017 (01-02-2017, 03:09 AM)pvnk Wrote:(01-02-2017, 02:16 AM)Zenith Wrote:(01-02-2017, 02:14 AM)Ender Wrote: I don't see why it wouldn't work. True. and there doesn't seem to be a patch because of the was Skype works. just made those skype ip grabbers not work. |