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

    Members
    • Posts

      53
    • Joined

    • Last visited

    Recent Profile Visitors

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

    Taytot's Achievements

    1. are these normal to import? import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.util.concurrent.TimeUnit;
    2. unpatching works from DBlauncher as long as no instances of osrs are open
    3. Interesting. I had it after something else in my onloop order and it was not executing. I am looting now. I am learning so much
    4. Why isnt my script looking at items that are on the ground? List<GroundItem> lootableItems = GroundItems.all(item -> item != null && goblinArea.contains(item) && item.exists() && item.distance(Players.getLocal()) < 5); if (!lootableItems.isEmpty()) { for (GroundItem item : lootableItems) { // Check if the item is either coins or bones if (item.getName().equals("Coins") || item.getName().equals("Bones")) { // Attempt to loot coins or bones if (item.interact("Take")) { log("Looting " + item.getName() + "..."); sleep(Calculations.random(2000, 4000)); return Calculations.random(2000, 3000); } else { log("Failed to loot " + item.getName() + "!"); } } } }
    5. private final Area treeArea = new Area(X, x, X, X); private final int WALK_DELAY = 3000; // Delay between walk check private Timer timer; etc etc if (!treeArea.contains(Players.getLocal())) { walkBackToTreeArea(); return WALK_DELAY;
    6. thanks I used a private final int walk_delay and a check after every action loop to ensure the bot always stays in the zone!
    7. I have coded my script fine, but my bot just continually walks finding trees, and I would like him to stay within a set boundary. I see the constructor: Area(XXXX,XXXX,XXXX,XXXX) but how do I implement that in my code? How would I say something like if bot is in Area(X,X,X,X) then stay; else, go back to area
    8. I was going good for ~4-5 hours averaging ~250k/hr then around 8th hour the bot lost 3m on amylase crystal, another 3m, and another 2m on bandos tassets so im down quite a bit..... does REALLY well on cannonballs though.....started with 30m. I have had similar experiences with this bot. be careful.
    9. can this bot do runite mining? I never saw anything in the description about rune mining
    10. Is there any way you can make the script, when selected to, pray at altars before it reaches 0
    11. this is happening to me 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.