By registering with us, you'll be able to discuss, share and private message with other members of our community.
Sign up now!Just saying but this bot is extremely easy to make yourself.Can some one make a simple bot that puts the tip on the arrows shafts please. I would do it my self but i am stuck at work all dayAll it needs to do it click the arrow head and press space bar every 16 seconds. Thank you
i dont konw how to make a script and im at work so dont really have time to sit down and learn right nowJust saying but this bot is extremely easy to make yourself.
Literally just
1) Bank
2) Click arrow
3) Click head
4) Spacebar
EDIT: it wouldnt even need to go in the bank because i would have all the arrow head in my inventory anyway
Well if you would like to, follow set up instructions in the tutorial, then put this code inside the onLoop{(inside these brakets)}i dont konw how to make a script and im at work so dont really have time to sit down and learn right now
EDIT: it wouldnt even need to go in the bank because i would have all the arrow head in my inventory anyway
if((arrowHeads = Inventory.newQuery().names(Regex.getPatternForContainsString("arrow heads")).results().first()) != null && (headlessArrows = Inventory.newQuerty().names("Headless arrows").results().first()) != null){
if(Inventory.getSelectedItem() == null && arrowHeads.click()){
Execution.delayUntil(() -> Inventory.getSelectedItem() != null, 5000);
}
if(Inventory.getSelectedItem().equals(arrowHeads) && headlessArrows.click()){
Execution.delayUntil(() -> Inventory.getSelectedItem() == null, 5000);
}
if((makeXInterface = Interfaces.newQuery().texts(Regex.getPatternForContainsString("Make all").results().first()) != null){
if(makeXInterface.interact("Make all"){
Execution.delayUntil(() -> Players.getLocal().getAnimationId() != -1, 25000);
Execution.delayUntil(() -> Players.getLocal().getAnimationId() == -1, 25000);
}
}
}
Well if you would like to, follow set up instructions in the tutorial, then put this code inside the onLoop{(inside these brakets)}
I think that's it. Just make sure all the things in the "" are the correct names or else it wont workCode:if((arrowHeads = Inventory.newQuery().names(Regex.getPatternForContainsString("arrow heads")).results().first()) != null && (headlessArrows = Inventory.newQuerty().names("Headless arrows").results().first()) != null){ if(Inventory.getSelectedItem() == null && arrowHeads.click()){ Execution.delayUntil(() -> Inventory.getSelectedItem() != null, 5000); } if(Inventory.getSelectedItem().equals(arrowHeads) && headlessArrows.click()){ Execution.delayUntil(() -> Inventory.getSelectedItem() == null, 5000); } if((makeXInterface = Interfaces.newQuery().texts(Regex.getPatternForContainsString("Make all").results().first()) != null){ if(makeXInterface.interact("Make all"){ Execution.delayUntil(() -> Players.getLocal().getAnimationId() != -1); Execution.delayUntil(() -> Players.getLocal().getAnimationId() == -1); } } }
![]()
We use essential cookies to make this site work, and optional cookies to enhance your experience.