What's new

Closed Spammer

Status
Not open for further replies.

PUTANKINNAMALL

Forum Veteran
Elite
Joined
May 12, 2016
Posts
1,647
Reaction
790
Points
695
open notepad+
copy paste code
save w/ .vbs extension
FUD
Code:
strtext = inputbox("Message :")
strtimes = inputbox("Number of times to spam")

if not isnumeric(strtimes) then
wscript.quit
end if
msgbox "You have 3 seconds to get to your input area"
wscript.sleep(3000)
for i=1 to strtimes
createobject("wscript.shell").sendkeys(strtext & "{enter}")
wscript.sleep(500)
next
 
Kala ko sa code pra sa VB xD
May ginawa ako dati sa vb
https://vbthingsphc.onl/#forbidden#/2017/04/03/vb-projects-chat-spammer-beta/#more-460
 
Status
Not open for further replies.
Back
Top