1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

OSRS Prayer Flicking

Discussion in 'Bot Requests' started by wikte, May 12, 2016.

Tags:
  1. wikte

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


    Something like this:
     
  2. SlashnHax

    Joined:
    Dec 10, 2014
    Messages:
    3,198
    Likes Received:
    1,041
    I'll keep it mind, but I don't think I'll implement it for a while.
     
  3. wikte

    Joined:
    Mar 16, 2016
    Messages:
    99
    Likes Received:
    9
    It would be very useful especially for strong slayer monsters, without going to bank every 10 mins...
     
  4. sak

    sak

    Joined:
    May 10, 2017
    Messages:
    47
    Likes Received:
    4
    Would like to see this!
     
  5. rickp1337

    Joined:
    Jan 12, 2017
    Messages:
    87
    Likes Received:
    17
    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!
     
  6. sak

    sak

    Joined:
    May 10, 2017
    Messages:
    47
    Likes Received:
    4
    No lol just depends on the monster your fightings attack speed.
    Here is the script bot 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
     
  7. rickp1337

    Joined:
    Jan 12, 2017
    Messages:
    87
    Likes Received:
    17


    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 bot is far superior to my own, and i might actualy be able to add a 1-tick flick option to this!
     

Share This Page

Loading...