wollt da ma nen spambot wer erstellen. komme leider nicht weiter kann mir helfen pls? THX im vorraus. :mofo:
PHP Code:
include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <File.au3>
#include <String.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Spambot v1.0 By xEr0r", 625, 443, 192, 124)
$Button1 = GUICtrlCreateButton("An", 440, 24, 49, 17, $WS_GROUP)
$Button2 = GUICtrlCreateButton("Aus", 504, 24, 49, 17, $WS_GROUP)
$Button3 = GUICtrlCreateButton("An", 440, 56, 49, 17, $WS_GROUP)
$Button4 = GUICtrlCreateButton("Aus", 504, 56, 49, 17, $WS_GROUP)
$Button5 = GUICtrlCreateButton("An", 440, 88, 49, 17, $WS_GROUP)
$Button6 = GUICtrlCreateButton("Aus", 504, 88, 49, 17, $WS_GROUP)
$Button7 = GUICtrlCreateButton("An", 440, 120, 49, 17, $WS_GROUP)
$Button8 = GUICtrlCreateButton("Aus", 504, 120, 49, 17, $WS_GROUP)
$Button9 = GUICtrlCreateButton("An", 440, 152, 49, 17, $WS_GROUP)
$Button10 = GUICtrlCreateButton("Aus", 504, 152, 49, 17, $WS_GROUP)
$Button11 = GUICtrlCreateButton("Alle Spams Start", 136, 304, 313, 33, $WS_GROUP)
$Button12 = GUICtrlCreateButton("Alle Spams Stop", 136, 352, 313, 33, $WS_GROUP)
$Button13 = GUICtrlCreateButton("Beenden", 512, 352, 89, 33, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Case $Button1
_senden()
Case $Button2
Case $Button3
_senden()
Case $Button4
Case $Button5
_senden()
Case $Button6
Case $Button7
_senden()
Case $Button8
Case $Button9
_senden()
Case $Button10
Case $Button11
_senden()
Case $Button12
Case $Button13
FUnc beenden()
ProcessClose("Spambot")
EndSwitch
WEnd
EndFunc