Hey, hab hier folgendes Script und ich möchte, dass es wenn ich die Entf Taste drück anfängt zu spammen, leider habe ich keine Ahnung, wie ich das machen soll....
Script:
Schonmal Danke im Vorraus
Script:
PHP Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Webbrowser by FrEakY.", 325, 117, 192, 124)
$Input1 = GUICtrlCreateInput("Hier den Link eingeben", 16, 8, 289, 21)
$Button1 = GUICtrlCreateButton("Go", 32, 48, 73, 49, $WS_GROUP)
$Button2 = GUICtrlCreateButton("E*Pvpers", 120, 48, 73, 49, $WS_GROUP)
$Button3 = GUICtrlCreateButton("Spamm", 208, 48, 81, 49, $WS_GROUP)
$Pic1 = GUICtrlCreatePic("C:\Users\TheAdmin\Desktop\Crack\AS-RENDERS_547.jpg", 0, 0, 324, 116, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
GUICtrlSetState(-1,$GUI_disable)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
HotKeySet("{delete}","Start")
HotKeySet("{end}","Stop")
Global $Start
Global $Stop
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $Button1
gogo()
Case $Button2
los()
Case $Button3
spamm()
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Func gogo()
ShellExecute(GUICtrlRead($Input1))
EndFunc
Func los()
ShellExecute("http://www.elitepvpers.com")
Exit
EndFunc
Func spamm()
MsgBox(0, "Hinweis!", "Drücke Entf zum Starten" & @CRLF & "Drücke Ende zum Beenden")
While 1
Send(GUICtrlRead($Input1))
Send("{ENTER}")
Sleep(5000)
WEnd
EndFunc
Func Start()