Need your ideas/help on making autominer

11/05/2008 21:46 V3n4t0r#1
Hey Guys!
So... I have started to make my 1st hack-autominer-thing with AutoIt which is supposed to go to the mine, wait there for like 20 minutes and then go to the market change it into vouchers (any kind needed) and loop it, so in the end you would get a house permit... My wild guess is that this process will take about 10-12 hours (might be less, might be more) anyways... rite now i am stuck on the following: You know when u go to the mine (unlike in the old days :P) the guy asks u a question to get in there... well that's the problem... how the hell is the program supposed to read the question and know the right answer?!?!? Anyways... if u guys got any ideas on how to make that part work, i would really appreciate ANY ideas :)

Cheers,
Venator
11/06/2008 01:53 Evan Lim#2
V3n4t0r@
TQ did a good job on preventing mine bots with that npc
i gave up making one because of that
read memory address, winspy, OCRscan all doesnt work, just in case u want to try
11/06/2008 02:16 UPSman2#3
its not that hard, just send a "controlclick" to the childwindow and use memory manipulation to select a answer, like #1, and then just spam it till it's right

i did it once, but f-disked PC so no example... sorry ;(

^ but thats for background, for foreground it's probably easier... unless they changed it to where you can't spam a answer till it's right
11/06/2008 02:35 asdf123456#4
yea just add cntrl click and click till right answer......still works live so shud work in bot form:)
11/06/2008 10:18 V3n4t0r#5
well here's the thing... if i spam the answer and when i actually get it right then it will click on my screen (change the location of the character) and then it will be frigging hard to get the right coordinates...(get through the teleport if it messes up and goes too much to the left/right or if the character goes too far from the teleport... this thing needs exact calculations which will take lots of time) I think i pretty much know how to fix this though but ye...
11/06/2008 15:36 Azothoras#6
Quote:
Originally Posted by V3n4t0r View Post
well here's the thing... if i spam the answer and when i actually get it right then it will click on my screen (change the location of the character) and then it will be frigging hard to get the right coordinates...(get through the teleport if it messes up and goes too much to the left/right or if the character goes too far from the teleport... this thing needs exact calculations which will take lots of time) I think i pretty much know how to fix this though but ye...
It's easy to get the char right again if it moves out of order... Just read the x/y coord with auto it... and there you can also read the mapID and by that the bot can know if it's in TC/market/mine or wherever it is ;)
11/06/2008 15:59 Evan Lim#7
V3n4t0r@
dont think too much
just try to make it inside mine cave first
then figure out where to go
what happens when get pk
how do i detect full bag of ores or ores+gems
how do i walk through crowded market
how can i click the npc to exchange as sometimes the message pop out has delay
how can i get to wh and unload the gems/ores
11/06/2008 19:46 V3n4t0r#8
Quote:
Originally Posted by Evan Lim View Post
V3n4t0r@
dont think too much
just try to make it inside mine cave first
then figure out where to go
what happens when get pk
how do i detect full bag of ores or ores+gems
how do i walk through crowded market
how can i click the npc to exchange as sometimes the message pop out has delay
how can i get to wh and unload the gems/ores
ok good point... well
- hopefully u wont get pked :P
- i will put the sleep command for 20 minutes or so (still need to find the average mining time)
- i will make it go around at market, in places that ant so populated
- i will put sleep timer for 1.5 seconds
- warehouse is hard to get to in market so it will just have to be in the city ur mining at probably preferably Phoenix Castle

BTW THANX U GUYS I AM STARTING TO GET A GENERAL IDEA OF HOW TO DO THIS :) Just keep commenting till some1 smarter than me (probably every1 in this area :P) comes up with something brilliant to make this work :) hopefully done by next weekend or so
11/28/2008 06:55 Ulfius#9
I have a bot that enters the mine by answering the right question. Here's how I did it:

There's about 10-12 proverbs, so I did a screen grab of each one and cut out the key text pixels for each right answer. Then I can just search the screen for each image and click in the area of the right answer. I check the AreaID to see if I entered the mine or happened to click on a wrong answer.

AutoHotkey has a nice function for scanning the screen for a image (ImageSearch).