Jump to content

akifennec

Members
  • Posts

    9
  • Joined

  • Last visited

Everything posted by akifennec

  1. Had to run game client in vmware than it worked like a charm
  2. ok well thanks for the help maybe someone else might know away
  3. when i use autoit window info there is nothing for the control id is there another way to find it
  4. yeah that fixed the syntax error i missed understood the example problem is that it still does nothing in the client window
  5. my control click keeps getting a syntax error ControlClick("Mabinogi : Ancient Secrets of Irinid", "",$cordinates[0], $cordinates[1]) Is this written right? the error is the title but i dont see how its wrong being that i got it off of AutoIt Window Info
  6. Ok ill try it and see what i get thanks for the help so far
  7. Ok so i made my code and it kinda works :/ it works every where but the program i want it to run in which is a game client any ideas HotKeySet("{F9}","FightOnOff") HotKeySet("{F10}","ExitApp") Tooltip("F9 = Fight, F10 = Exit bot", 0, 0) Dim $fight = False Func FightOnOff() If $fight = False Then $fight = True ToolTip("Fighting",0,0) Else $fight = False Tooltip("F9 = Fight, F10 = Exit bot", 0, 0) EndIf EndFunc Func ExitApp() Exit EndFunc While True If $fight = True Then Dim $cordinates = PixelSearch( 0, 0, @DesktopWidth, @DesktopHeight, 0x030200) If Not @error Then MouseClick( "left", $cordinates[0], $cordinates[1], 1, 0) EndIf EndIf Sleep(500) WEnd
  8. thanks for the reply ill look into all of what you said the sleep part was a typo i didn't notice till you posted that
  9. Hi Ive just found this program earlier today and after looking for a few post and reading some tuts, Im still have some problems making this bot that 1. finds the pixel or shade of pixel with in a certain degree ((not sure how to find the other pixels)) 2. than left click ((not sure what the command is)) 3. hold lctrl and left click 3. sleep 1000 (10 sec) ((i can do this)) 4. than loops so far ill i can do is find the one pixel and that lctrl is Send (“{LCTRL}”) Can someone please nudge me in the right direction
×
×
  • Create New...