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
  • Dreambot class load error


    CodeNinja

    Recommended Posts

    On 12/20/2020 at 9:33 PM, CodeNinja said:

    yep I have the latest launcher, and I see all the methods from DB3 so it should be correct

    Hey, same "issue" here.

    The error definitely doesn't affect my script at all - yet the message remains a drag.

    The jar is clean and contains the specified dependency, in the path, too. 
    image.png.46dd034f886922301cd707a90f3418ac.png

    I'll look further into this, once I figured something out I'll let you know
     

    Link to comment
    Share on other sites

    • 1 month later...

    I had the same problem. Was able to fix it by relying on the local dreambot client.jar that is downloaded rather than getting the jar from maven.

    So basically use this:

      <properties>
        <dreambot.path>${user.home}/DreamBot/</dreambot.path>
      </properties>
    
      <dependencies>
        <dependency>
          <groupId>dreambot</groupId>
          <artifactId>client</artifactId>
          <version>1.0.0</version>
          <scope>system</scope>
          <systemPath>${dreambot.path}/BotData/client.jar</systemPath>
        </dependency>
      </dependencies>

    Instead of:

            <dependency>
                <groupId>org.dreambot</groupId>
                <artifactId>client</artifactId>
                <version>3.0.0</version>
            </dependency>

    My guess is that the jar that is downloaded by the Dreambot client is newer than the one on maven. So using the old jar probably gives you the error.

    Link to comment
    Share on other sites

    Archived

    This topic is now archived and is closed to further replies.

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