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

Joined
Mar 16, 2016
Messages
99
Could someone make combat bot with "Prayer Flicking" or add this feature to current combat bots?


Something like this:
To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.
 
Joined
Mar 16, 2016
Messages
99
It would be very useful especially for strong slayer monsters, without going to bank every 10 mins...
 
Joined
Jan 12, 2017
Messages
87
would love to see this,
i tried making something for this myself using AHK, however there is a issue with using a fixed timer.
the runescape tick length depends slightly on the amount of players on the server. while the theoretical tick speed length is 0.6 seconds the actual lenght varies from 0.6 and 0.62 depending on the amount of players. a bot using 1 tick flicking would probably need to have some mechanism to correct its own errors or somehow use the runescape server based clock rather than a simple 0.6 second delay.

that being said, i hope someone is up to the challenge!
 

sak

Joined
May 10, 2017
Messages
47
would love to see this,
i tried making something for this myself using AHK, however there is a issue with using a fixed timer.
the runescape tick length depends slightly on the amount of players on the server. while the theoretical tick speed length is 0.6 seconds the actual lenght varies from 0.6 and 0.62 depending on the amount of players. a bot using 1 tick flicking would probably need to have some mechanism to correct its own errors or somehow use the runescape server based clock rather than a simple 0.6 second delay.

that being said, i hope someone is up to the challenge!

No lol just depends on the monster your fightings attack speed.
Here is the script I use

;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
Jan 12, 2017
Messages
87
No lol just depends on the monster your fightings attack speed.
Here is the script I use

;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



first off thank you for sharing this, its really usefull and will very likely use this in the future

secondly, the original post is about 1 tick flicking, which flicks the prayer on and off each tick (600 ms) when i used this delay it kept desyncing after a while and missing the prayer.

thirdly your script is far superior to my own, and i might actualy be able to add a 1-tick flick option to this!
 
Top