Jump to content

mouse move circle pause and click


trung
 Share

Recommended Posts

HotKeySet ("{ESC}", "quitme")

; command line param: beep (0 = off, 1 = on)

Global $MakeNoise = 0

If $CmdLine[0] = 0 Then

$MakeNoise = 0

ElseIf $CmdLine[1] = 1 Then

$MakeNoise = 1

EndIf

Global Const $PI = 3.1415926535897932384626433832795

Global $Width = @DesktopWidth, $Height = @DesktopHeight, $MidX = $Width/2, $MidY = $Height/2

Global $Radius = 5

Global $Step = $PI/6

ToolTip ("Mouse Mover!!", $MidX, $MidY)

While 1

Do

For $angle = 0 To 2*$PI Step $Step

$Radius += 5

MouseMove ($MidX - (Cos ($angle) * $Radius), $MidY - (Sin ($angle) * $Radius), 0)

If $MakeNoise = 1 Then

Beep ($Radius*5, 2)

EndIf

Next

Until $Radius >= $MidY

Do

For $angle = 0 To 2*$PI Step $Step

$Radius -= 5

MouseMove ($MidX - (Cos ($angle) * $Radius), $MidY - (Sin ($angle) * $Radius), 0)

If $MakeNoise = 1 Then

Beep ($Radius*5, 2)

EndIf

Next

Until $Radius <= 5

WEnd

Func quitme()

Exit

EndFunc

hey th.meger ur code is soo cool

but the problem is

my game monster's name doesnt show up intil the mouse is over the monster

so i want the mouse to move like in ur script but stop wenever it finds a pixel showing up on the screen

and pause the mouse movement and click

the start the movement of mouse over or continue ether one is kool

pixel i need is

0xFFFF4C

the game is supreme destiny

Edited by trung
Link to comment
Share on other sites

HI,

quick and very dirty but maybe it helps you to start.

HotKeySet("{ESC}", "quitme")
HotKeySet("1", "MouseSearch")
HotKeySet("2", "_stop")
AdlibEnable("check", 10)
Global Const $PI = 3.1415926535897932384626433832795
Global $Width = @DesktopWidth, $Height = @DesktopHeight, $MidX = $Width / 2, $MidY = $Height / 2
Global $Radius = 5
Global $Step = $PI / 6
Global $stop = 1
Global $coord = ""
ToolTip("Mouse Mover!!", $MidX, $MidY)
MouseSearch()
Func MouseSearch()
    While 1
        Do
            For $angle = 0 To 2 * $PI Step $Step
                $Radius += 5
                MouseMove($MidX - (Cos($angle) * $Radius), $MidY - (Sin($angle) * $Radius), 0)
            Next
        Until $Radius >= $MidY
        Do
            For $angle = 0 To 2 * $PI Step $Step
                $Radius -= 5
                MouseMove($MidX - (Cos($angle) * $Radius), $MidY - (Sin($angle) * $Radius), 0)
            Next
        Until $Radius <= 5
        If $stop <> 1 Then ExitLoop
    WEnd
EndFunc   ;==>MouseSearch

Func check()
    $xy = MouseGetPos()
    Global $coord = PixelSearch($xy[0] - 50, $xy[1] - 50, $xy[0] + 50, $xy[1] + 50, 0xFFFF4C)
    If @error <> 1 Then
        _stop()
        MouseClick("left", $coord[0], $coord[1], 1)
    EndIf
EndFunc   ;==>check

Func quitme()
    Exit
EndFunc   ;==>quitme

Func _stop()
    $stop = 0
    While 1
        Sleep(100)
    WEnd
EndFunc   ;==>_stop

So long,

Mega

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Link to comment
Share on other sites

ooo

cz the bot isnt stopping wen it sees the pixel nor is it left clicking

wonder wut rong

paulie on ur script the bot clicked and everything but i like the movement in this bot :P

now i cant get it to click

Edited by trung
Link to comment
Share on other sites

paulie on ur script the bot clicked and everything but i like the movement in this bot :P

now i cant get it to click

okay, now your just getting picky :nuke:

HotKeySet("{ESC}", "quitme")
HotKeySet("1", "MouseSearch")
HotKeySet("2", "_stop")
Global Const $PI = 3.1415926535897932384626433832795
Global $Width = @DesktopWidth, $Height = @DesktopHeight, $MidX = $Width / 2, $MidY = $Height / 2
Global $Radius = 5
Global $Step = $PI / 6
Global $stop = 1
Global $coord = ""
ToolTip("Mouse Mover!!", $MidX, $MidY)
MouseSearch()
Func MouseSearch()
    While 1
        Do
            For $angle = 0 To 2 * $PI Step $Step
                $Radius += 5
                MouseMove($MidX - (Cos($angle) * $Radius), $MidY - (Sin($angle) * $Radius), 0)
                $xy = MouseGetPos()
                Global $coord = PixelSearch($xy[0] - 50, $xy[1] - 50, $xy[0] + 50, $xy[1] + 50, 0xFFFF4C)
                If @error <> 1 Then         
                        MouseClick("left", $coord[0], $coord[1], 1)
                EndIf            
            Next
        Until $Radius >= $MidY
        Do
            For $angle = 0 To 2 * $PI Step $Step
                $Radius -= 5
                MouseMove($MidX - (Cos($angle) * $Radius), $MidY - (Sin($angle) * $Radius), 0)
                $xy = MouseGetPos()
                Global $coord = PixelSearch($xy[0] - 50, $xy[1] - 50, $xy[0] + 50, $xy[1] + 50, 0xFFFF4C)
                If @error <> 1 Then
                    MouseClick("left", $coord[0], $coord[1], 1)
                EndIf
            Next
        Until $Radius <= 5
        If $stop <> 1 Then ExitLoop
    WEnd
EndFunc   ;==>MouseSearch

Func quitme()
    Exit
EndFunc   ;==>quitme

Func _stop()
    $stop = 0
    While 1
        Sleep(100)
    WEnd
EndFunc   ;==>_stop

This is a little slower, but moves in a circle and does a pixelsearch

Edited by Paulie
Link to comment
Share on other sites

  • 4 months later...

This may be off topic, but what's up with everyone wanting a bot? I see a new one of these like everyday! :D

EDIT: sorry for gravedigging if I did, mistake :P

Edited by BALA
[font="Comic Sans MS"]BA-LA[/font]http://ba-la.110mb.comJoin my community, CLICK HEREAlternative links to my site:http://www.ba-la.tkhttp://www.ba-la.co.nrContact me if you would like to help with some of my projects: joeythepirate@gmail.com
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...