xrazx
New Member
Posts: 11
|
Post by xrazx on Aug 23, 2016 14:23:51 GMT
Hello Everyone, I have made a script to automatically clear dungeons in pocket maplestory. Though it isn't all that complex, it does the job done. Current Features: - OCR Mirror count to check for mirrors
- Auto buy mirrors when under 85
- Clears dungeons for easy special stone collection and rare farming
Plans:
- Optimize code for faster detection (runs on 2k screen)
- User interface to detect advance dungeons
- Possibility auto use skills
- Reconnect Button
Links: - Script
- Video (I had to block out usernames for the account I was borrowing. I hope the video is long enough to demonstrate what it can do. Tracking the username took way too long.)
-xRaZx
|
|
cloudwp
New Member
Stay High
Posts: 23
|
Post by cloudwp on Aug 23, 2016 17:17:30 GMT
wow thank u very much :DD i was trying to do this but i didnt get it to run works great when u add the auto skill use and advanced dungeon detection it will be perfect so found 2 problems if the dungeon isnt completed after the time it will crash and it doesnt reconnect when iam in the dungeon
|
|
xrazx
New Member
Posts: 11
|
Post by xrazx on Aug 23, 2016 17:56:44 GMT
Haha, sorry haven't got the video out! Still trying to blur out my name. But yeah, I'll fix it and try to get the user interface out so you can set the time. Curious to know, can you tell me where and when it crashed? -xRaZx
|
|
cloudwp
New Member
Stay High
Posts: 23
|
Post by cloudwp on Aug 23, 2016 18:21:31 GMT
i think when the 10 mins elapse then it craches cause waitclick does generate an exception ( but im not sure about this >.<)
|
|
xrazx
New Member
Posts: 11
|
Post by xrazx on Aug 23, 2016 18:28:10 GMT
Nope you are right with that. Atm the script is only allowed to run 10 min dungeon. I'm working on having to set that yourself! Also, I'll look into ways to reconnect.
-xRaZx
|
|
cloudwp
New Member
Stay High
Posts: 23
|
Post by cloudwp on Aug 23, 2016 19:52:35 GMT
so how about using something like this
function battle()
if exist(pattern("Reconnect.png"), 10) then wait(1) click("Reconnect.png") wait(5) click("Autocombat.png") elseif exist(pattern("Confirm.png"), 10) then wait(1) click("Confirm.png")
else battle() end end end
dont know if everething is correct ^^
|
|
xrazx
New Member
Posts: 11
|
Post by xrazx on Aug 23, 2016 20:17:05 GMT
The only problem with that is that the reconnect button could pop up anytime. So instead of using the waitclick like I am doing right now, I would have to make a constant loop to check different cases.
-xRaZx
|
|
cloudwp
New Member
Stay High
Posts: 23
|
Post by cloudwp on Aug 23, 2016 20:20:44 GMT
k so i found this ^^
while (existsClick("Reconnect.png")) do end
|
|
|
Post by AnkuLua on Aug 23, 2016 23:57:44 GMT
Great job.
Two pro codes have been PM to you.
|
|