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

    Scripter
    • Posts

      82
    • Joined

    • Last visited

    • Days Won

      2

    Posts posted by m4rr3co

    1. This snippet is meant to be used at the very first NPC encounter your brand new account have at Tutorial Island when opening Tab.Options isn't available. It will start a conversation with the npc and from then it's normal getDialogues management.

              if (c.getClientSettings().isResizableActive()) {
                  NPC guide = c.getNpcs().closest(npcName);
                  if (c.getDialogues().getOptions() != null && c.getDialogues().chooseOption(1))
                      MethodProvider.sleepUntil(() -> c.getDialogues().canContinue(), Calculations.random(3000, 3500));
                  else if (c.getDialogues().canContinue() && c.getDialogues().spaceToContinue())
                      MethodProvider.sleepUntil(() -> c.getDialogues().canContinue() ||
                              c.getDialogues().getOptions() != null,Calculations.random(3000,3500));
                  else if(guide != null) {
                      Point p = guide.getModel().calculateCenterPoint();
                      Rectangle GAME_SCREEN = new Rectangle(5, 5, 511, 333);
                      Rectangle CANVAS = new Rectangle(0, 0, 765, 503);
                      int heightAdjust = 0;
                      int widthAdjust = 0;
                      p.setLocation(p.getX() * (CANVAS.getWidth() / GAME_SCREEN.getWidth())+widthAdjust, p.getY() * (CANVAS.getHeight() / GAME_SCREEN.getHeight())+heightAdjust);
                      c.getMouse().hop(p);
                      if (c.getClient().getMenu().contains("Talk-to")) {
                          c.getMouse().click();
                          MethodProvider.sleepUntil(() -> c.getDialogues().canContinue(), 10000);
                      }
                  }
              }

      Would love to hear opinions on how to optimize this.

      ps.: i'm not the original author, i just can't find his topic

    2. 7 minutes ago, AsBakedAsCake said:

      I shared it right there. Bot during times you would normally play, 5-8 hour sessions and turn it off for the night.

      None of my scripts contain "antiban" and most scripts claiming they have it don't actually have anything implemented. They use it as a term to help sell their script. IMO "antiban" is a waste of time - It's best to just focus on creating a quality script.

      wow... nice, thanks for the input man!

    3. 3 hours ago, AsBakedAsCake said:

      Yes, I've gotten max combat on multiple accounts with dreambot using my own scripts. You're doing something wrong.
       

      Bot during times you would normally play (no over night botting) and stop taking 10 minute breaks every 30 minutes. I've never used the break system and I've been pretty successful. Do 5-8 hour sessions and turn it off for the night.

       

      is it too much to ask for you to share some antiban measures you are taking?

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