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

    Popular Content

    Showing content with the highest reputation on 03/13/24 in all areas

    1. Does anyone know in Dreambot API documentation. How do I get the tile animations from AoE Effects. for example in sins of the father on the 2nd phase when he spawns the lightening and the shadows appear on the tiles. Which API call, can i use for that? I figured it out, and I wanted to update this post because someone in the future might be (looking for this) and they'll be able to find this post. so the API is: ``` Package org.dreambot.api.wrappers.graphics Class GraphicsObject GraphicsObjects are certain graphical animations that do not move. If you're looking for something that isn't an object or a projectile, it's possibly a GraphicsObject. and this is how i used it and it works. public void checkForAOEEffectAndMove() { Tile playerTile = Players.getLocal().getTile(); List<GraphicsObject> graphicsObjects = Client.getGraphicsObjects(); for (GraphicsObject graphicsObject : graphicsObjects) { if (graphicsObject != null && graphicsObject.getTile().equals(playerTile)) { // Detected a graphical effect on the player's tile script.log("Detected GraphicsObject (ID: " + graphicsObject.getID() + ") at player's location."); Tile safeTile = findSafeTile(); if (safeTile != null) { script.log("Moving to safe tile: " + safeTile); if (Walking.walk(safeTile)) { Sleep.sleepUntil(() -> Players.getLocal().getTile().equals(safeTile), 2000); script.log("Successfully moved to safe tile."); } else { script.log("Failed to move to safe tile."); } } else { script.log("No safe tile found. Stay alert!"); } break; // Exit after handling the first detected effect } } } ``` Finding posts like this on the forums has helped me a lot.
      1 point
    2. thanks alot! that fixed it @Deep Slayer and thanks @MaximusPrimoi have been in the docs quite alot the last few days kind of learning as i go all round! thanks again i appreciate it
      1 point
    3. Magic.castSpellOn(Normal.HIGH_LEVEL_ALCHEMY, yourItem);
      1 point
    4. There's no getSpell method in the magic class. Have a look through the javadocs for the "Normal" enum. You will find the spell you want there
      1 point
    5. 1 point
    6. add teak trees power chopping in ape toll
      1 point
    7. bought vouchers from Prime and he has done nothing but help me, fast delivery, and explained everything I needed to know. will always be going back to this guy for my needs. highly recommend buying from him. thanks again for all ur help!
      1 point
    8. Hashtag

      Refund Guester Renewall

      I've refunded it back to your account credit. Have a nice day!
      0 points
    ×
    ×
    • 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.