Habe da mal wieder ein problem,
Wie kann man einstellen, dass er den Text spamt, denn man in $Input1
reinschreibt.
Code:
Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("Spamm Bot by .FreakY", 296, 250, 382, 287)
GUISetBkColor(0x008000)
$button1 = GUICtrlCreateButton("Start", 104, 100, 83, 25, 0)
GUICtrlSetBkColor(-1, 0x00FFFF)
$Text = GUICtrlCreateInput("Hier Text Nummer 1", 24, 16, 257, 21)
$Zeit = GUICtrlCreateInput("Zeit", 120, 50, 49, 21)
$button4 = GUICtrlCreateButton("Info", 16, 200, 75, 25, 0)
GUICtrlSetBkColor(-1, 0x00FFFF)
$button5 = GUICtrlCreateButton("E*PVP", 200, 200, 75, 25, 0)
GUICtrlSetBkColor(-1, 0x00FFFF)
$Button2 = GUICtrlCreateButton("Pause", 104, 135, 83, 25, 0)
GUICtrlSetBkColor(-1, 0x00FFFF)
$Button3 = GUICtrlCreateButton("Beenden", 104, 170, 83, 25, 0)
GUICtrlSetBkColor(-1, 0x00FFFF)
GUISetState(@SW_SHOW)
guictrlsetstate($button1,$gui_enable)
guictrlsetstate($button2,$gui_disable)
guictrlsetstate($button3,$gui_enable)
$state = false
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
case $button1
guictrlsetstate($button2,$gui_enable)
guictrlsetstate($button1,$gui_disable)
ToolTip("")
$state = true
case $button2
guictrlsetstate($button1,$gui_enable)
guictrlsetstate($button2,$gui_disable)
$state = false
case $button3
guictrlsetstate($button3,$gui_enable)
Exit
case $button4
MsgBox(0, "Info", _
@CRLF & _
@CRLF & _
"Infos" & @CRLF & _
"" & @CRLF & _
"Dies ist ein Bot" & @CRLF & _
"der den Text wiedergibt,." & @CRLF & _
"denn du oben eingegeben hast." & @CRLF & _
@CRLF & _
"Powert by .FreakY for ElitePvPers")
case $button5
ShellExecute("http://www.elitepvpers.com/", 1)
EndSwitch
if $state =true then
send ($Text)
sleep($Zeit)
endif
WEnd






