Also ich möchte mal einen einfachen bot bauen ( also einen der in bestimmten zeitabständen eine x beliebige taste drückt) bitte schickt mia das passende programm und ne anleitung thx
danke :DQuote:
Direkt mit Bots anfangen zu Scripten wäre nicht sehr hilfreich ;)
[Only registered and activated users can see links. Click Here To Register...]
schau dir den Thread mal an und mach dich bekannt mit AutoIt ist sehr leicht zu bedienen
mach alles Schritt für Schritt und alles ist Paletti :D
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("BOT", 244, 62, 237, 124)
$Label1 = GUICtrlCreateLabel("Drücke die untere Taste um den Bot zu starten!", 8, 8, 228, 17)
$Button1 = GUICtrlCreateButton("", 40, 32, 177, 25, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
While 2
ControlSend ("","","","{TAB}") ;TABULATOR WÄHLT SOFORT NÄCHSTES MONSTER AUS( KA FÜR WELCHES SPIEL DU MACHEN WILLST!^^)
ControlSend ("","","","{TAB}") ;""
ControlSend ("","","","{1}") ; Drückt Taste 1 z.B. für einen Angriff
ControlSend ("","","","{Z}") ; Drückt Taste Z z.B. fürs Aufsammeln
WEnd
EndSwitch
WEnd ; PASS AUF DER BOT STOPPT SICH NICH ALLEINE DRÜCK EINFACH UNTEN AUF DAS AUTOIT ZEICHEN!
HotKEySet("ESC", "_exit")
While 1
sleep(4000)
Send("{l}")
Send("{o}")
Send("{l}")
Send ("{ENTER}")
sleep (3000)
send ("{h}")
send ("{a}")
send ("{l}")
send ("{l}")
send ("{o}")
send ("{ENTER}")
WEnd
Func _exit()
exit
EndFunc