Welcome!

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

Sign up now!
RuneMate will permanently shut down on August 7, 2026
due to events outside our control. You can continue using RuneMate until this date after which it will no longer be available. Thank you to everyone that contributed to RuneMate's success and to the community for the opportunity to serve you all these years.

  • Learn about RuneMate Vault and how its zero knowledge local encryption already protects your sensitive information.
  • Edit or delete your RuneMate account from your Account Settings.
  • All account upgrade subscriptions have been cancelled. No action required.

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
9,257
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 :)
 
I've been called a god before.
Joined
Aug 5, 2014
Messages
3,211
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?
My slayer bot supports player flicking. The new version will be out within a few days.
 
Top