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
  • 420x69x420

    VIP
    • Posts

      161
    • Joined

    • Last visited

    • Days Won

      9

    420x69x420 last won the day on January 3 2023

    420x69x420 had the most liked content!

    3 Followers

    About 420x69x420

    Scripter

    Contact Methods

    • Discord
      420x69x420#5815

    Recent Profile Visitors

    The recent visitors block is disabled and is not being shown to other users.

    420x69x420's Achievements

    1. Feel free to DM me at my discord on my Profile page or here over PM on forums, as well as here directly on this thread, but no I do not plan on opening a Discord server for my scripts.
    2. Hi, no this is a bug, thanks for posting. I am working on cleaning up the code and somewhat refactoring to allow for new features and will fix this bug before releasing next version
    3. Script fails to start and needs to be updated for most recent deprecations most likely
    4. Yes, in the near future, I am going to add 3 more checkboxes to GUI - "Buy grimy", "Buy clean", and "Sell (unf)". This will allow custom and independent selection of buying / selling modes. This will be implemented along with
    5. Thanks for your report - I was able to replicate it only one time - it started to buy the exact same amount over and over in each GE slot even if the 1st fulfilled. But, afterwards for multiple runs it bought a custom amount only one time and proceeded to clean. If you can please ensure your client is updated by closing all clients, running DBLauncher.jar, and enabling Fresh Start in the client, and if the error persists please post or send me the logs of when it occurs.
    6. You have a point there. Currently the script goes along with the active instant buy/sell offers that already exist on the GE, but I can look into putting a separate mode for custom % of the price using the LivePrice data, that way it will sit on the buy/sell offers indefinitely at the specified price. I can look into it this week, unfortunately until then it probably won't work for FSW besides the actual cleaning/mixing part. At some point, I also want to add the option to check clean herb prices in addition to grimy to evaluate if the clean version of the herb is cheaper.
    7. I use threads and ScriptManager class to accomplish this. I do it by starting a new thread, and inside of the thread I get the instance of the script manager, wait for the current script to stop, then start new script. As soon as the 1st script starts the new thread, the 1st script returns -1 to stop itself. But thread isn't killed on 1st script stop so 2nd script starts after 1000 ms (u should give DreamBot a second or two to finish script stopping / loading activities). Call this anywhere in your Main class you want to switch QuestScriptStarter questStarter = new QuestScriptStarter(); Logger.log("Attempting to stop current script and start tmp's Ten QP"); Thread t1 = new Thread(questStarter); t1.start(); return -1; and this is the class that implements Runnable package script.unlock.quests; import org.dreambot.api.script.ScriptManager; public class QuestScriptStarter implements Runnable{ @Override public void run() { ScriptManager manager = ScriptManager.getScriptManager(); try { Thread.sleep(1000); } catch (InterruptedException e) { throw new RuntimeException(e); } manager.start("tmp\'s Ten QP"); } } Also, I think that using this method to automatically switch scripts requires each startable Script to override the Quickstart method onStart(String[] args) in order for them to be started this way (not sure tbh)
    8. Thank you for this report, I will look into this issue Edit: Found the bug, I had actually known about it since development but was kind of lazy for this edge case, where setting minimum quantities of around 100 or less would result in GE never buying. I also fixed another oversight where instead of going from GE History menu, closing it, opening GE, it now opens GE directly back from History tab.
    9. If you aren't that computer smart and don't know how to use a VPN, it's going to take a lot of time, money, and frustration for you to make 4b off botting - most people lose money they invest in botting (buying proxies, accounts, bonds, computer hardware, etc). I would just buy the gold using real money if you need the OSRS gp. But to answer your questions - your main account is fine unless they catch you RWT and you're trading to your main. Botting just one or two accounts at once works by launching DreamBot, selecting the one or two accounts you want to bot on, and starting the script you want to run. Vorkath is generally top-tier moneymaker which you can buy accounts and script for, however if you get banned quickly you will lose a lot of money on initial investment. You should have a mule account that trades the bots and your main so that the bots never trade your main. Killing in wilderness is not necessary to avoid detection
    10. Hi, thanks for your report! However on my end today the script works good. If you're still experiencing this bug, can you please PM me a screenshot of how you filled out the GUI settings, and if you're able to record a video of the bug happening that would be excellent.
    11. Sorry for the downtime, apparently I did not fully remove all references to the MethodProvider class which was fully removed from the DreamBot API as of the last update. Sent in a fix, and updated Github for local working versions :-)
    12. This is the download link for the legacy client that I got from the update post that I linked earlier in this thread: https://downloads.dreambot.org/dreambot-3.13.21-legacy.jar
    13. Getting this error on new client build: After talking to combat tutor and equipping sword/shield and viewing attack tab, it spams this error while spamming walk around the combat tutor in a 3-4 tile radius lol. Pausing the script and walking manually into rat cages works, script can exit the cage just fine, just not enter
    ×
    ×
    • 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.