September 24, 20187 yr Script that completes Restless Ghost, Rune Mysteries and Romeo & Juliet quest for 7 quest points. No items required. Quests that this script is doing: Restless Ghost Rune Mysteries Romeo & Juliet As it's my first script, I would love to take your criticism. If you experience any bug, please let me know. Source: https://bitbucket.org/smykolas/7qp_osbot Jar: https://bitbucket.org/smykolas/7qp_osbot/downloads/7qp.jar Improvements that I will make: Spoiler Paint. Add more quests to reduce ban rate. Improve webwalking. Changelog: Spoiler V1.0 - Initial release. (2018/09/24) V1.01 - Just added paint which will show time elapsed, mouse and task. (2018/09/27) V1.1 - Added Cook's Assistant quest, but I'll need to add it manually, because I will create GUI for that. (2018/10/03) Thanks to @billyboy420 and @The Undefeated for configs. Edited October 3, 20187 yr by smy
September 24, 20187 yr Looks good, had a quick look at the source and noticed you'll try and pick from the Cadava bush even if there's no berries to be picked. Here's a snippet that will pick from the closest bush with berries: Entity bush = getObjects().closest(b -> b != null && b.getName().equals("Cadava bush") && b.getModelIds().length > 1); if (bush != null) { if (bush.interact("Pick-from")) { new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return getInventory.contains("Cadava berries"); } }.sleep(); } } Edited September 24, 20187 yr by Ragnar Lothbrok remove custom sleep method
September 24, 20187 yr Author 4 minutes ago, Ragnar Lothbrok said: Looks good, had a quick look at the source and noticed you'll try and pick from the Cadava bush even if there's no berries to be picked. Here's a snippet that will pick from the closest bush with berries: Entity bush = getObjects().closest(b -> b != null && b.getName().equals("Cadava bush") && b.getModelIds().length > 1); if (bush != null) { if (bush.interact("Pick-from")) { new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return getInventory.contains("Cadava berries"); } }.sleep(); } } Thanks, I knew this mistake, but I didn't knew the approach. I will fix it
January 6, 20197 yr Seems nice but currently broken due to holiday event but completed restless ghost. Hope I can use it after event is over
January 6, 20197 yr 1 hour ago, kramnik said: Seems nice but currently broken due to holiday event but completed restless ghost. Hope I can use it after event is over You can use it now, whenever the script goes to talk to duke, just press 2 and itll proceed as normal Edited January 6, 20197 yr by hreyvirtue
January 7, 20197 yr Maybe easier to just use a switch statement with a value rather than have a bunch of if statements. if(api.configs.get(29) == 0) { //code } if(api.configs.get(29) == 1) { //code } etc to something like switch(api.configs.get(29)){ case 0: //code return 600; //Default sleep or just break case 1: //code return 600; }
January 20, 20197 yr Thanks for this great script! Few bugs: Typo in paint Sometimes dies at dark wizards Sometimes when Juliet isn't on the balcony but in the room, it will get stuck between walking to the balcony and clicking on her. Sometimes during rune mysteries it gets stuck in the basement, not sure why. this happens rarely.
January 21, 20197 yr On 9/24/2018 at 10:03 AM, Ragnar Lothbrok said: Looks good, had a quick look at the source and noticed you'll try and pick from the Cadava bush even if there's no berries to be picked. Here's a snippet that will pick from the closest bush with berries: Entity bush = getObjects().closest(b -> b != null && b.getName().equals("Cadava bush") && b.getModelIds().length > 1); if (bush != null) { if (bush.interact("Pick-from")) { new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return getInventory.contains("Cadava berries"); } }.sleep(); } } ConditionalSleep2 pls
January 21, 20197 yr Bug Report: Restless Ghost, stays stuck at the door when camera isnt in the right position too click the door. Aswell noticed (probably by not enough breaks too run it smooth on my craptop) that with multiple accounts (3 out of 5) don't finish all the quests completely.
April 21, 20196 yr Bug: Restless ghost, bot clicked on ghost amulet but it didn't equip and was stuck talking to the ghost. Edited April 21, 20196 yr by KayHelios
December 11, 20205 yr "You do not have access to this repository." Is this an error or do I have to ask for access?
May 20, 20214 yr On 12/11/2020 at 3:23 AM, StaticSyntax said: "You do not have access to this repository." Is this an error or do I have to ask for access? i have the same... any updates? looks like a nice starter acc script
Create an account or sign in to comment