Hallo, ich habe ein problem und zwar willl ich gerade einen wow logg in bot basteln nur komm ich nicht weiter und zwar soll wenn ich die die Inputbox etwas reinschreibe eine ini datei erstellt werden und die soll wenn wow gestartet wurde abgerufen werden und halt in den acc einloggen
Ich hab so angefangen
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Log-in Saver by Lukas", 244, 149, 192, 124)
$Button1 = GUICtrlCreateButton("Save", 56, 104, 131, 33, $WS_GROUP)
$Edit1 = GUICtrlCreateEdit("", 40, 8, 9, 1)
GUICtrlSetData(-1, "Edit1")
$Accountname = GUICtrlCreateInput("Accountname", 16, 8, 121, 21)
$Accountpasswort = GUICtrlCreateInput("Accountpasswort", 16, 48, 121, 21)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
Exit
MsgBox ( 0, "Erfolg", "Du hast erfolgreich dein Account gespecihert" )
EndSwitch
WEnd
Soll bei Button one nich gleich schließen sondern ini datei schreiben und die dann später abrufen
Ich hab so angefangen
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Log-in Saver by Lukas", 244, 149, 192, 124)
$Button1 = GUICtrlCreateButton("Save", 56, 104, 131, 33, $WS_GROUP)
$Edit1 = GUICtrlCreateEdit("", 40, 8, 9, 1)
GUICtrlSetData(-1, "Edit1")
$Accountname = GUICtrlCreateInput("Accountname", 16, 8, 121, 21)
$Accountpasswort = GUICtrlCreateInput("Accountpasswort", 16, 48, 121, 21)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
Exit
MsgBox ( 0, "Erfolg", "Du hast erfolgreich dein Account gespecihert" )
EndSwitch
WEnd
Soll bei Button one nich gleich schließen sondern ini datei schreiben und die dann später abrufen