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 04/28/24 in all areas

    1. ⪼ JOIN OUR DISCORD ⪻ ⪼ LINK TO STORE PRODUCT ⪻ Key Features Guester (130+ Quests) must be purchased separately for quests to be rolled. All G-Addons aside from Guester are included. Start with a single click. Default settings will generally dynamically change based off your account status. Supports all 23 skills. New training methods will be frequently added Ex: 1.5t Teaks, 2t Fishing / WC. Supports sweaty methods like tick manipulation for most skills. Ex: 3T4G, 1t bones at Chaos Altar Automatically restocks everything. No human input should ever be necessary. Intuitive GUI. Easily modify individual tasks such as Scurrius or Sand Crabs. Money makers directly integrated. Your account should easily be able to sustain itself. java_aCgdVH0YIF.mp4 ADDITIONAL FEATURES Extremely customizable and Easy-To-Use Auto-creation of default settings file with GUI QUICK START capable with settings file names - able to edit all available settings Easy-to-use SAVE/LOAD buttons on GUI to set up individual settings MULE SUPPORT Make sure you're running GMuling at the same time on the same PC The username of the mule must be entered correctly in the script GUI/settings - case insensitive Port parameter is optional and should only be used if you experience port conflicts This script will walk to the mule's location, so make sure it's in a safe and reachable position INSTRUCTIONS Can easily be run through both QUICK START and NORMAL START button { QUICK START } For custom settings, add -params yourfile.json to your quickstart file For default settings, add -params default to your quickstart file Example (Windows): java -Xmx1024M -jar %userprofile%\Dreambot\BotData\client.jar -world members -script GAIO Account Builder -accountUser [email protected] -accountPass password -params default { NORMAL START } Just click the START button and the GUI will pop up with the default settings. There's a drop-down to load any custom files you created. When you're ready just click START!
      1 point
    2. Free script that allows for almost one click creation of trade ready accounts. Trains fishing, mining, and woodcutting in f2p up to TTL 100. Then does quests for 10QP. After finishing base requirements, it will afk at a bank intermittently checking play time until it hits the play time requirement (20 hours at time of post). Requires about 10k for supplies, can make it one click with mule integration if people care as a fast follow up. Quickstart example (windows): Quickstart example (Windows): java -Xmx768M -jar %userprofile%\Dreambot\BotData\client.jar -script "Bento Trade Ready" -accountUser [email protected] -accountPass password -params yourconfigfile.json Feel free to join discord for help, bugs, and future projects
      1 point
    3. You can already toggle paint, ctrl+p
      1 point
    4. amazing script man. any chance we could get a toggle for gpt responses? they're not very convincing imo and I usually babysit anyway. on that same note a paint toggle would also be amazing so that I can chat while babysitting
      1 point
    5. I'll try it again tomorrow and get back to you.
      1 point
    6. This is the best Blast Furnace script available. Very efficient. I have 99 smithing with it one one account. Now, with the update, there's a task system and progressive mode. Allows you to add restocking, switch bars, take breaks, or run other scripts in between. I'll have 99 smith on all my accounts in no time. Supports skill cape as well.
      1 point
    7. Fair enough - are you happy if I request a refund in the meantime?
      1 point
    8. Yes will do, I haven't had it happen again so far but I'll keep my eye open for it. It was weird, it had already grabbed a dibber from the bank, so I'm not sure why it was in the gnome menu anyways.
      1 point
    9. Pandemic

      DreamBot 3.25.16

      Hello everyone! A new version of DreamBot is now live! Changes: Added Civitas teleport tab Various Bank/GrandExchange improvements 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
    10. Long story short, I have decided to retire early from my OSRS scripting career and I feel bad leaving all this work I've done behind. So I figure I'll release the source code to everyone and maybe someone can learn something from it and then it isn't a complete waste of time lol. Features: Easy to use, robust anti-pattern system that randomizes various activities while botting. The current code will: Examine random entities (objects, npcs, ground and inventory items etc) Check a random stat (you can tell it which stats to check with antiban.setStatsToCheck(Skill.ATTACK, Skill.DEFENCE);) Type something random (gibberish) Move the mouse to a random location (and sometimes click the left or right button) Walk to a random location nearby Chop a random tree nearby Click on a random entity (object, npc, item etc.) Go AFK for a while (turns off autologin and random solvers temporarily) Open your inventory Open your stats menu Open your magic menu Open your combat menu (only if you have included Melee stats in your Stats to Check) Move the mouse off-screen for a while Move the camera randomly Trigger a "DO_RANDOM" flag for custom script-specific anti-pattern measures (eg. drop junk early etc.) It also includes ChatBot code (for retrieving CleverBot API responses). I will also include the code to my script-helper class just for anyone who is curious and maybe wants to steal some of my helper methods (such as randomized slot-pattern item dropping and general convenience methods). The way it was designed is to be used as a final callback after your usual script logic is performed. When your character is idling or between actions, call antiban.antiBan() to perform any of the given actions at random. Enjoy guys have fun. Script Example: package ZenTester; import org.dreambot.api.script.AbstractScript; import org.dreambot.api.script.Category; import org.dreambot.api.script.ScriptManifest; import java.awt.*; @ScriptManifest(category = Category.MISC, name = "ZenTester", author = "Zenarchist", version = 1.0, description = "For testing") public class Main extends AbstractScript { // Declare anti-ban instance private ZenAntiBan antiban; @Override public void onStart() { // Initialize anti-ban instance antiban = new ZenAntiBan(this); } @Override public int onLoop() { // Check for random flag (for adding extra customized anti-ban features) if(antiban.doRandom()) log("Script-specific random flag triggered"); // Call anti-ban (returns a wait time after performing any actions) return antiban.antiBan(); } @Override // Draw anti-ban info to the screen public void onPaint(Graphics g) { g.drawString("Anti-Ban Status: " + (antiban.getStatus().equals("") ? "Inactive" : antiban.getStatus()), 10, 100); } } ZenAntiBan.java:
      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.