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

    Scripter++
    • Posts

      770
    • Joined

    • Last visited

    • Days Won

      33

    Reputation Activity

    1. Like
      Aeglen got a reaction from brutal_god in P2P Master AI [Machine Learning] [1-Click Account Builder]   
      Yeah i'll make a note of it ty for suggesting
    2. Like
      Aeglen reacted to ChaosKilla in P2P Master AI [Machine Learning] [1-Click Account Builder]   
      Hands down this is the best script for building accounts. Might not be the fastest but it plays like a real player. What good is max xp/hr if you get banned in the end? Nothing. This is the only script I can run for days on end and trust that I wont get banned. Built in script breaks and custom options. I would give it a try at the least, I'll be getting a few lifetime instances when I can. Nobody will be able to tell you're a bot. It swiches tasks like a normal player, sells and buys at normal prices and it even replies to people in chat sometimes. In about 6 weeks I have built multiple accounts with 1200-1450 TTL
    3. Like
      Aeglen got a reaction from FujibayashiK in P2P Master AI [Machine Learning] [1-Click Account Builder]   
      Thanks for suggesting, it's in my ideas list and has medium priority out of relatively small tasks.
    4. Like
      Aeglen got a reaction from idhurtit in P2P Master AI [Machine Learning] [1-Click Account Builder]   
      Good luck escaping from that level of wildy 😛
    5. Like
      Aeglen reacted to whorganism in P2P Master AI [Machine Learning] [1-Click Account Builder]   
      Been using for a month now, I’m not sure there is a better AIO script out there.
       
      well done, and thank you!
    6. Upvote
      Aeglen reacted to BigL in Problems adding a new script   
      The problem was that i was using `main` branch instead of the `master` branch. 
    7. Like
      Aeglen reacted to daiily in P2P Master AI [Machine Learning] [1-Click Account Builder]   
      This script and it's dev are still of superb quality. If you're on the fence about buying it, I'll let you know 100% just buy it. I've gotten numerous 1500+ ttl running only this script right off of tut island. This script is the only Dreambot script I use because it's just that good that I will switch from my preferred client.
       
      Just trying to show support for an awesome script and it's creator.
    8. Like
      Aeglen got a reaction from daiily in P2P Master AI [Machine Learning] [1-Click Account Builder]   
      It should just work, irrespective of whether or not you've fiddled with settings, unless you've somehow turned off all the F2P tasks. I would suggest to join the Discord below and describe your issues so that they can be resolved.
    9. Like
      Aeglen reacted to Ibloody in P2P Master AI [Machine Learning] [1-Click Account Builder]   
      200+ Hours on a single account (Not including breaks) with zero bans. Botted from 400 Total level to 1300+ in a full month (Almost) of nonstop botting. This bot might just break RS LMAO

    10. Like
      Aeglen got a reaction from Josh2107 in P2P Master AI [Machine Learning] [1-Click Account Builder]   
      farm runs/wintertodt/blast furnace/agility rooftops/slayer, for further info I suggest joining Discord and asking there
    11. Upvote
      Aeglen got a reaction from MonkeyBreal in F2P Master AI [Machine Learning] [1-Click Account Builder]   
      looting yes for ironmen, supplies you'll need to gather yourself, more info can be found in discord ironman-guide chat
    12. Upvote
      Aeglen got a reaction from Hashtag in A proper debugger for Scripts   
      Idk what your code looks like but I'd advise avoiding lots of little tree-leaf-node files for every step, no matter how leet some people say it feels to have such "organised" code, imo it often results in a time consuming mess.
    13. Like
      Aeglen reacted to happydays24 in P2P Master AI [Machine Learning] [1-Click Account Builder]   
      Just a quick review - 
       
      I've been using this script for a little over 20 days, and have absolutely LOVED it. I have botted 1000-1500 total level, with now 3 99's and made about 15m bank since. I am looking forward to more updates by Aeglan to add slayer improvements and possibly more hunter options
       
      Otherwise, I cannot complain, 11/10 script 
    14. Like
      Aeglen reacted to Pandemic in Pandemic's Script Creator: Miner Tutorial, Part 1   
      Hello everyone, this is the first of a short series of tutorials for Pandemic's Script Creator (PSC), a tool for making your own scripts without any programming. I plan on recreating my previous tutorials for DreamBot but using PSC instead of Java.
      Part 1 is extremely simple, we'll end up with a script that mines the nearest Copper Rocks and drops everything when the inventory is full. As you'll see with PSC, this tutorial will be much shorter than the Java version.
      Prerequisites
      You'll only need access to Pandemic's Script Creator, which you can get a free 8 hour trial from the SDN.
      The Script
      Let's start with what the script should be able to do by the end of Part 1:
      Mine Copper rocks If the inventory is full, drop all of the ore Show a basic paint letting us know how much experience we've gained Getting Started
      To start on our first PSC script, just start Pandemic's Script Creator in DreamBot and press the "Create Script" button.
      You should now see the editor:

      This might look intimidating at first, but as you'll soon see it's actually not too complicated. Before we actually start on our script, let's quickly see how PSC scripts work.
      How PSC Scripts Work
      PSC scripts are made up of Actions, which are just a single building block that does something, whether that is clicking on an NPC, checking if we're in an area, or just logging something to the DreamBot console.
      The script itself runs as a loop, constantly running all actions in the editor from top to bottom, and will enter or go into actions if they succeed (or are true), and continues doing that until there are no more actions where it'll start at the top again.
      Let's take a look at a simple example of what a single loop looks like step by step (green actions mean they were successful or true, orange or red means they failed or are false, and gray means they were skipped entirely):
      1.mp4
      And these actions will repeat themselves until you stop the script.
      Mining
      Now that we have a basic understanding of how PSC scripts work, we can get started on our miner's first task: mining.
      Let's first check if our player isn't animating (swinging the pickaxe), and if we aren't then we can Mine a Copper rock:
      2.mp4
      What's going on?
      If our player matches is a commonly used action that can be used to check a ton of different properties of our player, in this case we're only checking if we're not animating.
      Interact with a Game Object is the action we'll use to click on the rocks, which are a Game Object (as opposed to an NPC like a Man or Chicken, or a Ground Item like dropped Bones).
      Sleep while moving is a simple action that will wait to start moving then sleep until it's done moving. This is used to avoid spam clicking the rocks while we're walking towards it.
      As you can see after I started the script, it ends up clicking the rock and then stops because we start animating, which is exactly what we wanted.
      Dropping Ores
      If we kept our script running, it'd fill up the inventory and then just keep clicking on the rocks, which isn't ideal.
      So let's add the last part of our script to drop all of our ores once our inventory is full:
      3.mp4
      What's going on?
      If inventory is full is a simple action that does exactly what it says, it will succeed if the inventory is full, running all actions inside of it.
      Drop all matching items will drop all items that match the filters inside, which in our case was to drop any item with "ore" anywhere in its name.
      Now we can safely run this script, it will fill up the inventory with ores, and then drop them all, repeating forever.
      Paint
      PSC has various Paint actions that can draw on the game screen, so let's show how much mining experience we've gained:
      4.mp4
      What's going on?
      Draw text is a paint action that will draw the given text on the game screen, in our case we use a special field command called expGain that turns expGain(Skill) into the amount of experience gained in Skill since the script started.
      If you want to go a step further, there's another field command called hourly that can give the hourly rate of anything, so you could show experience per hour for example with hourly(expGain(Mining)). Try adding that as a separate Draw text action and try placing it below the first we added above (hint: you'll need to change the X and Y coordinates of the new Draw text action).
      We're Done!
      If you've made it this far, congratulations, you've made your first PSC script.
      You can find the full script file here:
      TutorialPart1.json
      While this was a simple tutorial showing a fairly simple script, PSC has much more to it, and it offers plenty of power to create much more complicated scripts.
      If you run into any issues, or want to check out the community, join our Discord: https://discord.com/invite/2KDD7d3Bex
      Thanks for reading!
      Read Part 2 Now
    15. Like
      Aeglen got a reaction from backonrsigues in Banned   
      You can see the botting guide in my Discord too if you want, new accounts may be tricky
    16. Upvote
      Aeglen reacted to sloppybot in Banned   
      You could look into upgrading to VIP to enable the covert mode it has had great success for many users. LINK.
      Other than that there are some guidelines to successful botting:
      3/10 new accounts are likely to survive. Don't bot first 24 hours after account creation and tutorial completion. Don't use a public VPN, instead look into residential proxies. https://letmegooglethat.com/?q=Residental+proxy Don't bot on an account that you aren't willing to loose. People's experience on ban rates are: Private scripts > Premium scripts > Free scripts. How ever there is no guarantee that a private script will do better than a free one. Taking breaks every 3-5 hours greatly reduces risk of ban. Botting a maximum 10 hours per week greatly reduces risk of ban(relevant for main accounts). Hope some of these tips can help out! Good luck botting.
    17. Like
      Aeglen got a reaction from Turkesterone in P2P Master AI [Machine Learning] [1-Click Account Builder]   
      There has been a lot of legitimately new content added recently, see the logs on this thread or on Discord. Most recently, buying untradeable items and GOTR were added. Of course, with rapid development speed comes a bunch of hotfixes too, but sometime this coming week you can expect to see Smithing-related quests.
    18. Like
      Aeglen reacted to daiily in P2P Master AI [Machine Learning] [1-Click Account Builder]   
      I think I speak for many of us when I say, thank you @Aeglen. For your awesome scripts and superb communication with your customers. You're #1 in my book my friend.
    19. Like
      Aeglen got a reaction from daiily in P2P Master AI [Machine Learning] [1-Click Account Builder]   
      Hi, you can see what the bot is thinking if you press ctrl+L and open the logs.
      Something may be wrong with your setup, as I have not heard Slayer issues for a while except an occasional death (they are reported quite fast too), and you seem to have encountered many issues all at once, which is generally unprecedented except in this case - unless perhaps you've been saving them up. Turn off stuff like injections and no-click walk if you use them.
      Teleporting away from the kalphite lair is probably due to the task timer finishing and the script pathing back outside the cave. In this case, the task timer is not playing nicely with the fact that you only have one thing enabled and are in a strange area - this is not something that the script reasonably expects, and should be a rare occurrence even for your use-case.
      The bot prefers obsidian cape in situations when defence is low like mage, otherwise will prefer a skillcape. Food is random per account, yours likes lobsters it seems. The gear may not entirely line up with your ideals, but is nonetheless unique per account and does the job.
      Looting, specing, and potions are not currently implemented. The current priorities for the script are smithing/questing before existing skills are further improved.
       
    20. Like
      Aeglen got a reaction from iron magneto in P2P Master AI [Machine Learning] [1-Click Account Builder]   
      Motivation:

      The idea is to build your account in 1 click, without endless and janky config editing. The config is still there behind the scenes - the script creates a unique profile for each account so it can find its own path to your goals.

      Other Stuff:
      #1 on Dreambot "Most Popular" since August 2023. Designed for players/low volume users to avoid bans, not farmers. 200+ training methods with toggles/preferences/profiles. Buys everything it needs automatically without overspending. Good accounts easily pay for their own bonds, even with default settings. Works on F2P without needing reconfiguration. Inbuilt break system sets a unique pattern for each account. Anti-cluster: each account gets its own behavioural profile which evolves with progress. Anti-ban: powerful and unusual techniques prevent jagex from profiling this script. Ironmen automatically ignore GE and only loot their own drops. Active Discord community with free botting guides.

      Training Methods:
      Agility - rooftops, gnome stronghold Construction - mahogany homes (buys house etc) Cooking - various fish Crafting - gloves, jewellery, gems Farming - allotment runs, herb runs (including bottomless bucket and magic secateurs) Fishing - various fish Firemaking - logs, wintertodt (800+ points/game) Fletching - wooden stuff, bows, bolts, bolt tips, wintertodt Herblore - cleaning herbs, potion making Hunter - birds, butterflies, falconry Magic - various monsters, virtual slayer tasks, sand crabs (optional looting) [Melee] - various monsters, virtual slayer tasks, sand crabs (optional looting) Mining - various ores, motherlode mine Prayer - chaos altar Ranged - various monsters, virtual slayer tasks, sand crabs (optional looting) Runecraft - guardians of the rift (upgrades gear/pouches, 6+ points/game) Slayer - turael, vannaka, nieve Smithing - blast furnace (fetches ice gloves, supports coal bag) Thieving - various npcs and stalls Woodcutting - various trees Banmetrics:
      Progress reports are automatically generated for all users (shows DreamBot name).

      Same for ban reports, provided the account survived its first day.
      Read the #botting-advice sections on Discord to learn best practices and avoid this!

      Quests:
      EVERY quest has in-progress support (can be started from yellow state)
      Animal Magnetism
      Below Ice Mountain
      Black Knights' Fortress
      Cook's Assistant
      The Corsair Curse
      Daddy's Home
      Demon Slayer
      Doric's Quest
      Druidic Ritual
      Enter the Abyss
      Ernest the Chicken
      Gertrude's Cat
      The Giant Dwarf
      Goblin Diplomacy
      Imp Catcher
      The Knight's Sword
      Monk's Friend
      Pirate's Treasure
      Plague City
      A Porcine of Interest
      Priest in Peril
      Prince Ali Rescue
      The Restless Ghost
      Romeo and Juliet
      Rune Mysteries
      Sheep Shearer
      Temple of the Eye
      Tree Gnome Village
      Vampyre Slayer
      Witch's Potion
      X Marks the Spot
      Supported gear that the bot won't obtain itself:
      Fire, infernal, legends, mage arena, and skill capes
      High level defenders
      Slayer helmet + (i)
      Magic shortbow (i)
      Various combat rings (i)
      Neitiznot helm/faceguard
      Barrows gloves etc
      Chaos gauntlets
      Magic secateurs
      Rogue's outfit
      Prospector kit
      Clue hunter outfit
      Magic butterfly net
      Cooking gauntlets
      Smith's gloves (i)
      Abyssal lantern (charged)
      Coal bag
      Upcoming (vote for features in Discord):
      Fight caves
      More customisation
      Quickstart:
      The script takes a single parameter - the settings file name. By default this is "Suggested".
      Screenshots:
































    21. Upvote
      Aeglen got a reaction from arka82 in F2P Master AI [Machine Learning] [1-Click Account Builder]   
      Hey, I would suggest to have a look at the account creation guide in the Discord below, that's what usually causes early bans.
    22. Upvote
      Aeglen got a reaction from sloppybot in Official DreamBot Scripter Guidelines   
      This does not appear to break the guidelines, and I don't think it would impact Dreambot revenue, but equally I don't imagine a developer using this strategy to get many tips.
    23. Upvote
      Aeglen reacted to Prime in ⭐ Buy Your DreamBot Credits Here ⭐[Mod] [RSGP, PayPal, Crypto]   
      Buy your DreamBot Credits here from a trusted staff member
      Over $100,000+ traded
      100% Positive Feedback Score

      ⭐ To purchase, create a ticket on my Discord server ⭐
       ⭐ Join my Discord by clicking here ⭐

      I accept Crypto at $1.15 per credit
      I accept PayPal Venmo CashApp Zelle at $1.25 per credit
      I accept RS GP at $1.25 per credit*

      *GP price is determined by current buying price of the biggest gold sites; if you think the GP rate should be higher, then it is your own fault for overpaying for GP when you could've been buying it for less

      There is a $1.00 convenience fee for orders under $40.
      If I do not respond to your Discord request right away, I am unavailable and will respond to you as soon as I can.
    24. Like
      Aeglen got a reaction from workling420 in P2P Master AI [Machine Learning] [1-Click Account Builder]   
      There has been a lot of legitimately new content added recently, see the logs on this thread or on Discord. Most recently, buying untradeable items and GOTR were added. Of course, with rapid development speed comes a bunch of hotfixes too, but sometime this coming week you can expect to see Smithing-related quests.
    25. Upvote
      Aeglen reacted to AliasBots in How many osrs bots can a good server run?   
      Hi folks. For the curious the answer is roughly 200-300 after some testing (not dreambot clients, but probably would be similar results).

      o/
    ×
    ×
    • 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.