huuh
hab mal ne frage,
ich will mir meinen eigenen sPambot machn, kann mir da jemand tiPPs oder ein tool geben?
mfg
hab mal ne frage,
ich will mir meinen eigenen sPambot machn, kann mir da jemand tiPPs oder ein tool geben?
mfg
HotKeySet("{ESC}", "_exit")
Func _exit()
Exit
EndFunc ;Schliesst das Program mit der ESC-Taste
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form2 = GUICreate("Spambot", 315, 109, 598, 416)
$text = GUICtrlCreateInput("", 24, 32, 137, 21)
$Button1 = GUICtrlCreateButton("Spam", 184, 32, 105, 25, $WS_GROUP)
$Label1 = GUICtrlCreateLabel("Text der gespamt werden soll...", 24, 8, 151, 17)
$abstand = GUICtrlCreateInput("", 24, 80, 137, 21)
$Label2 = GUICtrlCreateLabel("Zeitabstand...", 24, 56, 69, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
_button1()
EndSwitch
WEnd
Func _Button1()
While Sleep(GUICtrlRead($abstand)) ;Zeitabstand in Milisekunden
Send(GUICtrlRead($text)) ;Sendet denn Text den du in der Inputbox "$text" eingegeben hast.
WEnd
Wenn du bei AutoIt eine Taste senden willst, kannst du es so z.B machen:Quote:
Ich will noch eine Taste senden und ein mouse klick an einen bestimmten punkt wie mach ich das?
Send("{TASTE}") ;z.B Send("{ENTER}")