• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

AutoIT FaceBook/Skype/ICQ/Steam/Raidcall/Omegle spreaders

Status
Not open for further replies.

DDoSer

The Real DDoSer
User
Joined
Oct 9, 2013
Messages
352
Reputation
0
Reaction score
4,578
Points
243
Credits
0
‎11 Years of Service‎
51%
[HIDE-THANKS]

Code:
>Func facebook($sMessage)
$dll = DllOpen("user32.dll")
Sleep(2)
If _IsPressed("0D", $dll) and WinActive("Facebook -") = True Then
	ClipPut($sMessage)
	Send("^v{ENTER}")
	Sleep(1)
	ClipPut("")
EndIf
DllClose($dll)
EndFunc   ;==>FaceBook
Code:
>Func skype($sMessage)
$open = DllOpen ("user32.dll")
If _IsPressed ("0D", $open) And WinActive ("Skype") Then
	For $i = 1 To 4
		ControlSetText ("[CLASS:tSkMainForm]", "", "TChatRichEdit" & $i, $sMessage)
		ControlFocus ("[CLASS:tSkMainForm]", "", "TChatRichEdit" & $i)
	Next
	Send ("{ENTER}")
EndIf
EndFunc
Code:
>Func steam($sMessage)
$dll = DllOpen("user32.dll")
Sleep(2)
If _IsPressed("0D", $dll) and WinActive("[REGEXPCLASS:USurface_.*]", "") = True Then
	ClipPut($sMessage)
	Send("^v{ENTER}")
	;MsgBox(0, 0, 0)
	Sleep(1)
	ClipPut("")
EndIf
DllClose($dll)
EndFunc
Code:
>Func raidcall($sMessage)
$dll = DllOpen("user32.dll")
Sleep(2)
If _IsPressed("0D", $dll) and WinActive("RaidCall") = True Then
	ControlSetText ("[CLASS:ATL:007C6BD8]", "", "[CLASS:ATL:007C6900; INSTANCE:5]", $sMessage)
	ControlFocus ("[CLASS:ATL:007C6BD8]", "", "[CLASS:ATL:007C6900; INSTANCE:5]")
	Send ("{ENTER}")
EndIf
DllClose($dll)
EndFunc
Code:
>Func icq($sMessage)
$dll = DllOpen("user32.dll")
Sleep(2)
If _IsPressed("0D", $dll) and WinActive("[CLASS:MRA_ICQ_SENDRECEIVE]") = True Then
	ControlSetText ("[CLASS:MRA_ICQ_SENDRECEIVE]", "", "[CLASS:WNDLESS_RICHEDIT]", $sMessage)
	ControlFocus ("[CLASS:MRA_ICQ_SENDRECEIVE]", "", "[CLASS:WNDLESS_RICHEDIT]")
	Send ("{ENTER}")
EndIf
DllClose($dll)
EndFunc
Code:
>Func omegle($sMessage)
$dll = DllOpen("user32.dll")
Sleep(2)
If _IsPressed("0D", $dll) and WinActive("Omegle") = True Then
	ClipPut($sMessage)
	Send("^v{ENTER}")
	;MsgBox(0, 0, 0)
	Sleep(1)
	ClipPut("")
EndIf
DllClose($dll)
EndFunc
[/HIDE-THANKS]

 
Status
Not open for further replies.
Back
Top