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
  • World Hopping with Exceptions?


    Swisher Sweet

    Recommended Posts

    But what about filtering Leagues? (I don't want it to choose those worlds. )

     

    Ill update this after and thank you to whoever responds. 

     

    Hopping to a specific world

    If you know the world you'd already like to hop to:

    WorldHopper.hopWorld(301); // Replace 301 with the world you'd like to hop to
    

    Hopping to a random world

    You can hop to a completely random world that includes F2P, P2P, PVP, etc:

    WorldHopper.hopWorld(Worlds.getRandomWorld());
    

    You can also apply filters to getting a random world, for example to hop to a F2P, no level requirement, no PVP world:

    World world = Worlds.getRandomWorld(w -> w.isF2P() && !w.isPVP() && w.getMinimumLevel() == 0);
    
    WorldHopper.hopWorld(world);
    Link to comment
    Share on other sites

    The best thing you can do to get the quickest response without waiting is to check the JavaDoc. Understanding how to use and read it is super powerful.

    For example a simple search of “WorldType” and “World.” returns all the world types that they can be and the different functions associated with them.

    IMG-3191.jpg
    IMG-3192.jpg

    Link to comment
    Share on other sites

    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
    ×
    ×
    • 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.