해당 코드를 짜면 설정.ini 에 내용이 저장되는것 까지는 확인이됩니다.
근데 if 를써서 작동을 하려고 해보니 자동 이던 시뮬을 선택하던 자동으로만 인식해서 저 A값만 나오는데
어느부분이 잘못됐는지 지도 부탁드려요 ㅠ
Gui, Add, DropDownList, x16 y60 w60 h50 v팀, 1팀|2팀
Gui, Add, DropDownList, x86 y60 w60 h80 v시즌, 자동|시뮬
Gui, Add, DropDownList, x156 y60 w60 h110 v횟수, 5|15
Gui, Add, Text, x16 y40 w60 h50, 팀
Gui, Add, Text, x86 y40 w60 h80, 시즌
Gui, Add, Text, x156 y40 w60 h110, 횟수
Gui, Add, Text, x16 y100 w60 h30, F1 Start
Gui, Add, Text, x156 y100 w60 h30, F2 Fin
winget, title, ID, BlueStacks App Player
IfExist, 설정.ini
{
IniRead, X_Pos, 설정.ini, WindowPosition, X
IniRead, Y_Pos, 설정.ini, WindowPosition, Y
IniRead, 팀, 설정.ini, 매크로설정, 팀
IniRead, 시즌, 설정.ini, 매크로설정, 시즌
IniRead, 횟수, 설정.ini,매크로설정,횟수
if X_Pos = -32000
{
X_Pos = 800
Y_Pos = 400
}
}
IfNotExist, BlueStacks App Player
{
Run, C:\Program Files (x86)\BlueStacks\HD-StartLauncher.exe
}
Gui, Show
start := false
F1::
{
CoordMode, Pixel, Screen
WinGetPos, pos_x,pos_y, width, height, BlueStacks App Player
x_right := width + pos_x
y_bottom := height + pos_y
gui, submit, nohide
IniWrite, %팀%, 설정.ini, 매크로설정, 팀
IniWrite, %시즌%, 설정.ini, 매크로설정, 시즌
IniWrite, %횟수%, 설정.ini, 매크로설정, 횟수
global 시즌
global 팀
if %시즌% = 자동
{
A=3000000
}
else if %시즌% = 시뮬
{
A=600000
}