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
  • Leaderboard

    Popular Content

    Showing content with the highest reputation on 06/21/22 in all areas

    1. With Jagex's most recent update on client requirements will this mimic the original client and be undetectable? Or will it mimic runelight? It looks like bans will be implimented for all non permitted clients.
      2 points
    2. Visual Scripting for DreamBot 3 Build your own 100% unique scripts with ease Making scripts has never been this easy. No programming knowledge required. Visual Scripting empowers regular users to create OSRS bots they have always wanted to use. You don't have to know anything about programming, the desire to experiment is enough! Don't worry about coding syntax, misspelling keywords or using the wrong brackets. Focus on building your own scripts instead. Visual Scripting allows you to build your 100% customized scripts with ease. Instead of writing line-by-line code you use graphical nodes to make the bot do what you want. In fact, you can create very high quality and unique scripts for your own use without writing a single line of code! Everything running under the hood is designed by Hashtag, the author of DreamBot's reputable # Scripts. Take full control of the scripts you run. The sample scripts provide a lot of information to get you started. Hashtag provides you with multiple high quality sample scripts to learn from, to modify for your needs or for you to use as is! The scripts showcase how you can interact with a variety of OSRS game mechanics. These include interacting with entities and items, handling dialogues, trading with other players, banking, shopping, restocking at Grand Exchange and many more. The library of sample scripts is ever growing. All requests for sample scripts are welcome. Everything in the scripts is 100% customizable by you. Do you want the scripts to be faster or slower? No problem, tweak the script parameters to suit your needs. Do you believe something could be done more efficient? Nothing is stopping you from making changes to the scripts. This degree of freedom will assist your bots to survive longer due to the ability to create fully unique scripts. Think of them as private scripts, except you have access to the source and you won't be dependant on another scripter fullfilling your needs. Your time is not wasted trying to figure out errors. Debugging your scripts is designed to be easy for you. If you have ever tried coding, you might have encountered errors. The description of these is often very confusing and you might end up wasting a lot of time trying to figure them out. Say goodbye to NullPointerException, StackOverflowError, ArrayIndexOutOfBoundsException and others! These won't haunt you in Visual Scripting. When you encounter an error in your script, you are immediately given a human-friendly description of the problem and the node that is causing the error is highlighted in the editor. Testing your script is as easy as clicking a button. Literally, it's a single click of a button in the editor! This is faster than compiling Java code into a JAR file that is fed to the client to execute. Try Visual Scripting free while it's in preview. Start your trial now, pick a plan later. No credit card required. No obligation. No risk. Get Started Join the Discord server. The Discord server is the easiest way to stay in touch. In Hashtag's Discord server you can chat with others, share your ideas or projects and get assistance in using the tool. Join Discord View the user manual. The extensive user manual helps you to get started. Learn more about Visual Scripting by reading the user manual. It contains how-to guides, information about best practises and more. View Manual Feel free to show the project some love by liking this thread!
      1 point
    3. To discriminate the activities your bot is doing you should compare stuff, and depending on what you're doing you want to use the easiest / most consistent / least complicated method of categorizing your bot's behavior. You already did it by saying if(Bank.isOpen()) because then you know only the code inside that if() block will execute if the bank is open. If your script is one Main class then u want to declare that int bankItem; inside your Main class, then find out what your bot is doing by comparing like I said, and depending on what your bot is doing you can set one of these: bankItem = itemArray[0]; bankItem = itemArray[1]; bankItem = itemArray[2]; then after making sure u set that bankItem correctly in the right spot, u can start banking with a generic banking function using bankItem etc. another option to ur array handling situation but basically equivalent is giving english names to ur int variables: int axe = 232; int pickaxe = 1337; int jar = 6969; int bankItem = jar; and if u want to really have them in an array then I don't like arrays personally... I use Lists... List<Integer> bankItems = new ArrayList<Integer>(); bankItems.add(234); bankItems.add(1337); bankItems.add(6969); int bankItem = bankItems.get(0); one difference in arrays and lists is that you can initialize the Lists in the Main class itself but only add to it in the @Override onLoop() / onStart() methods whereas you can initialize arrays as populated in just the Main class itself.
      1 point
    4. 100%, doesn't even have to support junk items, just do bars and basic molds to start
      1 point
    5. Pandemic

      DreamBot v3.12.0

      Hello everyone! A new version of DreamBot is now live! Changes: WebFinder#getNearest fix Performance improvements Dependency updates Always remember, to be on the latest version of our client you must run DBLauncher.jar! The client does NOT update itself! Thanks, The Dream Team
      1 point
    6. Please verify that you are on the latest version of DreamBot. There are things that may have broken as a result of the game update. If you are still seeing issues, feel free to reach out. Thanks!
      1 point
    7. Thank you as always! Just sayin 😉
      1 point
    ×
    ×
    • 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.