Thread: Aimbot help

Results 1 to 4 of 4
  1. #1
    gwentravolta's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    A cardboard Box
    Posts
    311
    Reputation
    9
    Thanks
    46

    Aimbot help

    There was an aimbot written in AutoIt v3 on the forums the other day. Compile the following text into a a3x file w/ AutoIt Script editor w/ proper variables changed. Read my second post for error info


    Code:
    ; pixel search bot example
    ; include the misc UDF library
    ; UDF = user defined Function
    #include <Misc.au3>
    
    ;----- set the hotkeys ------;
    HotKeySet("{f3}", "chosecolor")
    ; set the escape button to
    ; the exit function
    HotKeySet("{esc}", "_exit")
    HotKeySet("{f5}", "start")
    HotKeySet("{f6}", "stop")
    
    ; declare the variable color to be
    ; used globaly
    Global $color
    ; declare ON globaly and set it
    ; to false(off)
    Global $ON = False
    
    
    
    
    While 1
    	Sleep(30); dont fuck the CPU
    	; if the on is set to true
    	If $ON = True Then
    		; this is the pixel search function
    		; the last parameter (40) is the
    		; shade variation
    		; the other parameters are the
    		; pixel search area
    		; change them so they fits your needs :)
    		$coord = PixelSearch(200, 200, 1240, 700, $color, 40)
    		; if the return of coord is an array
    		; which means a pixel was found
    		If IsArray($coord) = 1 Then
    			; left click on the pixel
    			MouseMove($coord[0],$coord[1])
    			MouseClick("left")
    		EndIf
    	EndIf
    WEnd
    
    
    
    
    
    
    
    
    ; chose color function
    Func chosecolor()
    	; this will display a color chose window
    	; the chosen color will be stored in the
    	; variable $color
    	$color = _ChooseColor(2, 0x0080C0, 2, "")
    	MsgBox(0,'',$color)
    EndFunc   ;==>chosecolor
    
    
    ; func extit
    Func _exit()
    ; simply exits the script
    Exit
    EndFunc   ;==>_exit
    
    ;start func
    Func start()
    ; set the variable to true
    $ON = True
    EndFunc   ;==>start
    
    ;start func
    Func stop()
    ; set the variable false
    $ON = False
    EndFunc   ;==>stop
    The Search variables can be changed (i did my monitor dementions w/ a 200px barrier

    Add more MouseClick("left")'s as needed

    Please and Thanks Guys
    Last edited by gwentravolta; 07-05-2009 at 01:16 AM.

  2. #2
    BARON's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    2,303
    Reputation
    11
    Thanks
    515
    Needs a bypass.
    and wassup dave

  3. #3
    gwentravolta's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    A cardboard Box
    Posts
    311
    Reputation
    9
    Thanks
    46
    Ok. After compiling the program into a a3x instead of exe, i was able to run it, but while running in the game it just makes you point at the sky and shoot no matter what (any color). possibly an anti-aimbot part of combat arms?
    Last edited by gwentravolta; 07-05-2009 at 01:13 AM.

  4. #4
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,203
    My Mood
    Flirty
    Quote Originally Posted by gwentravolta View Post
    Ok. After compiling the program into a a3x instead of exe, i was able to run it, but while running in the game it just makes you point at the sky and shoot no matter what (any color). possibly an anti-aimbot part of combat arms?
    Meh theres noway combat arms can patch against this... its all client side >_> its just a pixel bot... scans for colors and auto aims....has nothing to do with Combat arms....In fact it should work for any game that u have some decent chams on....
    But pixelbots arent really as effective as actual aimbits... I think u need D3D to program that type of stuff... and that does actually interact with combat arms codes, so it can be patched but... it s a Much more effective aimbot xD

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

Similar Threads

  1. aimbot help
    By AEGAWREgaergaergawrgr in forum Combat Arms Europe Hacks
    Replies: 7
    Last Post: 09-08-2009, 08:18 AM
  2. Drunken Cheetah Aimbot Help?
    By leadskin in forum Combat Arms Hacks & Cheats
    Replies: 3
    Last Post: 08-25-2009, 03:56 PM
  3. I NEED AIMBOT HELP...
    By THANOS in forum CrossFire Hacks & Cheats
    Replies: 2
    Last Post: 07-10-2009, 10:57 AM
  4. Aimbot Help
    By pika777 in forum Suggestions, Requests & General Help
    Replies: 1
    Last Post: 10-15-2008, 04:32 PM
  5. Aimbot Help
    By JTLOBAMHSK in forum General Game Hacking
    Replies: 0
    Last Post: 06-07-2006, 03:21 PM

Tags for this Thread