|
Post by [CoaL]Free on Feb 21, 2010 14:51:42 GMT -5
set shell = createobject ("wscript.shell")
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 inputbox" wscript.sleep(3000) for i=1 to strtimes shell.sendkeys (strtext & " {enter} ") wscript.sleep(100) next
|
|