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

    Members
    • Posts

      13
    • Joined

    • Last visited

    Recent Profile Visitors

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

    RandyPowers's Achievements

    1. This was very helpful, thank you everyone very much!
    2. Is there a place where you can go to know how to use widgets? Because 629, 3, 710, 2, and 100 are all "Magic Numbers".
    3. Posting another message to see if someone can help.
    4. Minor programming tip. If you can avoid the bang operator (!) then that is generally a better practice. The reason is the "NOT" adds extra cognitive load. So in your onLoop you do: if (!Inventory.isFull()) { doFish(); } else { goBank(); } but if you switch this it is easier to follow/read if (Inventory.isFull()) { goBank(); } else { doFish(); } You could make your banking more generic by changing: Bank.depositAll(item -> item.getName().equals("Raw shrimps")); to something like: Bank.depositAll(item -> item.getName().contains("Raw")); and then that might be more general and work for anchovies at higher levels. Also, how do you handle when you gain a level? Does it just stop there, or did I miss that?
    5. How do you handle not mining the same rock as another player?
    6. This is a great guide, it was really useful in conjunction with the DB API. However, one thing I can't find is how to find how many hours your account has been played. Since there are some restrictions on some items it would be nice to know if you have met the hours requirements before trying to sell an item that you can't sell. Is there a way to do that?
    7. I know you can do this to open the quest tab: Tab.QUEST.open(); However, I can't find anything in the APIs, on a google search, on VarBits, or in searching the DB forums on how to open the "Character Summary" tab within the Quest Tab to see the number of hours played on an account. I wrote a script to sell some items on the GE and then when I ran it it turns out that my new account that I test my scripts on can't sell those items on the GE due to not meeting the minimum requirements. How can I check the number of hours played on my account through the dreambot API so I don't try to collect items i can't even sell?
    8. This was really helpful. The API has changed since this was posted, but this was a really good starting point, thank you very much!
    9. Okay that makes sense. How did you get the IP address to show though? I see it at the top of my window when I open DB. When I run the Brave Tutorial script I see it as well. But I'm not sure if I can see it before I login to double check that my settings are correct. I don't want to run two accounts on the same IP and wanted to have a check before I login and before I run the Brave Tutorial script.
    10. How did you get the IP address to show? I'm trying to run two DB clients at the same time and I'm not sure if my DB client proxy selection is being overridden by my proxyfier configuration.
    11. Sorry, I'm new and haven't purchased a script yet. This might be my first purchase. What is an "instanced" script? I'm guessing it's for a single account, but want to make sure I understand first.
    12. The video is showing as private. Is there a way to share it?
    ×
    ×
    • 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.