JakoV
6.8.09, 9:21
set shell = createobject("wscript.shell")
strtext = inputbox("Message:")
strtimes = inputbox("Number of times to spam:")
if not isnumeric(ststimes) then
wscript.quit
end if
msgbox "You have 3 seconds to get to your inputbox"
wscript.sleep(3000)
for i=1 to strtimes
shell.sendkeys(strtext & "{enter}")
wscript.sleep(500)
next
שמרו אותו בVBS ותריצו אותו.
השימוש פשוט מאוד, אחרי שתכניסו את כול הפרטים למקומות, שימו את העכבר במקום שאתם רוצים להציף בו (אם זה מסנ' או אייסי או תוכנות דומות), ולחצו.
(בניתי אותו על הבוקר (Y))
strtext = inputbox("Message:")
strtimes = inputbox("Number of times to spam:")
if not isnumeric(ststimes) then
wscript.quit
end if
msgbox "You have 3 seconds to get to your inputbox"
wscript.sleep(3000)
for i=1 to strtimes
shell.sendkeys(strtext & "{enter}")
wscript.sleep(500)
next
שמרו אותו בVBS ותריצו אותו.
השימוש פשוט מאוד, אחרי שתכניסו את כול הפרטים למקומות, שימו את העכבר במקום שאתם רוצים להציף בו (אם זה מסנ' או אייסי או תוכנות דומות), ולחצו.
(בניתי אותו על הבוקר (Y))