Wollte mir ein kleinen Tastenbot für Rappelz machen der nur 3 Tasten immer drückt aber ich weis jetzt nicht mehr weiter wie ichs machen soll hier mal mein progi wie es aussehen soll ;D wär schön wenn mir das mal einer machen könnte
der bot soll die Tasten 1,2,3,4 drücken und alle 60 sekunden die Tab taste
Ps: bin noch ein Noob in AutoIt bitte nicht so streng sein,hoffe ich bekomme geholfen natürlich gibts auch ein dickes Thx von mir ^.^
der bot soll die Tasten 1,2,3,4 drücken und alle 60 sekunden die Tab taste
PHP Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("LevelBot by SpeedLink", 618, 259, 320, 133)
$Pic1 = GUICtrlCreatePic("C:\Users\Daniel\Desktop\24.jpg", 0, 0, 617, 257, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
$Button1 = GUICtrlCreateButton("Start", 16, 8, 137, 41, 0)
$Button2 = GUICtrlCreateButton("Pause", 448, 8, 145, 41, 0)
$Button3 = GUICtrlCreateButton("Ende", 216, 208, 145, 41, 0)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd