QQ (WeChat) to send multiple messages at once (I love you 520 times in a row)

Woman, come and see the romance of programmers. Is it easy for us? Although we don’t know how to seduce girls, let you see how intense our artillery fire is.

1. Create a txt file and write the following

set wshshell=wscript.createobject("wscript.shell") 
wshshell.AppActivate"我家丫头"  //发送给谁
for i=1 to 3				//循环几次,这里是3次
wscript.sleep 100   			//间隔时间,单位毫秒
wshshell.sendKeys "^v" 
wshshell.sendKeys i 			//显示次数,不想显示的话,把这句话删除就行
wshshell.sendKeys "%s" 
next 

Insert picture description here

2. Save as vds format, ansi encoding format

Insert picture description here

3. Copy a piece of text you want to send, and then double-click vbs to send it

Insert picture description here

4. Looklook, ok, that’s it, don’t do these bells and whistles, work hard, think too much, do too little, don’t expect too much

Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_44797182/article/details/105434275