touchpress 0 #탭x #탭y
sleep 100
getColor #color #포기x #포기y
if #color == #포기c
sleep 500
goto :포기
endif
getColor #color #장비x #장비y
if #color == #장비c
sleep 500
goto :장비
endif
getColor #color #용병추가x #용병추가y
if #color == #용병추가c
sleep 500
goto :용병추가
else
goto :탭
endif
:축복
touchpress 0 #축복x 축복y
sleep 500
touchpress 0 542 1303
goto :탭
요렇게하면 왜 용병추가만 인식할까요?
그부분 색이 안맞다던가, 그런이유아니라면
if 부분에서는 그부분이 거짓이라면 가야하는 부분도 필요해서 그런것 같습니다.
그래서 완벽히 되어있는 용변추가부분만 인식하는것 같습니다.
그냥 모든 조건을 나눠버리세요. 나중에 패치로 바뀐다고하면 그부분 바꾸기 편해지니까요.
:확인1
getColor #color #포기x #포기y
if #color == #포기c
sleep 500
goto :포기
else
goto :확인2
endif
:확인2
getColor #color #장비x #장비y
if #color == #장비c
sleep 500
goto :장비
else
goto :확인3
endif
:확인3
getColor #color #용병추가x #용병추가y
if #color == #용병추가c
sleep 500
goto :용병추가
else
goto :탭
endif
:축복
touchpress 0 #축복x 축복y
sleep 500
touchpress 0 542 1303
goto :탭