Attaboy Posted February 15, 2018 Share Posted February 15, 2018 Is there a bot around here that drinks prayer pots if prayer is running low? I understand that it is fairly easy to make but I tried to make one myself but I'm not good at making bots at all. Quote Link to comment Share on other sites More sharing options...
Butters Posted February 15, 2018 Share Posted February 15, 2018 Having trouble writing code itself or making it compile and etc while using tools you're not used to? Quote Link to comment Share on other sites More sharing options...
Krysler Posted February 15, 2018 Share Posted February 15, 2018 use an auto clicker instead if you are having a problem. it wont have the potential to be great, but it's a decent alternative. Quote Link to comment Share on other sites More sharing options...
Attaboy Posted February 15, 2018 Author Share Posted February 15, 2018 50 minutes ago, nosepicker said: Having trouble writing code itself or making it compile and etc while using tools you're not used to? Writing code itself. Quote Link to comment Share on other sites More sharing options...
CasDeBlanco Posted February 15, 2018 Share Posted February 15, 2018 2 minutes ago, Attaboy said: Writing code itself. https://osbot.org/forum/topic/137485-c-prayer-potion-drinker/ Quote Link to comment Share on other sites More sharing options...
Butters Posted February 15, 2018 Share Posted February 15, 2018 As I think you wanna play legit and just need auto potion drinking then it's easy. "Pseudo" non tested code below int prayerPointThreshold = 10; String prayerPotName = "Prayer potion"; public int onLoop() { if (skills.getDynamic(Skill.PRAYER) <= prayerPointThreshold && inventory.contains(prayerPotName)) { inventory.interact("Drink", prayerPotName); new ConditionalSleep(5000, 250) { public boolean evaluate() { return skills.getDynamic(Skill.PRAYER) > prayerPointThreshold; } } } } Use proper potion names (can't remember how they are called) and dunno if the conditional sleep syntax is correct. Otherwise should work. Quote Link to comment Share on other sites More sharing options...
Attaboy Posted February 15, 2018 Author Share Posted February 15, 2018 2 hours ago, Castro_ said: https://osbot.org/forum/topic/137485-c-prayer-potion-drinker/ Thanks dude I appreciate it!! 1 Quote Link to comment Share on other sites More sharing options...
cydrex Posted July 4, 2018 Share Posted July 4, 2018 On 2/15/2018 at 3:19 PM, Attaboy said: Thanks dude I appreciate it!! does this still work? i botted 99 combats at 2015, now range left and going to afk nmz to 95 and thn i should be good to level while doing slayer and need p pot drinker Quote Link to comment Share on other sites More sharing options...