okee ab lektion 2 check ich gar nix mehr aber ansonsten hab ich mir schon n Bot gemacht also das mit start sstop verstehe ich nicht
$windowname = "Unbenannt - Editor"
#include <GUIConstants.au3>
#Region ### START Koda GUI section ### Form=
$Test = GUICreate("Test", 625, 445, 193, 125)
$Leveln = GUICtrlCreateButton("Leveln", 144, 280, 321, 81, 0)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Leveln
Leveln()
EndSwitch
WEnd
Func Leveln()
ControlSend($windowname, '', '', " ")
Sleep(500)
EndFunc
AutoItSetOption("WinTitleMatchMode", 4)
$windowname = "Unbenannt - Editor"
#include <GUIConstants.au3>
#Region ### START Koda GUI section ### Form=
$Levelfreak = GUICreate("LevelFreak By Jan25051", 460, 445, 193, 125)
$Leveln = GUICtrlCreateCheckbox("Leveln Starten", 136, 376, 169, 33)
GUICtrlSetFont(-1, 14, 800, 0, "Comic Sans MS")
$LevelBox = GUICtrlCreateGroup("Leveln", 120, 352, 201, 65)
GUICtrlSetFont(-1, 8, 800, 0, "MS Sans Serif")
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Leveln
Leveln()
EndSwitch
WEnd
Func Leveln()
While 2
ControlSend($windowname, '', 15, " ")
Sleep(500)
WEnd
EndFunc