Code:
#include <GuiConstants.au3>
GuiCreate("MSN Flooder 0.01", 353, 117)
GuiSetIcon(@SystemDir & "\sndrec32.exe", 0)
GUICtrlSetColor(-1,0xff0000)
$flood= GuiCtrlCreateButton("Spam", 150, 40, 80, 40)
$close = GuiCtrlCreateButton("Exit", 260, 40, 80, 40)
$ftext = GuiCtrlCreateInput("Text To Spam", 20, 10, 320, 20)
$amount = GuiCtrlCreateInput("Seconds To Spam)", 20, 40, 95, 40)
$Label_5 = GuiCtrlCreateLabel("MSN Spammer By Checkers", 100, 90, 150, 20)
GuiSetState()
While 1
$msg = GUIGetMsg()
Select
Case $msg = $GUI_EVENT_CLOSE Or $msg = $close
ExitLoop
Case $msg = $flood
$text = GUICtrlRead($ftext)
Msgbox(0, "Info", "You have 2 seconds to get to the msn window, then it will flood 20 times")
sleep("2000")
$t = GUICtrlRead($amount)
$timer = TimerInit()
Do
send($text & "{ENTER}")
Until (TimerDiff($timer)/1000) > $t
send("MSN Spammer Made By Checkers And thanks for using this program!" & "{ENTER}")
EndSelect
WEnd Like MSN, AIM, Yahoo, even Web based chat programs.
Pretty much anything you chat you can use this to spam.
To make it go faster modify the Source code.