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

    Members
    • Posts

      54
    • Joined

    • Last visited

    • Days Won

      1

    Posts posted by pakruojinis

    1. 1 hour ago, Tier3 said:

      Oh ty! will this include holdspace? I noticed Keyboard.holdSpace was doing the same thing when I was making a tutorial island script

      The build in mention is already out (3.13.0) , you can read the full changes in the thread.

      But no, it doesn't seem like it was included.

       

    2. 5 hours ago, RSMasterGuard said:

      Thank you so much for the GUI guide. I have got a GUI working because of this but see the following warning about this GUI have performance issues, is there something wrong with my code, its being called via the onStart method?

       

      private void createGUI()
          {
              JFrame frame = new JFrame();
              frame.setTitle("Al Kharid Beer Glass Collector");
              frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
              frame.setLocationRelativeTo(getClient().getInstance().getCanvas());
              frame.setPreferredSize(new Dimension(400,50));
              frame.getContentPane().setLayout(new BorderLayout());
      
              JPanel settingPanel = new JPanel();
              settingPanel.setLayout(new GridLayout(0,1));
      
              JCheckBox lootBronzeMace = new JCheckBox();
              lootBronzeMace.setText("Pick up Bronze Maces");
              settingPanel.add(lootBronzeMace);
      
              lootBronzeMace.addActionListener(new ActionListener()
              {
                  @Override
                  public void actionPerformed(ActionEvent e)
                  {
                      LootBronzeMaces = lootBronzeMace.isSelected();
                  }
              });
              frame.getContentPane().add(settingPanel, BorderLayout.NORTH);
              frame.pack();
              frame.setVisible(true);
          }

       

      https://dreambot.org/guides/scripter-guide/troubleshooting/

    3. 45 minutes ago, cryptosOG said:

      i recently started facing this issue since recent update with osrs and dreambot.

      the script continues to get stuck on this quest. i tested multiple accounts and all stop here. once u finish the dialogue manually the script continues and finishes. it just always gets stuck on this one part.

      yah runetime says almost 5 hours its because had some irl chores to do so was expecting all accounts to finish by the time i got back but it got stuck here.

      before the recent updates to osrs and dreambot it worked like a charm made over 70+ accounts tell just this recent update

      Screenshot 2022-02-10 010020.png

      Recent update broke the dialogues, a hotfix has already been released, restart your launcher to update and it should be good

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