Jump to content

Mouse moving problem


Recommended Posts

So i tried someones source to do aimbot but ingame my mouse just aims on ground or in air when i see yellow.

But it does work on windows (tried on paint) aims yellow color and clicks it but ingame it just goes crazy.

Help pl0x heres source of the bot:

Global $Aimbot = 0
Global $Pause = 1

Opt("MouseCoordMode", 0)
Opt("PixelCoordMode", 0)
Opt("MouseClickDelay", 0)
Opt("MouseClickDownDelay", 0)

HotKeySet("{F7}", "Aimbotoff" )
HotKeySet("{F8}", "Aimboton" )

If $Pause = 1 Then
    While 1
        Sleep(1000)
    WEnd
EndIf


Func Aimbotoff()
    $Aimbot = 0
    $Pasue = 1
EndFunc

Func Aimboton()
$Pause = 0
$Aimbot = 1
While 1
    If $Aimbot = 1 Then
            $coord = PixelSearch( 393, 293, 401, 301, 0xFFFF00, 0.1, 0.1 )
            If IsArray($coord) = 1 Then
                MouseClick('left', $coord[0], $coord[1], 1, 0)
                Sleep(5)
            EndIf
    EndIf
WEnd 
EndFunc
Link to comment
Share on other sites

I have had a similar issue in another game where the command to move the mouse is exagerated.

in a screen that is set to 1280x1024, moving from position 0,0 to 3,3 is the equiv. of maybe 50,50? not sure if this is the same type of issue?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...