Hallo,
Ich möchte mein AutoIT wissen erweitern und wollte mal Fragen wie ich meinen Spam Bot durch drücken eines GUI Buttons Pausieren/Fortsetzen kann.
Script:
Ich möchte mein AutoIT wissen erweitern und wollte mal Fragen wie ich meinen Spam Bot durch drücken eines GUI Buttons Pausieren/Fortsetzen kann.
Script:
PHP Code:
#Region ### START Koda GUI section ### Form=c:\dokumente und einstellungen\fabian\desktop\koda\forms\formspammer.kxf
$Form1_1 = GUICreate("Spammer by Bl4CkIsTheBest ", 515, 218, 193, 125)
GUISetBkColor(0x716F64)
$Input1 = GUICtrlCreateInput("Text 1", 16, 16, 489, 21)
GUICtrlSetCursor (-1, 5)
$Input2 = GUICtrlCreateInput("Text 2", 16, 48, 489, 21)
GUICtrlSetCursor (-1, 5)
$Input3 = GUICtrlCreateInput("1000", 16, 88, 153, 21)
GUICtrlSetCursor (-1, 5)
$Button1 = GUICtrlCreateButton("Credits", 184, 80, 153, 33, 0)
GUICtrlSetFont(-1, 12, 800, 4, "Comic Sans MS")
GUICtrlSetCursor (-1, 0)
$Button2 = GUICtrlCreateButton("Adversiting", 352, 80, 153, 33, 0)
GUICtrlSetFont(-1, 12, 800, 4, "Comic Sans MS")
GUICtrlSetCursor (-1, 0)
$Button3 = GUICtrlCreateButton("Informationen", 16, 120, 153, 57, 0)
GUICtrlSetFont(-1, 12, 800, 4, "Comic Sans MS")
GUICtrlSetCursor (-1, 0)
$Button4 = GUICtrlCreateButton("Start", 184, 120, 153, 57, 0)
GUICtrlSetFont(-1, 12, 800, 4, "Comic Sans MS")
GUICtrlSetCursor (-1, 0)
$Button5 = GUICtrlCreateButton("Pause", 352, 120, 153, 57, 0)
GUICtrlSetFont(-1, 12, 800, 4, "Comic Sans MS")
GUICtrlSetCursor (-1, 0)
$Label1 = GUICtrlCreateLabel("Copyright by Bl4CkIsTheBest http://cleanii.eu/ - Webdesigns", 16, 184, 486, 21)
GUICtrlSetFont(-1, 9, 400, 6, "Comic Sans MS")
GUICtrlSetBkColor(-1, 0xFFFFFF)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
ShellExecute("http://cleanii.eu/")
Exit
Case $Button1
MsgBox(0,"Credits","Bl4CkIsTheBest - Coding"&@CRLF&"Cleanii - Design")
Case $Button2
ShellExecute("http://cleanii.eu/")
ShellExecute("http://blackworld3.com/")
Case $Button3
MsgBox(0,"","Mit F6 beendet sich der Bot"&@CRLF&"Sie Besitzen die Vollversion ohne Updates!")
Case $Button5
Exit
Case $Button4
MsgBox(0,"","Mit F6 beendet sich der Bot")
Sleep(5000)
While 1
Send(GUICtrlRead($Input1))
Send("{ENTER}")
Sleep(GUICtrlRead($Input3))
Send(GUICtrlRead($Input2))
Send("{ENTER}")
Sleep(GUICtrlRead($Input3))
Wend
EndSwitch
WEnd