**참고로 모든 디바이스에서 작동하지 않습니다**
**테스트 하기 위해서는 var 값을 자신의 기기에 마춰서 셋팅해야 합니다**
**참고하시라고 올려드립니다**
물약 판매 스크립트를 올리게된 경위는
아이템을 클릭하였을경우 팝업되는 창에서 색값을 잡아 판매하는 형식이
더 편할듯 보였기에 만들어 봤습니다
1.아이템을 클릭
2.팝업창에서 색값추출
3.색값인식후 보관 or 개별판매 or 등급판매 진행
이렇게 가능하기 때문에
인벤 전체의 색값을 가져오지 않고도 진행할수가 있습니다
그리고 던전에서 사냥을 하다가 뜨게되는
인벤부족 팝업창에서 바로 정리버튼을 누르고 들어가게 됩니다
스샷을 첨부해서 뽑아올 색값과 버튼을 표시하였습니다
그럼 도움이 되었길 빌면서 이만 물러 납니다 (__)/
//======딜레이관련========
//------처음시작대기-------
var #start 3000
//------색값인식대기-------
var #getdeley 1000
//-----if값전환딜레이-------
var #ifdeley 500
//------일반터치딜레이-------
var #deleya 1000
//------화면전환딜레이-------
var #deleyb 3000
//------팝업차단딜레이-------
var #deleyc 1000
//------판매딜레이-------
var #deleye 2000
//-----입장중 로딩시간------
var #loading 8000
//-----던전종료대기중-----
var #hunting 30000
//------보상확인딜레이-------
var #deleyd 2000
//------아이템판매중-------
var #selldeley 15000
//------아이템색값인식-------
var #itemcolor 2000
//------맵전환딜레이-------
var #mapdeley 2000
//--------------------------
//======인벤정리관련========
//--------------------------
//-----인벤부족메세지 팝업 색값좌표및색값------
var #invencx 373
var #invency 750
var #invenc 16777215
//-----인벤부족메세지 팝업 ------
var #invenx 240
var #inveny 490
//-----창고들어가기 ------
var #storageinx 88
var #storageiny 1120
//------아이템정리 버튼------
var #restitemx 116
var #restitemy 647
//------첫번째아이템 버튼------
var #firstx 585
var #firsty 705
//------첫번째아이템 색값좌표(보석,물약제외)------
var #firstitemcx 573
var #firstitemcy 660
//------첫번째아이템 빨간색 색값------
var #firstredc 794579
//------첫번째아이템 주황색 색값-----------
var #firstorangec 2332159
//------첫번째아이템 보라색 색값-------
var #firstpouplec 16725918
//------첫번째아이템 파란색 색값-------
var #firstbluec 16748826
//------첫번째아이템 녹색 색값-------
var #firstgreenc 6148644
//------첫번째아이템 흰색 색값-------
var #firstwhitec 16777215
//------물약(소)색값좌표------
var #potioncx 579
var #potioncy 714
//------물약(소)색값------
var #potionc 1863318
//------물약(중)색값좌표------
var #potion2cx 579
var #potion2cy 715
//------물약(중)색값------
var #potion2c 2379131
//------판매버튼 -----
var #sellx 65
var #selly 830
//------개별판매버튼 -----
var #onesellx 240
var #oneselly 745
//------등급이하판매버튼 (판매후 창닫힘)------
var #classsellx 240
var #classselly 485
//-----창고 나가기----
var #roomoutx 95
var #roomouty 60
//-----대기실나가기-----
var #mapoutx 95
var #mapouty 60
//////////////////////////////////////////
//////////////////////////////////////////
:start
sleep #loading
//------인벤부족메세지 확인------
getcolor #color #invencx #invency
sleep #getdeley
if #color == #invenc
touchPress 0 #invenx #inveny
sleep #deleya
goto :inven
endif
:inven
//------창고가기------
touchPress 0 #storageinx #storageiny
sleep #loading
sleep #ifdeley
//------아이템정리------
touchPress 0 #restitemx #restitemy
sleep #deleya
//------첫번째아이템터치------
touchPress 0 #firstx #firsty
sleep #deleye
:sell
//------첫번째아이템 빨간색일경우 개별판매------
getcolor #color #firstitemcx #firstitemcy
sleep #getdeley
if #color == #firstredc
touchPress 0 #sellx #selly
sleep #deleya
touchPress 0 #onesellx #oneselly
sleep #itemcolor
//------아이템정리(빨간색 아이템 보관시 물약대비용)------
//touchPress 0 #restitemx #restitemy
//sleep #deleya
goto :sell
endif
:sell2
//------첫번째아이템 주황색일 경우 개별판매------
getcolor #color #firstitemcx #firstitemcy
sleep #getdeley
if #color == #firstorangec
touchPress 0 #sellx #selly
sleep #deleya
touchPress 0 #onesellx #oneselly
sleep #itemcolor
goto :sell2
endif
//------첫번째아이템 보라색, 파란색, 녹색,흰색일 경우 등급이하 판매 (물약제외)------
getcolor #color #firstitemcx #firstitemcy
sleep #getdeley
if #color == #firstpouplec or #color == #firstbluec or #color == #firstgreenc or #color == #firstwhitec
touchPress 0 #sellx #selly
sleep #deleya
touchPress 0 #classsellx #classselly
sleep #selldeley
endif
//------아이템정리------
touchPress 0 #restitemx #restitemy
sleep #deleya
//------첫번째아이템터치------
touchPress 0 #firstx #firsty
sleep #deleye
:potion
//------첫번째아이템 포션(소)일 경우 개별판매------
getcolor #color #potioncx #potioncy
sleep #getdeley
if #color == #potionc
touchPress 0 #sellx #selly
sleep #itemcolor
touchPress 0 #onesellx #oneselly
sleep #itemcolor
goto :potion
endif
//------첫번째아이템 포션(중)일 경우 개별판매------
getcolor #color #potion2cx #potion2cy
sleep #getdeley
if #color == #potion2c
touchPress 0 #sellx #selly
sleep #itemcolor
touchPress 0 #onesellx #oneselly
sleep #itemcolor
goto :potion
endif
sleep #itemcolor
//------창고나가기------
touchPress 0 #roomoutx #roomouty
sleep #deleyb
//-----던전입장------
goto :hunting
endif
:end
참신하네요?