Jump to content

DsBotter

Members
  • Posts

    5
  • Joined

  • Last visited

DsBotter's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. I don't understand this command and how to put it into a script properly.. I don't understand top left right bottom.. I'm trying to put the HEX # in for that color, and then I want it to find that color and send the mouse to it and click on it. How can I do this? Help file on auto it is no help at all, I don't understand this so I obviously didn't understand any of the commands there.
  2. On this game I play, there is a mining feature. You take a quest from a mob, and then walk around finding fossils on the ground, the quest lasts for 15 minutes, the fossils only appear while the quest is going. I am trying to make a bot, that automatically clicks on the mob, accepts the quest, walks around for 15 minutes, then goes back to the mob, clicks on it, accepts the quest again and repeats and repeats. It seems pretty easy, pretty much just write the first part of the bot and then copy and paste right? I just don't understand pixel check. What I'm trying to write the bot to do is, press hotkeys corresponding with the game to move around, after clicking on the quest mob and accepting the quest, and then going back after 15 minutes and taking the quest again and again and again. Here is a screenshot of the game. http://imageshack.us/g/211/autoit1.png/ 1st Screenshot. The mob that needs to be clicked is the brown thing with the yellow ?. 2nd Screenshot, after clicking that, this pops up, i then need a script to tell the bot to click on this. 3rd screenshot, after clicking that, this pops up, i need a script to tell the bot to click accept After that the quest is started and lasts 15 minutes, i then walk around for 15 minutes, come back and restart the quest. Any advice or help please? I am not trying to be a begger or anything, I would really like to learn this and become good. Thanks a lot guys and girls.
  3. How can i enter that command into my script and get it to look for that very color in that area and click on it? I just don't understand this, i have tried and read tutorials but i just don't get it.
  4. >>>> Window <<<< Title: DarkSwords (v 1.2.4.1) Class: TMainForm Position: 244, 0 Size: 717, 729 Style: 0x16CE0000 ExStyle: 0x00010100 Handle: 0x00000000003C0170 >>>> Control <<<< Class: TdsPanel Instance: 2 ClassnameNN: TdsPanel2 Name: Advanced (Class): [CLASS:TdsPanel; INSTANCE:2] ID: 1770324 Text: Position: 0, 0 Size: 702, 414 ControlClick Coords: 155, 10 Style: 0x56000000 ExStyle: 0x00010000 Handle: 0x00000000001B0354 >>>> Mouse <<<< Position: 407, 40 Cursor ID: 0 Color: 0xEBFF0B ^ There is the finder tool information on the spot were i need the mouse to click for the pixel check thing.
  5. Hey guys, I am new to this and only know a few things so hard. My problem is really simple to other people with knowledge of doing this, I would assume. I am making a mining bot for this 2d game.. It's very simple, i got the movements down, and i got the mouse were it needs to go to start a quest, but sometimes the mob it needs to click on isn't at the same exact part of the client were it was before, it might be under a picture of another mob, and it will attack that mob instead of clicking the quest mob and getting a quest. Can someone help me out with pixelsearch so that i can select this mob only? And here is my script so far. WinMove("Dark swords", "", 0,0) < Moves client top left $coord = PixelSearch( 0, 0, 155, 9, 0xF0F857 ) < need help mouseclick ("") sleep(4000) mousemove(163,39) < Moves mouse to quest mob MouseClick ("") < clicks quest mob, opens up new box showing quests you can take sleep(2000) mousemove(678,297) goes to the mining quest mouseclick("") clicks mining quest, opens up new box with accept/deny sleep(6000) mousemove(623,533) moves mouse to accept mouseclick("") clicks accept sleep(6000) Send("{RIGHT}") Sleep(6000) Send("{RIGHT}") sleep(6000) Send("{RIGHT}") sleep(6000) Send("{RIGHT}") sleep(6000) Send("{RIGHT}") sleep(6000) Send("{LEFT}") Sleep(6000) Send("{LEFT}") sleep(6000) Send("{LEFT}") sleep(6000) Send("{LEFT}") sleep(6000) Send("{LEFT}") I have all the movements down, i just need the bot to do a pixelcheck, and once it finds the color i want, to click it.
×
×
  • Create New...