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
  • Set Zoom


    CodeNinja

    Recommended Posts

    Posted

    Since DB3 now supports all zoom levels, can we add an API option to set a specific zoom level?  I looked through the API and didn't see an options for this, let me know if I missed it somewhere

    Posted

    This is what I do to randomly set the zoom

    int zoom = Calculations.random(615, 1121);
    if (800 >= ClientSettings.getExactZoomValue()) {
      Mouse.scrollUpWhile(rh(500, 1000), () -> ClientSettings.getExactZoomValue() >= zoom);
      setStatus("Zooming in camera");
    } else {
      Mouse.scrollDownWhile(rh(500, 1000), () -> ClientSettings.getExactZoomValue() < zoom);
      setStatus("Zooming out camera");
    }

     

    Posted
    13 minutes ago, holic said:

    This is what I do to randomly set the zoom

    
    int zoom = Calculations.random(615, 1121);
    if (800 >= ClientSettings.getExactZoomValue()) {
      Mouse.scrollUpWhile(rh(500, 1000), () -> ClientSettings.getExactZoomValue() >= zoom);
      setStatus("Zooming in camera");
    } else {
      Mouse.scrollDownWhile(rh(500, 1000), () -> ClientSettings.getExactZoomValue() < zoom);
      setStatus("Zooming out camera");
    }

     

    thanks, this is useful.  i will mess around with scroll wheel, but I am not sure it can be used to set an exact zoom level

    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.