Jump to content
Frequently Asked Questions
  • Are you not able to open the client? Try following our getting started guide
  • Still not working? Try downloading and running JarFix
  • Help! My bot doesn't do anything! Enable fresh start in client settings and restart the client
  • How to purchase with PayPal/OSRS/Crypto gold? You can purchase vouchers from other users
  • Tweeboy

    Lifetime Sponsor
    • Posts

      55
    • Joined

    • Last visited

    Everything posted by Tweeboy

    1. you know what else just happened today? a game update coincidence? surely not
    2. The snippets you've shared are a bit scattered, would need you to share a larger snippet to confirm issue You could condense that down to something like: if (!Inventory.contains("Grain")){ if (!wheatArea.contains(Players.getLocal())){ if (Walking.shouldWalk(5)){ Walking.walk(wheatArea.getRandomTile()); } } else { GameObject wheat = GameObjects.closest("Wheat"); if (wheat != null && wheat.interact()){ Sleep.sleepUntil(() -> Inventory.contains("Grain"), 2000); } } }
    3. I am running it now (Tele-Alching in Varrock) and am unable to reproduce this issue. I will leave it running for the next few hours through my work calls. Can you please share your DreamBot client settings? And it shouldn't matter but - what were you trying to alch? I would like to try to reproduce your exact run conditions. Please ensure you enter everything in the GUI properly (alch item is case sensitive - type it EXACTLY as it appears in game)
    4. Keep in mind there's a Prime Event going on at the moment (ends in ~1 month from today), ban rates are typically higher during this time as a lot of prime accounts flood the game Regardless just Trial & Error, just keep mixing it up and see what works for you
    5. sent him to barb village with over 200k feathers... sick script
    6. Loving the script so far How is it calculating profit? Below is for Mithril Bars at Blast Furnace. I'm using this page to estimate ~200k/hr profit for 1800 bars/hr. Script is saying I'm making close to 700k/hr profit? That can't be with the current price of coal/ores
    7. To my knowledge, the script itself will need to access the bank to know what's inside. You manually opening and closing bank before running the script = the script does not know what's in the bank and will just return false. To verify this you can move that snippet from your onStart() to the onLoop(). Once you've started the script enable user input and open & close your bank. Your test should now return true. What are you trying to achieve with this code? It may be easier to check if the Bank contains those items within your bank node instead of the onStart method. So your bank node could have something like: if (Bank.open()){ if (Bank.contains(cookingItem)){ Bank.withdrawAll(cookingItem.getName()); } else { log("No more raw fish, ending script"); return -1; } }
    8. Did you have Menu Manipulation enabled? Seems to get stuck at Draynor Village with Menu Manipulation enabled. No issues when disabled though! Specifically over the below obstacle When Menu Manipulation is enabled, the script will attempt to interact with the NEXT obstacle (Jump Gap) while still in the middle of climbing up the above wall. That eventually times out and the script attempts to interact again, only it tries to interact with the same Wall as before I've been able to recreate this every lap with Menu Manipulation enabled
    9. Mining rocks were renamed since this guide was written - you're code is looking for an object named "Rocks", but all that's nearby are "Copper rocks"
    10. This will be fixed in next Version pushing update now. Going to test it some more now Seems script only worked with Menu Manipulation enabled This is from the SDN version (paint bugged out for some reason so cleaning that up as well)
    11. I needed to get some early cooking levels on several accounts and wanted to do so without needing to trade anything over. This was my solution. This script will Fish and Cook Shrimp/Anchovies in Al Kharid. Requires small fishing net in Inventory to start STRONGLY RECOMMENDED to be 29 combat to avoid the wandering Scorpion from sending you to Lumbridge. Script does NOT support avoiding this scorpion... Progress Reports
    12. Simple script that will cast Teleports, Curse, or Alch (high/low). Supports any combination of the three! I had written this originally with the intentions to do all 3 at once, but modified the script a bit to support doing any combination of the 3. Script will stop when out of runes. NOTE: While the script is free to use it is STRONGLY recommended to have Menu Manipulation enabled if you're doing a combination of spells. This is a VIP feature. Instructions: Progress Reports
    13. https://dreambot.org/javadocs/org/dreambot/api/methods/interactive/GameObjects.html Recommend looking through the docs, lots of useful information in there GameObject ladder = GameObjects.closest("Staircase");
    14. Bulk Import is a paid feature; you will need to purchase VIP/Sponsor to use it
    15. Tweeboy

      QuestPro

      I've been using this to get 10QP on my accounts, overall great script! Usually this is able to complete all 3 quests for me without any issues. I have the most success running this on accounts that already have some stats & playtime. Some issues I've come across: Cooks Assistant - same issue as above . Sometimes it works just fine, but other times it gets stuck repeatedly pulling the hopper lever. If I pause the script, go down, and collect the flour manually it'll continue just fine Romeo & Juliet - Occasionally gets stuck continuing through dialogues. Happens less often than Cooks Assistant issue. Seems to be more common when delivering love letter to Romeo & talking to Apothecary.
    16. I think the widgets changed cause of the new interface? getWidgets().getWidget(270).getChild(13) gets me pastry dough getWidgets().getWidget(270).getChild(15) gets me pie shells Idk what else changed Unless this doesn't use widgets
    17. Is this updated for the recent changes to make all interface? And could I get a trial?
    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.