DEVICE: LG-F100S 4.1.2
SCREEN_SIZE: 768x1024
var #count 0
:start
//■■공격1차(반복광클)
:attack1
touchdown 0 1180 430
touchdown 1 996 1200
sleep 20
touchup 0
touchup 1
sleep 20
#count = #count + 1
//어택1 300회반복
if #count >= 300
#count = 0
//카운터 충족시 item up1로, 카운터 부족시 attack1 반복
goto :item up1
else
goto :attack1
endif
//■■아이템업 1차
:item up1
sleep 400
//오토버튼 누르기
touchpress 0 1246 778
sleep 300
//장비메뉴
touchpress 0 481 1982
sleep 100
//무기버튼 누르기
touchpress 0 663 1094
sleep 100
// ▲ 여기까진 정상작동 하는것 같아요
// ▼ 이거는 1회 실행은 하는데, 카운터가 안먹혀요
:at click1
//강화 한번에 15번 누르기
touchdown 0 1194 1200
touchdown 1 1194 1335
touchdown 2 1194 1470
touchdown 3 1194 1605
touchdown 4 1194 1740
touchdown 5 1194 1875
sleep 50
touchup 0
touchup 1
touchup 2
touchup 3
touchup 4
touchup 5
sleep 100
#count = #count + 1
if #count >= 50
#count = 0
//50회 충족시 scr1로, 부족시 at click1 반복 (이게 안됩니다)
goto :scr1
else
goto :at click1
endif
:scr1
:end
각각 사용하실려면 카운트 변수를 두개로 해서 사용하시는것이 좋을듯하네요
아래쪽에
var #count1 0 변수 지정하셔서 해보세요