Jump to content

qwqwwqwdwd

Members
  • Posts

    16
  • Joined

  • Last visited

Profile Information

  • Location
    NEW york

qwqwwqwdwd's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. read the helpfile
  2. Dim $Loop = 0 Do $PixelSearch = PixelSearch(xx, yy, lxx, kyy, 0xFFD767) If Not $PixelSearch = 1 Then ; write ur command here if it dectect that color EndIf Until $Loop = 1
  3. yes it a game bots
  4. im a currently using autoit 3 and writing script.but there is a slight problem . when i wanted to run my script(turned to .exe )on a program, there a program that block it from using it. so is there a way that make it undetect? do i need a .dll? cuz i only have the .exe .please gave me some advice
  5. Do ;If _IsPressed(11) Then; the control key $coord = PixelSearch(0, 0, 800, 600, 0x00FFFF,10, 2) If Not @error = 1 Then MouseClick("left", $coord[0], $coord[1], 1 , 0) send( "Left" ) Sleep( "5000" ) ;EndIf EndIf Until;_IsPressed(20); The Spacebar key (20) ok when it read" send( "Left" )" it write the word ,not the key arrow down button. why?
  6. Dim $Loop = 0 Do $PixelSearch = PixelSearch($tlx, $ty, $kx, $by, "0xXdXdXd") If Not $PixelSearch = 1 Then Send ("{NUMPAD9}") Sleep(500) EndIf Until $Loop = 1;loop may not be 1, otherwise this loop will exit i want to make this script keep runing untill wen i want to stop it.any suggestion?
  7. so can u dectect more than 1 pixel?
  8. is there a way not by dectectin pixel but by dectecting the object that look almost the same?and also can i dectect more than 1 pixel?if anyone know please help me out. thx
  9. $coord = PixelSearch( 0, 1, 1076, 691, 0xa62300 ) If @error=0 Then MouseClick("right", $coord[0], $coord[1], 1, 0) Send( "Down" ) Sleep( 5000 ) Exit how can i make this keep repeating in every 2 minute? please help
  10. MAYBE UR right cuz im a newbie i just start learning scripitng 2 days ago... lol
  11. $coord = PixelSearch( 0, 0, 20, 300, 0x673D17 ) If Not @error Then MouseClick("left", $coord[0], $coord[1], 1, 0) Sleep( 2000 ) Send( "{NUMPAD1}" ) AutoItSetOption ( "sendkeydowndelay", 100) EndIf I want this script to whenever it detect the pixel in certain range , mouse will move to the pixel and left click and then using Numperpad 1 . Is my script right? please give me some advise.
  12. ok first please agnore my name XD i want to make a statement in the script like if <statement> is true then go to the next <(statement)> and also if the <(statement)> is true then to the next statement . can anyone help me what kind of statement i need? thx
  13. is this the right command?i want it to detect a pixel using Hex code and on the (movement/attack code) i want the mouse move to that pixel and left click on it. anyone know wat codes i need to put in as a replace in (movement/attack code)? please help
  14. Can anyone give me an example of a script wen a monster was dectect(with pixel at full screen) the mouse will move to the monster and left click on it and using keyboard to attk.
×
×
  • Create New...