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

    VIP
    • Posts

      82
    • Joined

    • Last visited

    • Days Won

      1

    Posts posted by Luxe

    1. Hey, i've been doing some research regarding varp id's/varbits

      in slayer I know you have
      slayermaster: https://oldschool.runescape.wiki/w/RuneScape:Varbit/4067
      slayer task kill count: https://oldschool.runescape.wiki/w/RuneScape:Varplayer/394

      but I feel like some varbits are missing such as:
      - Farming contracts
      - Hunter rumors
      - Slayer task (monster)

      Are these variables not varbits? If so, where can I find them?
       

    2. 29 minutes ago, Gyon said:

      Thank you for pointing this out, somehow missed this.

      30€ for a script like this is kind of crazy though so I would like to keep my post up in the hopes that maybe a more affordable or perhaps even free script comes along?

      I'd macro record it but the guy moves

      Not saying i disagree, but what would you think is a fair price?

      I'd also like to note: that Hashtag's scripts are some of the most expensive ones on Dreambot, but for good reason. The code is great, the script is almost always flawless. Compare dreamy wintertodt to hashtags, hashtags is I think 5-10x the price. but also works 100x better. 

    3. 9 hours ago, Dexter Bots said:

      So i run ~a month disablet flicking.. no ban.. but i dont pay again, because my private rc blood runes bot make the same GP'h, i think was tell it because the banrate, greez

      I use it 100% of the time. but I mostly use private scripts as well. never been banned from it.
      Only been banned once for using Dreamy bots (which are awful btw)

    4. 13 hours ago, Tweeboy said:

      Assuming Criteria Y is never valid unless Criteria X is first valid

      You could set Leaf A's accept condition to be ((Criteria X) && (!Criteria Y))

       

      Specific to MLM what are your criteria you are trying to monitor/manage?

       

      Your boolean approach works too and may be better for monitoring the MLM sack since you can force it true, have it collect all the ore, then force it to false to go back to your miningLeaf

       

       

      Quote

      Specific to MLM what are your criteria you are trying to monitor/manage?

      When the sack has +- 24 free slots I want to empty the sack completely.
      Similar to what my solution is; I needed a way of entering the leaf while using a conditional for exiting the leaf.

    5. Think i figured it out:


       

          boolean shouldPersist = false;
          @Override
          public boolean isValid() {
      
              return (GetSackCapacity() < Calculations.random(28,34)  && !Inventory.isFull())|| shouldPersist || InventoryHasMlmReward();
          }
      
          @Override
          public int onLoop() {
      
              if(GetSackCapacity() <= 105) {
                  shouldPersist = true;
              }
      	}

       

    6. How would i be able to persist a leaf or even branch in treescript?

      Say i want leaf A to take place once criteria X is met.
      I want leaf A to keep running until criteria Y is met.

      Examples of this logic is emptying the sack in motherlode mine

    7. On 4/23/2024 at 5:00 PM, camelCase said:

      dont, put it in onloop and check if its not already set and you are logged in

      from my personal scripts i use this:
       

      OnStart method

              if (Client.isLoggedIn()) {
                  SkillTracker.start(Skill.THIEVING);
                  startingThievingExp = SkillTracker.getStartExperience(Skill.THIEVING);
              }



      Loop method

          @Override
          public int onLoop() {
              if (timer != null && timer.isPaused()) {
                  timer.resume();
              }
              if (!SkillTracker.hasStarted(Skill.THIEVING)) SkillTracker.start(Skill.THIEVING);
              if(startingThievingExp == 0) startingThievingExp = SkillTracker.getStartExperience(Skill.THIEVING);
      
              if(getSettings().shouldLoop) {
                  return this.getRoot().onLoop();
              }
              return 200;
          }


       

    8. 42 minutes ago, Hisoka89 said:

      Really? Everytime I open DB, I enter my details and it asks if its an account made since 2024, I say yes, and then it does the whole email verification, can I press no? But then if i had multiple accounts linked it wont know which one to log into? or will it still give me a drop down option of what account I want?

      weird, doesnt do so for me. and i am assuming you are launching dreambot from your jagex launcher?

    9. 1 hour ago, Hisoka89 said:

      Do I have to do the email verification every single time I wanna log in? 

      No you dont, but you do have to do that whenever you want to log in on the website

    10. I have been looking around for an online Java paint maker but haven't found any that can convert a picture into Java2dGraphics(?)

      But I continuously see great scripters with great paints in their scripts as shown here:

      Image

      There is no way that all this is created by calculating pixels and manually setting coordinates or am I wrong?

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