By registering with us, you'll be able to discuss, share and private message with other members of our community.
Sign up now!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
We use essential cookies to make this site work, and optional cookies to enhance your experience.