Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

OSRS Prayer Flicking Bot or Autoclick Bot

Joined
Sep 9, 2017
Messages
4
Hey guys, i tried searching the site to find a bot that could prayer flick but I can't seem to find one. Can someone send me the link?
 
cuppa.drink(java);
Joined
Mar 13, 2018
Messages
6,662
Here's an AHK script I found on another thread, no idea if it works or not, I didn't test it.

Code:
;Automatically prayer flick every monster! Just enter the speed of the monster's attack and flick away!
;Press 1 to start flicking.
;Press and Hold 2 to stop flicking.
;Press 3 - 8 to set the attack speed of the monster you are fighting

interval := 3000

AutoFlick() {
global interval
Loop
{
if GetKeyState("2")
Break
Random, sleep1, 600, 625
Random, sleep2, 600, 625

Click
Sleep %sleep1%
Click
Sleep %sleep2%
Sleep interval - (sleep1+sleep2)
}
}

1::AutoFlick()
3::global interval:=1800
4::global interval:=2400
5::global interval:=3000
6::global interval:=3600
7::global interval:=4200
8::global interval:=1200

ESC::suspend
 
Joined
Sep 9, 2017
Messages
4
Here's an AHK script I found on another thread, no idea if it works or not, I didn't test it.

Code:
;Automatically prayer flick every monster! Just enter the speed of the monster's attack and flick away!
;Press 1 to start flicking.
;Press and Hold 2 to stop flicking.
;Press 3 - 8 to set the attack speed of the monster you are fighting

interval := 3000

AutoFlick() {
global interval
Loop
{
if GetKeyState("2")
Break
Random, sleep1, 600, 625
Random, sleep2, 600, 625

Click
Sleep %sleep1%
Click
Sleep %sleep2%
Sleep interval - (sleep1+sleep2)
}
}

1::AutoFlick()
3::global interval:=1800
4::global interval:=2400
5::global interval:=3000
6::global interval:=3600
7::global interval:=4200
8::global interval:=1200

ESC::suspend

thank you, i will try it out :)
 
Top