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.
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...
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!
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...
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);
}...
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?