Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!
  1. mister altoid

    Question Does the Runemate client (Spectre) itself have a public API?

    I was wondering if the Spectre client itself had a public API so I could, for instance, add multiple accounts in bulk or kick off a bot instance via code. I'm aware of the CSV Bulk Import functionality, but I was hoping to automate this with my own Java programming.
  2. ezpzi

    Request Tries In TreeBot

    Current Treebot Each Branch is a validation of a single Boolean. - Validation is True -> Go to success child - Validation is False -> Got to failure child How can we improve upon this? Well, the main problem with using a BST is that each sub-child can only return a single leaf or a...
  3. lucassousa

    Question Checking auras states

    Hello mates! Has been someone developed a good way to check auras states from equipments slot, like remaining time or their names as well? I stopped my bots developments at this point and, as I'm backing to botting, I'm willing to start crafting my ideas again. Thanks in advance!
  4. silencep44

    Resolved GrandExchange.placeSellOffer() is broken

    I'm trying to sell 10 Runite bars with GrandExchange.placeSellOffer() but this seems broken. It opens the sell menu, selects to correct item, but then the problems begin. The quantity of the item is automatically 10, but it still tries to input 10 as a value (not needed). After this...
  5. lucassousa

    Question Best way to dropping?

    ForEach is better way to Dropping items? Actually I'm using a code like this below and the bot stills undropping some items. for (SpriteItem x : Inventory.getItems()){ if (x != null){ if (x.interact("Drop")){ Execution.delayUntil(() -> !x.isValid(), 1200); }...
  6. lucassousa

    Question Best way to use Inventory SpriteItem on a GameObjetct?

    I have a item x in my inventory and I need use it on a object y. I didn't found a direct method like x.useOn(y); then I tried some stuff (strange...) like x.interact("Use"); y.click(); This really didn't worked hahah So, what a correct way to do this?
Top