WeChat和qq消息轟炸腳本
- 新建txt文件 復制A或B的代碼保存
- 將.txt改為.vbs
- 然后將要發送的消息內容復制到剪切板上
- 打開目標窗口 先雙擊剛准備好的VBS 然后點擊要轟炸的目標窗口 完成
- A、消息末尾帶序號
Set WshShell=WScript.CreateObject("Wscript.Shell") WshShell.AppActivate "Bug_2" for i=1 to 10 WScript.Sleep 99 WshShell.SendKeys "^v" WshShell.SendKeys i WshShell.SendKeys "%s" Next
- B、消息末尾不帶序號
Set WshShell=WScript.CreateObject("Wscript.Shell") WshShell.AppActivate "Bug_2" for i=1 to 10 WScript.Sleep 99 WshShell.SendKeys "^v" WshShell.SendKeys "%s" Next