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

      734
    • Joined

    • Last visited

    • Days Won

      31

    Everything posted by Aeglen

    1. Haha sorry for the confusion but I am definitely not Eagle Scripts.
    2. Varies per-script, but certainly a lot of experience is needed to get things running smoothly despite the hype. Bans were elevated recently due to Primes. The IP thing only really matters for VPNs unless you have loads of bans. In some cases yeah scripters have frameworks they pick bits from. Good scripters change things up each time to ensure anti-pattern remains robust. Large chunks of most scripts will come from pre-existing frameworks, and some will ofc be newly written. Price comes from the aforementioned framework, the support period you'll presumably be getting, profit potential, and market rates. I cba to support so I don't offer pscripts myself. I agree, most of the time you'll be needing a better proxy, this trips up so many want-to-be farmers. But presumably there are a few such pscript sellers out there and you'd do well to avoid them. IMO having read everything fault is largely with buyer for not being specific enough from the outset, but ideally the writer should ask questions if/when there are ambiguities (although you shouldn't expect them to iron out all your ambiguities).
    3. pretty sure there's a small buffer of 2-3 levels to stop the bot from mining painfully slowly if it only has the level required and no more
    4. Good to hear, unlikely to add rc unless it gets reworked for F2P because like prayer it's so slow to train with little F2P benefit.
    5. For tips on avoiding bans I'd suggest seeing the FAQ, most frequent offenders are botting tutorial island and IP, although bans will be a bit faster over the next 3 days due to amazon prime. Was resolved over Discord, issue with Macs hiding the begin button. It typically solves it in 3-5 minutes. Special case with black picks, the script ignores them because they're really expensive.
    6. Something is up with your DB3 installation as most people seem to be using the script without issue, please reinstall it and if that doesn't work contact the DreamBot admins they'll get you sorted
    7. Thanks for beta testing. Going by the log above, there doesn't seem to be anything wrong except the client needing a restart/update, which coincidentally happened with the trout stuff. For now, no new methods are planned to be added unless Jagex adds something good, time is better spent working on future scripts and stuff.
    8. Restart your client as it updated earlier today. The tin ore sounds like a misclick, and you'd have to be more specific regarding "stops" if you want me to investigate. Ty for report.
    9. The client has just updated due to OSRS update, restart it and if it still doesn't work let the admins know I guess.
    10. This might be because of Jagex temporarily going crazy with bans due to Amazon Primes, typically accounts survive that long otherwise. Sorry about your disappointing results, maybe try again in a week after primes are over.
    11. Aeglen

      Basic Construction

      Sounds implausible given my own and others' results, but rip
    12. Unless they are super low level, this is not meant to happen. If you have details or logs please share as this has not been reported in months. You can use QuickStart with the command at the bottom of the first post, or maybe even the Account Rotater (see the FAQ in the first post) if you wish
    13. this is not the correct .jar file
    14. Might add it later, but for now you'll need to code it in yourself
    15. Added tutorial because you guys had many questions
    16. FYI if you only care about xp you'll want to do willows till 99
    17. This Python program will allow those with access to QuickStart to effortlessly rotate a list of their accounts Tutorial (assumes Python is installed, YT messed up the audio): >> QuickStart requires Dreambot VIP or Scripter rank! << NOTE: If you get stuck on "Client is ready to launch" you're using the wrong .jar file! The license for this code: MIT License THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. The code: #this program takes your accounts.csv file and rotates Master AIO F2P on them #implemented accounts.csv file formats #username:password #username:password:world #username:password:world:proxy_ip:proxy_port:proxy_username:proxy_password #you can modify the code to support other arguments including proxies etc path_to_accounts_file = "accounts.csv" mean_hours_per_account = 6 sd_hours_per_account = 1 dreambot_username = "USERNAME" dreambot_password = "PASSWORD" dreambot_path = r"C:\Users\Aeglen\DreamBot\BotData\client.jar" ###CODE### import csv import time from subprocess import Popen import random accounts = [] with open(path_to_accounts_file) as f: reader = csv.reader(f, delimiter=':') for line in reader: accounts.append(line) def generateCommand(account): user = account[0] pwd = account[1] world = None proxy_ip = None proxy_port = None proxy_username = None proxy_password = None if len(account) > 2: world = account[2] if len(account) > 3: proxy_ip = account[3] proxy_port = account[4] proxy_username = account[5] proxy_password = account[6] if proxy_ip != None: return "java -Xmx255M -jar " + dreambot_path + " -script \"Master AIO F2P\" -username " + dreambot_username + " -password " + dreambot_password + " -accountUsername " + user + " -accountPassword " + pwd + " -world " + world + " -proxyHost " + proxy_ip + " -proxyPort " + proxy_port + " -proxyUser " + proxy_username + " -proxyPass " + proxy_password + " -params nogui" elif world != None: return "java -Xmx255M -jar " + dreambot_path + " -script \"Master AIO F2P\" -username " + dreambot_username + " -password " + dreambot_password + " -accountUsername " + user + " -accountPassword " + pwd + " -world " + world + " -params nogui" else: return "java -Xmx255M -jar " + dreambot_path + " -script \"Master AIO F2P\" -username " + dreambot_username + " -password " + dreambot_password + " -accountUsername " + user + " -accountPassword " + pwd + " -params nogui" def individualizeTime(time, name): mult = 1 sum = 0 for char in name: sum += ord(char) * mult mult += 2 random.seed(sum) time *= random.uniform(0.8,1.2) return time while True: for account in accounts: print(generateCommand(account)) p = Popen(generateCommand(account)) runetime = random.gauss(mean_hours_per_account*3600,sd_hours_per_account*3600) time.sleep(individualizeTime(runetime, account[0])) p.terminate() Example accounts.csv: [email protected]:password:301:proxy_ip:proxy_port:proxy_username:proxy_password [email protected]:password:330 [email protected]:password
    18. Possibly, it's a good idea, although wouldn't doing things this way would lead to all of your accounts being linked via the cache? You might be better off writing an external script to periodically restart the client with the next account. Since it's highly requested I might just write one and share it towards the end of the week.
    19. Hey, thanks for the report. This error is harmless and can be ignored, it's presumably due to DreamBot pathing. I'm not sure about offering lifetime and how that would work with instances at the moment. As for OSRS gold, I'd prefer not to do stuff this way, but if you message me on Discord I could accept it.
    20. This script is monthly, because it took a lot of effort to make and requires maintainance/updates. This should be detailed on the store page.
    21. That's a good feature idea, I'll write it down ty I suggest clicking the refresh-looking button on the DreamBot client to run the last started script, this'll restart the bot and bring up the GUI again. The only downside is that it'll want to bank after you do it but that takes little time.
    22. It does seem a bit weird looking at 2 instances, the script was intended to be sold in instance packs of no less than 5 for $9.99, however DreamBot requires 2-5-10-25-50 instance pricing. 2/5 are intended for "personal use" or "just started a farm".
    23. This script is monthly, because it took a lot of effort to make and requires maintainance/updates. This should be detailed on the store page.
    24. It's one possibility out of many. See the FAQ at the top of this thread to optimise not getting banned. There is a URL in which you can check your IP score; generally a VPN could lead to bans unless it uses particularly obscure/residential IPs.
    ×
    ×
    • 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.