Jump to content

Recommended Posts

Posted

I made a basic script for a clicker but it seems a bit wrong i want it to click on 1 place as much times as i want it could someone please point out my mistakes or correct them for me. thanx

MouseClick("left",130,234);left clicks at the coordinates x=123,y=234

While 1

mouseclick(5)

Wend

Global $Paused

HotKeySet("{PAUSE}", "TogglePause")

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

Posted

I made a basic script for a clicker but it seems a bit wrong i want it to click on 1 place as much times as i want it could someone please point out my mistakes or correct them for me. thanx

MouseClick("left",130,234);left clicks at the coordinates x=123,y=234

While 1

mouseclick(5)

Wend

Global $Paused

HotKeySet("{PAUSE}", "TogglePause")

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

Try

Global $Paused
HotKeySet("{PAUSE}", "TogglePause")
HotKeySet("{ESC}", "Terminate")

While 1
MouseClick("left", 130, 234, 5)
Wend

Func TogglePause()
    $Paused = NOT $Paused
    While $Paused
        sleep(100)
        ToolTip('Script is "Paused"',0,0)
    WEnd
    ToolTip("")
EndFunc

Func Terminate()
    Exit 0
EndFunc


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

Posted (edited)

thanx alot BigDod it works its really gr8.

Try

Global $Paused
HotKeySet("{PAUSE}", "TogglePause")
HotKeySet("{ESC}", "Terminate")

While 1
MouseClick("left", 130, 234, 5)
Wend

Func TogglePause()
    $Paused = NOT $Paused
    While $Paused
        sleep(100)
        ToolTip('Script is "Paused"',0,0)
    WEnd
    ToolTip("")
EndFunc

Func Terminate()
    Exit 0
EndFunc
Now could someone advise me is it possible for a program to regognise an image like the one shown here http://www.kingsofchaos.com/recruit.php?uniqid=4gv77477 and also regognise the image.

Someone told me it is impossible, someone else told me its possible can someone tell me if it is possible or impossible am i just shooting in the dark for nothing.

Thanx, Tang

Edited by tang

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
  • Recently Browsing   0 members

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