Bit of help with a pixel search red dot shotbot

09/13/2013 05:55 fire99966#1
Hey all! I've been using Autoit for quite some time now and I figured that this program would be perfect for something like this so I made a forum acc to ask for some help.

I know some basic programming in java, turing and assembly language. However Im not quite familiar with this program so I have no clue where to start :S


Firefall Shotbot
-A script that sends a left click when the dot crosshair turns 'red', sleep, searches for the red pixels again.
-On/Off Toggle (On the bottom of the priority list).

Is anyone able to throw together a script to do this?

Here's an example of the crosshair turning red when detecting an enemy:

No enemy detected.
[Only registered and activated users can see links. Click Here To Register...]


Enemy Detected within the dot (turns red).
[Only registered and activated users can see links. Click Here To Register...]


I tried to search around for some existing crosshair shotbot scripts so I can throw one together but I can't seem to find any.
Any help is appreciated :) Thanks in advanced!

For those if you curious, the game is called Firefall :)

I know there are a few players that are looking for AutoIt aimbots but this is almost as good! All support will be acknowledged :)
>


This is what I have so far.
wantedColor = 000000
crossX = 721
crossY = 451
Loop
{
PixelGetColor, crosshairColor, %crossX%, %crossY%
if %ErrorLevel% = 1
click
sleep 200
}



My screen resolution is 1440x900

wantedColor = 000000
crossX = 721
crossY = 451
Loop
{
PixelGetColor, crosshairColor, %crossX%, %crossY%
if %ErrorLevel% = 1
click
sleep 200
}



My screen resolution is 1440x900