Everything posted by Soldtodie
-
True or False: King of The Hill is the best anime ever made?
False! One Piece!
-
Bot doesn't want to move 1/2 tiles
Yeah, because sometimes with 16 it will click on the toggle run orb.
-
Simple stop script after certain date;usefull for when you have testers
?
-
Simple stop script after certain date;usefull for when you have testers
- Simple stop script after certain date;usefull for when you have testers
Doesn't work, you can change the windows date to use it.- I can get a new phone.
http://www.forbes.com/sites/gordonkelly/2014/09/09/iphone-6-vs-iphone-6-plus-what-is-the-difference/ You must decide which one is better for you, a bigger or a smaller one.- Has the script been paused?
getBot().getScriptExecutor().isPaused()- Deselect item
Yeah. But with this you can get the selected item.- Mouse hop
Lol? I wrote hop and not move^^.- Mouse hop
How can I let the mouse hop to a certain position for mouse key dropping? mouse.hop(x, y) doesn't exist.- Deselect item
public boolean deselectItem() { if(inventory.isItemSelected()) { return mouse.click(inventory.getMouseDestination(getSelectedItemSlot())); } return false; } public int getSelectedItemSlot() { if(inventory.isItemSelected()) { for(int slot = 0; slot < 28; slot++) { Item it = inventory.getItemInSlot(slot); if(it != null && it.getName().equals(inventory.getSelectedItemName())) { InventorySlotDestination is = new InventorySlotDestination(getBot(), slot); for(int x = is.getBoundingBox().x; x < is.getBoundingBox().x + is.getBoundingBox().width; x++) { for(int y = is.getBoundingBox().y; y < is.getBoundingBox().y + is.getBoundingBox().height; y++) { if(getColorPicker().isColorAt(x, y, new Color(255, 255, 255))) { return slot; } } } } } } return -1; }- deselect inventory item snippet
https://osbot.org/forum/topic/59713-deselect-item/- SMiner
- SMiner
- SMiner
- SMiner
- Terminate random event script
Lol sry I failed. Can you post an example please?- Terminate random event script
I override it but it doesn't stop during executing.- Terminate random event script
With this i can terminate the random solver in the mid of the execute?- Terminate random event script
For instance in the mid. this.getBot(). getRandomExecutor().terminate(); This doesn't work but with .interrupt() the random script stops for a moment and start again.- Terminate random event script
I don't want to change the random. I want to stop it.- Construction interface snippet
Yeah dog_ give this black dog a side kick!- Terminate random event script
How can I stop a random event script. I tested this but it doesn't work. RandomExecutor re = new RandomExecutor(getBot()); re.interrupt(); re.terminate();- Construction interface snippet
Its not wrong.- Separate classes
Lol, thanks i forgot something. - Simple stop script after certain date;usefull for when you have testers