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

    Members
    • Posts

      9
    • Joined

    • Last visited

    Recent Profile Visitors

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

    botstig's Achievements

    1. botstig

      Text above NPC

      Any way to get the floating text said by an NPC? Trying to get the forestry ent cut types without speaking to them and getting the chat dialog and instead righ click interacting.
    2. I tried/am, that's basically the first block, it doesn't search for the item when buyItem or searchItem are called. The commented code was a attempt to brute force when buyitem wasn't working.
    3. Can't seem to get GE.buyItem() to work.. If I try either API buyitem or searchItem(<ItemName>) it just sits on search screen and times out. public static boolean buyItem(int ItemID, int amount, int price){ if (!isGeOpen()){ openGE(); } Debug.log("Placing buy offer for x" + amount + " of " + ItemList.getItem(ItemID).name + " for " + price + " each"); return GrandExchange.buyItem(ItemID, amount, price); } The manual way that is not working either: /* int slot = GrandExchange.getFirstOpenSlot(); Debug.log("Available slot " + slot + "!"); if (slot > -1) { Debug.log("Opening available slot " + slot + "!"); GrandExchange.openBuyScreen(slot); Sleep.sleepUntil(GrandExchange::isBuyOpen, 2000); Debug.log("Adding buy offer for " + ItemList.getItem(ItemID).name); GrandExchange.searchItem(ItemList.getItem(ItemID).name); Sleep.sleepUntil(() -> GrandExchange.getCurrentChosenItemID() == ItemID, 5000); Debug.log("Setting amount: " + amount); GrandExchange.setQuantity(amount); Debug.log("Setting price: " + price); GrandExchange.setPrice(price); Debug.log("Place offer"); GrandExchange.confirm(); Sleep.sleepUntil(() -> GrandExchange.slotContainsItem(slot), 5000); if (GrandExchange.slotContainsItem(slot)){ return slot; } else { return -1; } } else { return -1; } */
    4. No even running client at full 1Gb by slider at launch Same error I got earlier for possible tracking, was from calling the old Walkdistance method. I have changed the distance finder to now use Tile.getDistance so it stopped on distance calls, but Bank.open still seems to be hanging 2022-11-02 15:58:48 [ERROR] Exception has occurred while running! Please report error to developer if problem persists java.lang.OutOfMemoryError: GC overhead limit exceeded at org.dreambot.api.methods.walking.pathfinding.impl.PathFinder.0(PathFinder.java:211) at org.dreambot.api.methods.walking.pathfinding.impl.local.LocalPathFinder.calculate(LocalPathFinder.java:60) at org.dreambot.api.methods.walking.pathfinding.impl.local.LocalPathFinder.calculate(LocalPathFinder.java:41) at org.dreambot.api.methods.walking.pathfinding.impl.local.LocalPathFinder.getWalkingDistance(LocalPathFinder.java:285) at Mike.Walker.WalkDist(Walker.java:194) at Mike.Walker.walkToTile(Walker.java:33) at Scripts.Skilling.Cooker.walkLoop(Cooker.java:179) at Scripts.Skilling.Cooker.onLoop(Cooker.java:103) at org.dreambot.api.script.AbstractScript.run(AbstractScript.java:224) at java.lang.Thread.run(Unknown Source)
    5. Getting consistent GC outofmemory errors calling Bank.open while on the 1st floor of lumbridge castle standing on the tile the ladder brought me up to from ground floor.
    ×
    ×
    • 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.