Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

Simple Mouse Click script


  • Please log in to reply
4 replies to this topic
RedScythe1985
  • Members
  • 3 posts
  • Last active: Mar 23 2012 07:01 AM
  • Joined: 23 Mar 2012
I'm sorry if this was asked already but I'll appreciate any help I can get.

What I am looking for is a script that starts when you click F1, its function is:

Mouse Left Click - Wait 2 seconds
Mouse Left Click - Wait 600 seconds (10 minutes)
Mouse Left Click - Wait 2 seconds
Mouse Left Click - Wait 600 seconds (10 minutes)
Mouse Left Click - Wait 2 seconds
Mouse Left Click - Wait 600 seconds (10 minutes)
[Loop basically]

Script is disabled by pressing F2.

Thanking whoever helps in advance.

Alpha Bravo
  • Members
  • 1687 posts
  • Last active: Nov 07 2015 03:06 PM
  • Joined: 01 Sep 2011
Please read the following and try to come up with something. Hotkeys, Click, Sleep, Loop and Break

RedScythe1985
  • Members
  • 3 posts
  • Last active: Mar 23 2012 07:01 AM
  • Joined: 23 Mar 2012
Thanks for the reply I guess Alpha.

Tried reading those tuts and trying to apply what I need. Came up with this:

F2::Reload
$F1::
Loop
{
send {Click}
sleep 2000
send {Click}
sleep 600000
}
return


Sadly it didn't work. What did I do wrong?

Spawnova
  • Members
  • 279 posts
  • Last active: Dec 22 2015 03:07 AM
  • Joined: 29 Jun 2011
Loop
{
click
sleep 2000
click
sleep 600000
}
return

RedScythe1985
  • Members
  • 3 posts
  • Last active: Mar 23 2012 07:01 AM
  • Joined: 23 Mar 2012
Works perfectly. Thanks for your help ^^