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

    Members
    • Posts

      6
    • Joined

    • Last visited

    Recent Profile Visitors

    The recent visitors block is disabled and is not being shown to other users.

    Gizmo's Achievements

    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.
    2. Is broken.. is so good we need this fixed pweaseeee i think this is the source of the issue.
    3. this script is absolutely phenomenal in every way and i have nothing but praises, but i think its too good because Jagex is on to it. When trying to level new account.. not new new but with like no stats even taking breaks, afking, logging off etc.. no matter what within 24-48 hours get banned. Bonded accounts non-bonded accounts whatever it is there is something that triggers detection. Because i went through 12 accounts (banned) Only 2 accounts did not get banned sipped through the cracks, i tried many different methods and I think this script is to good and Jagex bought it, and found ways to add detection when using it which sucks a lot =/ Its always usually log off then when you come back to ban so i think something flags it as (botty) then in the mornings they just do reviews and do the bans. Once account has skills already its less likely to get banned but even using it a little a time, still banned!
    4. Gizmo

      Sub DevTools

      Thank you so much for this tool! so amazing and helpful. Just using that is like 90% of scripting just to map out places to get too!
    ×
    ×
    • 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.