Page 1 of 1

need script for runescape

Posted: 07 Sep 2017, 11:51
by pker123
HI ive been trying to make a script that when i click esc one mouse click =2 clicks then when im done i click escape again and it turns off but nothing was working someone help me please ;d

Re: need script for runescape

Posted: 09 Sep 2017, 09:57
by Reloaded
Hi :)

I have what you want ;)

Code: Select all

LButton::
{
Sleep, 50
Click, %YPos% %XPos%
Click, %YPos% %XPos%
}
return

Esc::
   Suspend, Permit
   SusToggle := !SusToggle
   If (SusToggle)
   {   Suspend, On
   }
   Else
   {   Suspend Off
   }
   Return

Re: need script for runescape

Posted: 16 Sep 2017, 07:59
by pker123
is it possible to make the double click faster?

Re: need script for runescape

Posted: 16 Sep 2017, 07:59
by pker123
is it possible to make the double click faster?

Re: need script for runescape

Posted: 20 Sep 2017, 12:18
by Reloaded
yup

Code: Select all

SetBatchLines, -1
LButton::
{
Sleep, 50
Click, %YPos% %XPos%
Click, %YPos% %XPos%
}
return

Esc::
   Suspend, Permit
   SusToggle := !SusToggle
   If (SusToggle)
   {   Suspend, On
   }
   Else
   {   Suspend Off
   }
   Return